Created
August 16, 2016 09:16
-
-
Save kandelvijaya/c7ab290ae2c1209d84974d15dfa917bb to your computer and use it in GitHub Desktop.
My GithubAlias
This file contains 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 -s" | |
alias gd="git diff" | |
alias ga="git add" | |
alias gbr="git branch" | |
alias gc="git checkout " | |
alias gcm="git commit -m " | |
alias gcam="git commit -a -m" | |
alias gcamd="date > .dummy-commit && git commit -a -m 'Dummy Commit'" | |
alias gp="git push" | |
alias glog="git log --oneline --decorate --graph" | |
alias gcd="git checkout develop" |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment