R/gitCommit.R

Defines functions gitCommit

# Helper for git commit
gitCommit <- function(file.name) {
  systemf("git add '%s'", file.name)
  systemf("git commit -s -m 'AAG %s' -- '%s'", file.name, file.name)
}
nfultz/chad documentation built on May 23, 2019, 4:41 p.m.