0

リポジトリとしてMercurialを選択します。プロジェクトのルートは、フォルダー、および;/Myprojectを含みます。次に、リポジトリに名前変更フォルダを追加して、別の階層を作成します。/MyProject/src/MyProject/res

/MyProject/Server/src
/MyProject/Server/res
/MyProject/Client/a
/MyProject/Client/b

ターミナルでhgrenameコマンドを使用せずに、MercurialEclipseプラグインでこれを行うにはどうすればよいですか?

4

2 に答える 2

2

コマンドラインから:

hg rename src Server/src
hg rename red Server/res
hg commit -m 'moved res and src into Server'

おそらくMercurialEclipseでもそれを行うことができますが、GUI松葉杖を横に投げる時が来たのかもしれません。

于 2011-06-11T16:09:59.650 に答える
1

リファクタリング/名前の変更(ファイルのコンテキストメニューからリファクタリング->名前の変更、またはAlt+ Shift+ R/⌘</kbd>+option+R). MercurialEclipse will automatically schedule the relevant changes (removing the old file and adding the new one).

于 2017-11-10T22:12:09.377 に答える