自分で使っているaliasのメモ
随時追加していく。
.bashrc
# Source global definitions
if [ -f /etc/bashrc ]; then
. /etc/bashrc
fi
# User specific aliases and functions
# 詳細表示
alias ll='ls -la --color=tty'
# grep
alias grep='grep --color'
alias grr='grep --color -r'
# find
alias f='find . -name'
# ファイルサイズ表示をわかりやすく
alias df='df -h'
# 実行中のプロセスを時系列順に
alias ps='ps --sort=start_time'
# tmux
alias t='tmux'
alias tns='tmux new -s'
alias tl='tmux ls'
alias ta='tmux a'
alias tk='tmux kill-session -t'
alias tkall='tmux kill-server'
alias trn='tmux -rename -t'
alias tat='tmux attach -t'
#-----------git-----------
# git関連に色付け
git config --global color.ui true
alias gcom='git commit -m'
alias gadd='git add .'
alias gb='git branch'
alias gba='git branch -a'
alias gbr='git branch -r'
alias gl='git log -10'
alias glns='git log --name-status -5'
alias gls='git ls-files -cdmokt|grep '
alias gst='git status'
alias gm='git merge'
alias gms='git merge --squash'
alias gch='git checkout'
alias gd='git diff'
alias gf='git fetch'