« json_decodeインストールではまり | メイン | フェースブック いいねボタンとツイッターのオリジナルボタン »
2012年08月15日
subversion
僕はこみっとされたらリポジトリをアパッチにアップデートさせている
post-comit にこんなかんじで書いてる。
cd /var/www/html && svn update --username hogehoge --password pasudayo > /home/svn/log 2>&1
が こんなんいわれた
-----------------------------------------------------------------------
ATTENTION! Your password for authentication realm:
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'.
-----------------------------------------------------------------------
svn help update してごにょごにょ見てたら --no-auth-cache てのがあったので
cd /var/www/html && svn update --no-auth-cache --username hogehoge --password pasudayo > /home/svn/log 2>&1
これでうまくいった。
投稿者 muuming : 2012年08月15日 16:39