git log
w/--decorate
および--source
オプション。しかし、コミットのブランチ名を取得できません2f3cb60
およびd7e7776
、 なぜ?
#git log 2f3cb60 --graph --decorate --source --all --oneline
...
* | | | 1920ad5 refs/heads/gpio support gpio lib
| |/ /
|/| |
* | | 2f3cb60 2f3cb60 fix
* | | d7e7776 2f3cb60 fix
| |/
|/|
* | aa4dcfb refs/remotes/Origin/httpd support
* | cfc839d refs/remotes/Origin/httpd add folder
ブランチ名でgitログを表示するにはどうすればよいですか?
$ git log --graph --decorate --oneline
* 1f3e836 (HEAD, Origin/v2, v2) Change scripts to new format.
* 34d458f (Origin/master, master) Merge branch 'new-Shell'
|\
| * 995ece7 (Origin/new-Shell) Fix index.html and add script pushing.
| * fe0615f New Shell hello-world.
|/
* fe1b1c0 Progress.
...
git log --graph --decorate --oneline
には、名前のあるコミットの名前が表示されます。 すべてのコミットがブランチ名に関連付けられているわけではありません。
ブランチ名は特定のコミットへのポインタにすぎないことを覚えておいてください。各コミットには親があるため、1つのコミットが12の個別のブランチの履歴の一部である場合があります。
git branch --contains <ref>
を使用して、どのブランチにコミットが含まれているかを確認できます。git name-rev <ref>
を使用します。コミットを含むすべてのブランチのシェルスクリプト可能な( "plumbing" )リストが必要な場合は、次を試してください。
commit=$(git rev-parse <ref>) # expands hash if needed
for branch in $(git for-each-ref --format "%(refname)" refs/heads); do
if git rev-list "$branch" | fgrep -q "$commit"; then
echo "$branch"
fi
done