ローカル ファイルをリポジトリ内の最新バージョンに置き換えるにはどうすればよいですか?
リポジトリの対応するファイルと競合しているすべてのローカル ファイルを置き換える方法はありますか?
ローカル ファイルをリポジトリ内の最新バージョンに置き換えるにはどうすればよいですか?
リポジトリの対応するファイルと競合しているすべてのローカル ファイルを置き換える方法はありますか?
ローカルhg update -C
でhg revert
変更されたファイルをリポジトリ内のクリーン バージョンに置き換えます。個人的には好きですhg revert
がhg up -C
、仕事もします
のヘルプからの詳細hg revert
With no revision specified, revert the specified files or directories to
the contents they had in the parent of the working directory. This
restores the contents of files to an unmodified state and unschedules
adds, removes, copies, and renames. If the working directory has two
parents, you must explicitly specify a revision.
Using the -r/--rev or -d/--date options, revert the given files or
directories to their states as of a specific revision. Because revert does
not change the working directory parents, this will cause these files to
appear modified. This can be helpful to "back out" some or all of an
earlier change. See "hg backout" for a related method.
Modified files are saved with a .orig suffix before reverting. To disable
these backups, use --no-backup.
それが役立つことを願っています
クリス
svnアップデート?
または、フォルダを削除して、svn checkout ...
または、オプション--forceを試してください。