Skip to content

Instantly share code, notes, and snippets.

@GarciaSouza
Last active July 30, 2018 15:15
Show Gist options
  • Save GarciaSouza/e7c992e4e97b92d7c3052502a993bc85 to your computer and use it in GitHub Desktop.
Save GarciaSouza/e7c992e4e97b92d7c3052502a993bc85 to your computer and use it in GitHub Desktop.
My Git Alias
alias gs='git status'
alias gsw='git show'
alias ga='git add'
alias gap='git add --patch'
alias gl='git log'
alias gpl='git pull'
alias gps='git push'
alias gc='git commit'
alias gck='git checkout'
alias gck-='git checkout --'
alias gd='git diff'
alias gds='git diff --stat'
alias gdc='git diff --cached'
alias gdcs='git diff --cached --stat'
alias gm='git merge'
alias grh='git reset HEAD'
alias gf='git fetch'
alias glpo='git log --pretty=oneline'
alias gr='git rm'
alias grl='git reflog'
alias glol='git log --graph --decorate --pretty=oneline --abbrev-commit'
alias gwc='git whatchanged'
alias gssb='git status --short --branch'
alias t='Thunar'
alias nf='neofetch --backend off'
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment