このブログは、旧・はてなダイアリー「檜山正幸のキマイラ飼育記 メモ編」(http://d.hatena.ne.jp/m-hiyama-memo/)のデータを移行・保存したものであり、今後(2019年1月以降)更新の予定はありません。

今後の更新は、新しいブログ http://m-hiyama-memo.hatenablog.com/ で行います。

sourcetreeの代わり?

sourcetreeの優れた点

  1. gitとmercurialの両方サポート
  2. 左ペインにリポジトリ一覧
  3. コミット家系図の視覚化(グラフ表示)

このうち:

  1. 諦める、gitのみ
  2. orgモードを使う
  3. どうするか不明。

orgモードを使うには、

  • find ~ -name '.git' | tee ~/git-repos.list のようにする。
  • ~/git-repos.list から ~/git-repos.org を作る。
  • (view-fiel-other-window "~/git-repos.org") を実行する。

キーバインドは、とりあえず、C-c l にした。

(defun gitu:view-git-repos ()
  (interactive)
  (view-file-other-window "~/git-repos.org"))

(global-set-key (kbd "C-c l") 'gitu:view-git-repos)