hg 强制更新新文件
我正在使用 hg 版本 1.9.1。问题是每当我使用 hg update 时,我都会选择更新更改的文件。我们是否可以选择在最新提交中将所有文件强制更新到新版本。抱歉,我在 hg 手册中没有找到任何有用的信息。
I am using hg version 1.9.1. Problem is whenever I use hg update, I get an option of updating changed files. Do we have an option for forcefully updating all files to their new versions in the latest commit. Sorry but i did not find any useful information in hg manual.
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
这将使用当前分支中最新版本的文件更新您的工作目录。请注意,此命令将放弃工作目录中的所有现有更改。
如果您的意思是“我可以从存储库中获取每个文件的新副本吗”,只需删除工作目录中的所有文件并再次执行
hg update --clean
即可。This will update your working directory with the newest version of files in the current branch. Please note that this command will discard all existing changes in your working directory.
If you meant "can I get a fresh copy of each and every file from the repository" just delete all files in your working directory and do a
hg update --clean
again.