如何查看本地和存储库之间的 Mercurial 差异?
你好 我正在使用 Mercurial 寻找一个命令来显示我未添加的示例文件。 您能否指定我正在查找的命令是否有名称?就像显示存储库和本地之间的差异一样。 谢谢
Hi
Using Mercurial I'm looking for a command to display for example files I didn't add.
Can you specify if there's a name for the command I'm looking for? Like displaying the difference between the repository and local.
Thanks
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
hg status
将显示所有修改、添加、删除或未知文件的状态。使用hg status --unknown
显示工作目录中不在存储库中的文件。它还有其他几个命令行开关:有关详细信息,请参阅hg help status
。hg status
will show the state of all modified, added, removed or unknown files. Usehg status --unknown
to show files in your working directory that aren't in the repository. It has several other command line switches as well: seehg help status
for details.