Skip to content

Instantly share code, notes, and snippets.

@hugolcouto
Created November 19, 2019 13:25
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save hugolcouto/51eaa65a734926995dcabf53326f28c6 to your computer and use it in GitHub Desktop.
Save hugolcouto/51eaa65a734926995dcabf53326f28c6 to your computer and use it in GitHub Desktop.
My terminal aliases
#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