git describe fails with “fatal: No names found, cannot describe anything.”

后端 未结 7 2032
梦如初夏
梦如初夏 2020-12-07 22:09

I\'m using git 1.7.1 on Ubuntu 10.10 amd64, and I\'m trying to extract the hash of my repository HEAD to use it in an automated version information that I compile into my pr

相关标签:
7条回答
  • 2020-12-07 22:35

    If you came here due to this error message in Travis CI, you can use the following setting to avoid shallow clones:

    git:
      depth: false
    

    I tested git fetch --tags but that did not work.

    0 讨论(0)
提交回复
热议问题