yaotti's diary

Software is Eating the World

Eggが良い感じ

emacs-egg


ログを見るときに折り畳んで表示できるので便利.

よく使うキーバインドは以下

  • C-x v d
egg-status
git status && git diff && git diff --cached
  • C-x v c
egg-commit-log-edit
git commit -e
  • C-x v i
egg-file-stage-current-file
git add
  • C-x v l
egg-log
git log
  • C-x v =
egg-file-diff
git diff...
  • C-x v b : egg-start-new-branch

start a new branch from the current HEAD.
git checkout -b new_branch


ほかにもC-x v o(egg-file-checkout-other-version)でgit coとか.
Emacs++