Created
November 19, 2019 13:25
-
-
Save hugolcouto/51eaa65a734926995dcabf53326f28c6 to your computer and use it in GitHub Desktop.
My terminal 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
#Git | |
alias glog="git log --oneline --graph" | |
alias gpull="git pull" | |
alias gpush="git push" | |
alias gcommit="git commit -m" | |
alias gadd="git add *" | |
alias gcheckout="git checkout" | |
alias gnewbranch="git checkout -b" | |
alias gdeletebranch="git branch -d" | |
alias gbranch="git branch" | |
alias gstatus="git status" | |
alias gstash="git stash" | |
alias gstashapply="git stash apply" | |
alias gmerge="git merge" | |
alias gmaster="git checkout master" |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment