Skip to content

Instantly share code, notes, and snippets.

@nixon1333
Created September 7, 2017 05:06
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save nixon1333/4aca07f524f0e23b15ec144aa263e42b to your computer and use it in GitHub Desktop.
Save nixon1333/4aca07f524f0e23b15ec144aa263e42b to your computer and use it in GitHub Desktop.
git command to add, commit, push all together
function gitall(){
git add -A && git commit -am "$*" && git push
}
alias pushit="gitall"
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment