Skip to content

Instantly share code, notes, and snippets.

@KrYpTeD974
Created March 21, 2015 12:19
Show Gist options
  • Save KrYpTeD974/167f93489bdbe7b3638d to your computer and use it in GitHub Desktop.
Save KrYpTeD974/167f93489bdbe7b3638d to your computer and use it in GitHub Desktop.
#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