Skip to content

Instantly share code, notes, and snippets.

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 akhileshdarjee/94864fb1804789236323cfe0524792c1 to your computer and use it in GitHub Desktop.
Save akhileshdarjee/94864fb1804789236323cfe0524792c1 to your computer and use it in GitHub Desktop.
Git shortcuts for local development for Ubuntu
#Open ~/.bashrc file and past the following code at the end
alias gs='git status'
alias ga='git add -A'
alias gc='git commit -a -m $1'
alias gp='git push origin master'
alias gpl='git pull origin master'
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment