Skip to content

Instantly share code, notes, and snippets.

@batoreh
Created June 16, 2017 10:57
Show Gist options
  • Save batoreh/e6943973138b5ad1bef73d7add1debd5 to your computer and use it in GitHub Desktop.
Save batoreh/e6943973138b5ad1bef73d7add1debd5 to your computer and use it in GitHub Desktop.
alises
#### 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