在从主存储库中提取之前如何获取已更改文件的列表?
我需要在实际从主存储库中提取新的/修改的文件之前获取已更改文件的列表。
我怎样才能做到这一点?
谢谢。
I need to get a list of changed files from before actually pulling the new/modified files from the main repository.
How can I do that?
Thanks.
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
使用传入命令:
告诉我们 hg pull 命令会将哪些更改拉入存储库,而无需实际拉取更改。
此外,对于远程存储库,使用
--bundle
可以避免如果传入之后是拉取,则下载变更集两次。请参阅:http://www.selenic.com/mercurial/hg.1.html
Use incoming command:
To tell us what changes the hg pull command would pull into the repository, without actually pulling the changes in
Also, for remote repository, using
--bundle
avoids downloading the changesets twice if the incoming is followed by a pull.See: http://www.selenic.com/mercurial/hg.1.html