如何为 Mercurial 用户创建别名?

发布于 2024-09-04 16:10:47 字数 90 浏览 6 评论 0原文

我正在寻找一种方法为已提交到 Mercurial 存储库的用户创建别名。例如,如果有一个名为 user1 的用户,我希望他所做的每次提交都以 user2 的名称进行。

I am looking for a way to create an alias for a user that has commited to a mercurial repository. For example, if there is a user named user1 I'd like every commit done by him to be under the name user2.

如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。

扫码二维码加入Web技术交流群

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。

评论(1

淡忘如思 2024-09-11 16:10:47

如果您正在谈论更改已用于某些提交的名称,则可以使用 hg Convert 来实现,源类型和目标类型为 hg 以及 >--authors 映射文件。但是,这样做时您会更改每个变更集的哈希值,如果有人已经克隆了您的存储库,您将对其进行管理。

如果您正在谈论即将到来的提交,那么只需使用 hg commit-u 选项将它们设置为您想要的任何内容即可。

If you're talking about changing the name that was already used for some commits, you can do that using hg convert with a source and destination type of hg and a --authors mapping file. However, in doing so you change the hash of every changeset, and if anyone has already cloned your repo you'll be hosing them.

If you're talking about commits to come, then just make them whatever you want using the -u option to hg commit.

~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文