Created
August 3, 2015 15:53
-
-
Save lotz84/a87b3316ccb4315978d2 to your computer and use it in GitHub Desktop.
This file contains hidden or 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
alias ll='ls -l' | |
alias rm='rmtrash' | |
alias ga='git add' | |
alias gb='git branch' | |
alias gc='git commit' | |
alias gch='git checkout' | |
alias gd='git diff' | |
alias gf='git fetch' | |
alias gg='git graph' | |
alias gm='git merge' | |
alias gs='git status' | |
export LSCOLORS=gxfxcxdxbxegedabagacad | |
case "${OSTYPE}" in | |
darwin*) | |
alias ls="ls -G" | |
alias ll="ls -lG" | |
alias la="ls -laG" | |
;; | |
linux*) | |
alias ls='ls --color' | |
alias ll='ls -l --color' | |
alias la='ls -la --color' | |
;; | |
esac | |
export PATH=/usr/local/bin:$PATH | |
export LANG='ja_JP.UTF-8' | |
source ~/.git-completion.bash |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment