LoginSignup
1
1

More than 5 years have passed since last update.

svn備忘録

Posted at

特定のディレクトリ以下の更新を無視する(作業ワークにファイルが無くていい場合)

$ svn update --set-depth exclude path

戻すには

$ svn update --set-depth infinity

もしくはパスが正確にわかっているなら

$ svn update path

特定ディレクトリ以下の更新を無視する(作業ワークにファイルがあるが、変更を無視する場合)

svn propset svn:ignore ‘*’ [ディレクトリ名]/

サブディレクトリも再帰的に無視する場合

svn propset -R svn:ignore ‘*’ [ディレクトリ名]/

1
1
0

Register as a new user and use Qiita more conveniently

  1. You get articles that match your needs
  2. You can efficiently read back useful information
  3. You can use dark theme
What you can do with signing up
1
1