Created
November 21, 2014 11:07
-
-
Save lukehedger/31329290091c97ea2910 to your computer and use it in GitHub Desktop.
Command aliases
This file contains hidden or 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
nano ~/.bash_profile | |
# or subl ~/.bash_profile | |
# add the following to your bash_profile and any other commands you use regularly | |
# command aliases | |
# git | |
alias gs='git status' | |
alias gpom='git push origin master' | |
# cd | |
alias dev='cd ~/dev' |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment