EvanLovely
6/6/2014 - 4:04 AM

git-commit-helper.sh

# Git Commit Helper
gitco() {
  git status --short --branch --untracked-file=all
  echo -n "Commit Message: "
  read msg
  git add --all :/
  git commit -m "$msg"
}