重命名 TortoiseHG 中的默认分支
是否可以在 TortoiseHG 中将“默认”重命名为“生产”?
Is it possible to rename 'default' to 'production' in TortoiseHG?
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
是否可以在 TortoiseHG 中将“默认”重命名为“生产”?
Is it possible to rename 'default' to 'production' in TortoiseHG?
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
接受
或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
发布评论
评论(2)
您无法在 Mercurial(或 TortoiseHg)中重命名分支。您要做的就是启动一个名为
product
的新分支,并将其基于当前的default
分支。您可以在 TortoiseHg 2.0 中执行此操作,
这将创建一个名为
product
的新分支。旧的default
分支将保留,因此您可以将新功能放在那里,然后在它们稳定后将其合并到生产
中。You cannot rename a branch in Mercurial (or TortoiseHg for that matter). What you do instead is to start a new branch called
production
and base it on the currentdefault
branch.You can do this in TortoiseHg 2.0, where you
This will create a new branch with the name
production
. The olddefault
branch will remain and you can thus put new features there before merging them intoproduction
when they're stable.您不能直接从 Tortoise2.0+ 设置 执行此操作,而是通过命令行
hg
。如 hgbook 中所述:
然后检查该更改是否反映在 TortoiseHg 中
You cannot do it directly from the Tortoise2.0+ settings, but through the command-line
hg
.As documented in hgbook:
Check then if that change is reflected in TortoiseHg