for /R %i in (.svn) do rd /Q /S "%i"
rm -rf `find ./ -type d -name .svn ! -regex \.svn/. -print`
# /usr/bin/svn diff -r BASE:HEAD {ローカルリポジトリパス} --no-diff-deleted 認証領域: <https://{ホスト}> Plese enter usr/pass ユーザ名: svnuser 'svnuser' のパスワード: ----------------------------------------------------------------------- ATTENTION! Your password for authentication realm: <https://osaka.istpika.net:443> Plese enter usr/pass can only be stored to disk unencrypted! You are advised to configure your system so that Subversion can store passwords encrypted, if possible. See the documentation for details. You can avoid future appearances of this warning by setting the value of the 'store-plaintext-passwords' option to either 'yes' or 'no' in '/root/.subversion/servers'. ----------------------------------------------------------------------- 暗号化されていないパスワードを保存しますか (yes/no)? no
configファイルを編集する
# vi ~/.subversion/config store-passwords = no store-plaintext-passwords = no
e.g. ローカルの変更ファイルを確認するとき
# svn diff PATH | grep "^Index: " | sed 's/^Index: //'
e.g. 最新の更新状況(ローカルと最新の違い)を確認するとき
# svn diff -r BASE:HEAD PATH | grep "^Index: " | sed 's/^Index: //'
e.g. svn up後に更新内容を確認したいとき
# svn diff -r PREV:HEAD PATH | grep "^Index: " | sed 's/^Index: //'