いろいろあって、いまはこんな感じになってます。
pre>>[alias] co = checkout ci = commit -a st = status up = pull --rebase a = add b = branch c = commit d = diff<<--
shell>>
[alias]
st = status
ci = commit
co = checkout
staged = diff --cached
unstaged = diff
both = diff HEAD
oneline = log --pretty=oneline --abbrev-commit
amend = commit --amend
<<--