Skip to content

Instantly share code, notes, and snippets.

@EvanLovely
Created June 6, 2014 04:04
Show Gist options
  • Select an option

  • Save EvanLovely/b40f668b851c7202f4a4 to your computer and use it in GitHub Desktop.

Select an option

Save EvanLovely/b40f668b851c7202f4a4 to your computer and use it in GitHub Desktop.
# Git Commit Helper
gitco() {
git status --short --branch --untracked-file=all
echo -n "Commit Message: "
read msg
git add --all :/
git commit -m "$msg"
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment