Last active
January 29, 2018 17:48
-
-
Save massawho/ca0011b646db525c1d594a032c58a3c6 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
# ------------------------------------------------------------------- | |
# Git aliases | |
# ------------------------------------------------------------------- | |
alias gtaa='git add -A' | |
alias gtap='git add -p' | |
alias gta='git add' | |
alias gtpl='git pull --rebase' | |
alias gtpsh='git push' | |
alias gtcm='git commit' | |
alias gst='git status' | |
alias gdf='git diff' | |
alias gtck='git checkout' | |
alias cont='git rebase --continue' | |
alias abort='git rebase --abort' | |
# ------------------------------------------------------------------- | |
# Capistrano alias | |
# ------------------------------------------------------------------- | |
alias prodep='cap production deploy' | |
alias stadep='cap production deploy' |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment