R/lsFilesToCommit.R

Defines functions lsFilesToCommit

Documented in lsFilesToCommit

#' List Files To Commit
#' @description This function combines all the Unstaged and Untracked files in a repo.
#' @export


lsFilesToCommit <-
        function(path_to_local_repo = NULL,
                 label = FALSE) {

                c(lsUnstagedFiles(path_to_local_repo = path_to_local_repo,
                                  label = label),
                  lsUntrackedFiles(path_to_local_repo = path_to_local_repo))

        }
patelm9/glitter documentation built on Sept. 21, 2020, 5:42 p.m.