Skip to content

Instantly share code, notes, and snippets.

@lotz84
Created August 3, 2015 15:53
Show Gist options
  • Save lotz84/a87b3316ccb4315978d2 to your computer and use it in GitHub Desktop.
Save lotz84/a87b3316ccb4315978d2 to your computer and use it in GitHub Desktop.
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