Created
March 21, 2015 12:19
-
-
Save KrYpTeD974/167f93489bdbe7b3638d to your computer and use it in GitHub Desktop.
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
#Git aliases | |
alias gc="git commit -m " | |
alias ga="git add ." | |
alias gp="git push -u origin master" | |
alias gpl="git pull" | |
alias gco="git checkout -b " | |
alias gar="git remote add origin “ | |
alias gm=“git merge “ | |
G* (){ | |
git add —all; | |
git commit -m “++”; | |
git push -u origin master; | |
} |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment