Created
April 22, 2019 12:41
-
-
Save akhileshdarjee/94864fb1804789236323cfe0524792c1 to your computer and use it in GitHub Desktop.
Git shortcuts for local development for Ubuntu
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
#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