Skip to content

Instantly share code, notes, and snippets.

@niekvandepas
Last active March 17, 2019 15:25
Show Gist options
  • Save niekvandepas/bba1b4cee52293fd660ea80274d2028c to your computer and use it in GitHub Desktop.
Save niekvandepas/bba1b4cee52293fd660ea80274d2028c to your computer and use it in GitHub Desktop.
alias gs="git status"
alias ga="git add -A"
alias gc="git commit"
alias gl="git log"
alias gd="git diff"
alias gr="git reset"
alias gb="git --no-pager branch"
alias gch="git checkout"
function git_finalize() {
git checkout dev && git push && git checkout master && git merge dev && git push && git checkout dev;
}
alias x='exit'
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment