本文介绍了打印当前Mercurial修订哈希值?的处理方法,对大家解决问题具有一定的参考价值,需要的朋友们下面随着小编来一起学习吧!
问题描述
有没有更好的方法来提取Mercurial中的当前修订散列比 hg log -l1 | grep changeset | cut -d: - f3
?
部分我的webapp部署脚本tags应用程序压缩包及其独特的修订哈希。
解决方案
尝试:
hg id -i
示例:
$ hg id -i
adc56745e928
Is there a better way extract the current revision hash in Mercurial than
hg log -l1|grep changeset|cut -d: -f3
?
Part of my webapp deployment script "tags" the uploaded app tarball with its unique revision hash.
解决方案
Try:
hg id -i
Example:
$ hg id -i
adc56745e928
这篇关于打印当前Mercurial修订哈希值?的文章就介绍到这了,希望我们推荐的答案对大家有所帮助,也希望大家多多支持!