Created
June 16, 2017 10:57
-
-
Save batoreh/e6943973138b5ad1bef73d7add1debd5 to your computer and use it in GitHub Desktop.
alises
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
#### ALIASES #### | |
alias ls='ls -la' | |
## GIT | |
alias blame='git blame' | |
alias checkb='git checkout -b' | |
alias checkout='git checkout' | |
alias st='git status' | |
alias stash='git stash' | |
alias branchl='git branch list' | |
alias branchd='git branch -D' | |
alias rebi='git rebase -i' | |
alias reb='git rebase' | |
alias res='git reset --hard' | |
alias resf='git checkout --' | |
alias diff='git diff' | |
alias glog='git log' | |
alias reflog='git reflog' | |
alias smu='git checkout develop && git pull origin develop && git fetch --all' | |
alias rebasedev='git pull origin develop --rebase' | |
## GREP | |
## | |
alias printr='xfce4-screenshooter' | |
alias printreg='xfce4-screenshooter -r' |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment