1. ホーム
  2. mercurial

[解決済み】マーキュリアル。ブランチの名前を変更できますか?

2022-04-11 16:14:41

質問

現在、"stiging" ブランチがありますが、"staging" の方がはるかに意味的に適していると思われます。これを処理する良い方法は何でしょうか?

どのように解決するのですか?

を更新してください。 stiging ブランチを作成し、そのブランチから新しいブランチを作成します。そして、古いブランチを閉じます。

まとめると

hg update stiging
hg branch staging
hg commit -m"Changing stiging branch to staging."
hg update stiging
hg commit --close-branch -m"This was a typo; use staging instead."
hg push --new-branch