3

如何从命令行上的 sha1 哈希获取分支/功能名称?

这也是如何使用 pretty=format 语法完成的。

我看到它是用这种方法完成的

git log --graph --full-history --all --color \  
--pretty=format:"%x1b[31m%h%x09%x1b[32m%d%x1b[0m%x20%s"

但我不知道是哪条线导致了这种情况。

4

1 回答 1

2

如何从命令行上的 sha1 哈希获取分支/功能名称?

您可以使用...

git branch --contains <sha1>
于 2013-01-08T00:36:59.067 回答