“hg commit” - 没有任何反应!
我刚开始我的第一个Mercurial项目。“hg commit” - 没有任何反应!
我在我的源代码目录中做了一个'cd'。
然后我做了这一点:
hg init myproject
不过下次我做
hg commit -m "first commit"
和它所有的报告是:
nothing changed
但是当我做
hg status
它列出了我项目中的所有源代码。
我在这里做错了什么?
回答:
我认为hg status
命令的输出可能告诉你,你的工作目录中有很多文件没有被Mercurial跟踪。您应该能够通过运行以下命令来修复这个
hg addremove
然后你就可以让你的第一个承诺:
hg commit -m "first commit"
或者,你可以做到这一切在一个命令
hg commit -A -m "first commit"
以上是 “hg commit” - 没有任何反应! 的全部内容, 来源链接: utcz.com/qa/258042.html