- バックアップ一覧
- 差分 を表示
- 現在との差分 を表示
- ソース を表示
- Git/git branch/ブランチ一覧を時間でソート へ行く。
- 1 (2019-06-11 (火) 05:07:28)
- 2 (2019-06-11 (火) 06:29:16)
ブランチ一覧を時間でソート
--sort=<key> (Git 2.7以降)
git branch -r -v --sort=authordate # コミットのタイムスタンプを昇順でソート git branch -r -v --sort=-commiterdate # 取り込まれたコミットのタイムスタンプを降順(-)でソート
- -r リモートブランチ
- -v コミットIDやコミットログも表示
keyに指定できる値
https://git-scm.com/docs/git-for-each-ref
Git のコミットのタイムスタンプには author date と committer date の 2 種類があるという話
https://vividcode.hatenablog.com/entry/git/author-date-and-committer-date
git for-each-ref (Git 2.7より前)
git for-each-ref --sort=-committerdate refs/heads/