2011-02-08 5 views
0

Visual Studio 2008とAnkhSVNを使用しています。私はSVNをセットアップせずにプロジェクトに取り掛かりました。今私は私のローカルとSVNの古いコピーを持っているコードの新しいコピーを持っています。私はそれらのファイルをチェックアウトし、それらをコミットする必要がありますか?AnkhSVN Newer Local on Copy

おかげ

答えて

0

最も簡単には(同様のオプションを持つか、TortoiseSVNの)コマンドラインクライアントである可能性があります。ヘルプから

svn co --force <URL> <WC> 

:あなたは上の強制フラグとチェックアウトを行うために探している

If --force is used, unversioned obstructing paths in the working 
copy destination do not automatically cause the check out to fail. 
If the obstructing path is the same type (file or directory) as the 
corresponding path in the repository it becomes versioned but its 
contents are left 'as-is' in the working copy. This means that an 
obstructing directory's unversioned children may also obstruct and 
become versioned. For files, any content differences between the 
obstruction and the repository are treated like a local modification 
to the working copy. All properties from the repository are applied 
to the obstructing path. 
関連する問題