Created
October 21, 2014 17:04
-
-
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.
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
# 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