Find centralized, trusted content and collaborate around the technologies you use most.
Teams
Q&A for work
Connect and share knowledge within a single location that is structured and easy to search.
我正在考虑使用git describe生成自动版本号。正如这里建议的那样。
git describe
我的问题是,如果我得到git describeas的 o/p v2.0-64-g835c907,将来如何使用 git 签出该特定修订号?
v2.0-64-g835c907
你可以做
git checkout v2.0-64-g835c907
git describe 的输出可以用作对提交本身的引用
如果我理解正确,这可能是您想要的:
git checkout `git describe`