Find centralized, trusted content and collaborate around the technologies you use most.
Teams
Q&A for work
Connect and share knowledge within a single location that is structured and easy to search.
現在無視されているsubversionにディレクトリを追加するにはどうすればよいですか。ディレクトリはほとんどの作業コピーに存在することが知られています。svn:ignoreから削除し、svn addで追加すると、ユーザーは更新時に次のメッセージを受け取ります。
An unversioned directory of the same name already exists
目標は、メッセージを回避し、既存のディレクトリをリポジトリのコンテンツと単純にマージすることです。
実行svn up --force <dirname>すると、ディレクトリがすでに存在している場合でも、ディレクトリが更新されます。
svn up --force <dirname>