Skip to content

Instantly share code, notes, and snippets.

@winteryoung
Created December 13, 2017 13:45
Show Gist options
  • Save winteryoung/756de6f79d56fc7c2642ecfbf037a407 to your computer and use it in GitHub Desktop.
Save winteryoung/756de6f79d56fc7c2642ecfbf037a407 to your computer and use it in GitHub Desktop.
Git add, commit, push all in one
function gitpush() {
git add -A
git commit -m "$1"
git push
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment