Last active
March 17, 2019 15:25
-
-
Save niekvandepas/bba1b4cee52293fd660ea80274d2028c 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
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