Edit the question to include desired behavior, a specific problem or error, and the shortest code necessary to reproduce the problem. This will help others answer the question.
Closed 3 months ago.
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
接受
或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
发布评论
评论(2)
您始终可以使用
hg revert FILES
撤消任何本地更改。在这种情况下,mercurial 认为您想要删除它,并正在等待您提交删除。You can always undo any local changes with
hg revert FILES
. In this case mercurial thinks you wanted to delete it, and is waiting for you to commit the deletion.您执行了
拉动
,但也执行了更新
吗? Pull 不会更新您的文件;更新确实如此。You did a
pull
but did you also do anupdate
? Pull doesn't update your files; update does.