プログラミング/git の履歴(No.1)
更新概要†
git についての備忘録的メモです。
alias†
git s†
s = status
git l, git la†
l = log --graph --pretty=format:'%Cred%h%Creset -%C(yellow)%d%Creset %s %Cgreen(%cr) %C(bold blue)<%an>%Creset' --abbrev-commit --date=relative la = log --graph --all --pretty=format:'%Cred%h%Creset -%C(yellow)%d%Creset %s %Cgreen(%cr) %C(bold blue)<%an>%Creset' --abbrev-commit --date=relative
git d†
履歴選択リスト付きの git diff
リストが表示された状態のまま Enter を押せば、普通に git diff と打ったのと同様に HEAD と working copy との間の差分をとる
履歴を1つ選んで Enter を押せば、その履歴と working copy との差分を取る
Ctrl+space で2つ選べば、その間の差分を取る
d = !git diff --minimal --ignore-all-space `git log --oneline --branches | peco | ruby -e 'STDIN.readlines.reverse.each{|s| puts s[0..6]}'`
git add-peco†
git add するファイルを一覧から選ぶ
add-peco = "!if [ \"`git status -s`\" != \"\" ]; then echo git add `git status -s | peco | set -e 's/.* //'`; fi"
コメント・質問†
Counter: 4274 (from 2010/06/03),
today: 1,
yesterday: 0