2
可能重複:
How to retrieve the hash for the current commit in Git?我如何知道我在git中檢出了哪個版本?
即什麼是hg parent
或svn info
的git等價物。
一個答案,我可以在腳本中使用,即它給「bbh653ad」,而不是包含版本號字的負載某處
可能重複:
How to retrieve the hash for the current commit in Git?我如何知道我在git中檢出了哪個版本?
即什麼是hg parent
或svn info
的git等價物。
一個答案,我可以在腳本中使用,即它給「bbh653ad」,而不是包含版本號字的負載某處
要獲得頭的哈希值,使用此命令加分:
git rev-parse HEAD
或短表:
git rev-parse --short HEAD
如果你有標籤,你正在尋找一個更具描述性的版本號,您可以考慮使用資源ult的命令:
git describe --long
長表格特別有用,因爲它顯示標籤名稱。 – ffghfgh 2017-01-24 14:58:08