Mercurial 版本控制无法正常工作
我刚刚在 CentOS 上安装了 Mercurial,并按照此处的教程进行操作
https://www.mercurial-scm。 org/wiki/TutorialInit
我在名为 Mercer 的文件夹中创建了 hello.txt ie
/home/user/mercury/hello.txt
然后我做了
hg commit -m "adding initial version of hello.txt"
根据文档,它应该创建一个名为 my-hello 的文件夹,但没有创建
可能是什么问题
I have just install Mercurial on CentOS and followed the tutorial here
https://www.mercurial-scm.org/wiki/TutorialInit
I created hello.txt in folder called mercury i.e
/home/user/mercury/hello.txt
Then i did
hg commit -m "adding initial version of hello.txt"
Accoring to Docs it should create a folder called my-hello but thats not created
What can be the problem
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
教程的最后一句话是错误的。它实际上应该这样说:
“文件现在已经提交了,没有任何明显的变化,但是我们文件的这个版本保留在存储库中。我们可以通过输入
hg log
来确认这一点将显示修订版”The last sentence or so of the tutorial is wrong. It should really say something like:
"Nothing obvious changes about the files now that they've been committed, but this version of our files is preserved in the repository. We can confirm this by typing
hg log
which will show the revision"