Skip to content

Instantly share code, notes, and snippets.

@natpen
Created October 21, 2014 17:04
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save natpen/50ae5c40bc35b9afa22e to your computer and use it in GitHub Desktop.
Save natpen/50ae5c40bc35b9afa22e to your computer and use it in GitHub Desktop.
This is not the greatest .bashrc in the world, no. This is just a tribute.
# MISC
alias less='less -r'
# --show-control-chars: help showing Korean or accented characters
alias ls='ls -F --color --show-control-chars'
alias ll='ls -l'
# GIT
alias gs='git status'
alias ga='git add'
alias gau='git add -u'
alias gl='git pull'
alias glom='git pull --rebase origin master'
alias glod='git pull --rebase origin dev'
alias gp='git push'
alias gpom='git push origin master'
alias gpod='git push origin dev'
alias gb='git branch'
alias gba='git branch -a'
alias gc='git commit'
alias gd='git diff'
alias go='git checkout'
alias gk='gitk --all&'
alias gx='gitx --all'
alias got='git '
alias get='git '
alias gl='git log --oneline'
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment