# ./configure --with-apxs=/usr/local/apache/bin/apxs [--with-sqlite=/usr/local] # make # make install
# wget www.sqlite.org/2014/sqlite-autoconf-3080702.tar.gz # zcat sqlite-autoconf-3080702.tar.gz |tar xfv - # ... # cd subversion-1.8.10 # ln -s ../sqlite-autoconf-3080702 sqlite-amalgamation # ln -s ../serf-1.3.8 serf # ./configure --with-apxs=/usr/local/apache/bin/apxs # make # make install # # cd /usr/local/apache/modlues なぜか so ファイルが /usr/local/apache/modules にコピーされない? # rm mod_*_svn.so # ln -s /usr/local/libexec/mod_*_svn.so .
# cd subversion-1.6.6 # wget http://www.sqlite.org/sqlite-amalgamation-3.6.13.tar.gz # zcat sqlite-amalgamation-3.6.13.tar.gz |tar xfv - # ln -s sqlite-3.6.13 sqlite-amalgamation # ./configure --with-apxs=/usr/local/apache/bin/apxs # make # make install
Include conf/subversion.conf
<Location /svn/linux> DAV svn SVNParentPath /home/svn/linux AuthType Digest AuthName "NSL" AuthUserFile "/usr/local/apache/digest/passwd" <LimitExcept GET PROPFIND OPTIONS REPORT> Require valid-user </LimitExcept> </Location> <Location /svn/vc++> DAV svn SVNParentPath /home/svn/vc++ AuthType Digest AuthName "NSL" AuthUserFile "/usr/local/apache/digest/passwd" </Location>
htdigest [-c] /usr/local/apache/digest/passwd レルム ユーザー名 htdigest2 [-c] /usr/local/apache/digest/passwd レルム ユーザー名
# cd <データディレクトリ> # mkdir /home/svn/linux/test # svnadmin create /home/svn/linux/test/ # svn import -m "first" . file:///home/svn/linux/test/trunk # chown -R www.www /home/svn/linux/test
サーバ: # mkdir /home/svn/linux/test # svnadmin create /home/svn/linux/test/ # chown -R www.www /home/svn/linux/test リモート: $ cd <データディレクトリ> $ svn import -m "first" . http://www.nsl.tuis.ac.jp/svn/linux/test/trunk
#svnadmin upgrade svn/xxx
# cd /home/svn/linux # svnadmin hotcopy test test2
# svn mkdir -m "" http://www.nsl.tuis.ac.jp/svn/opensim/opensim.currency/branches # svn import -m "v0.6.7" . http://www.nsl.tuis.ac.jp/svn/opensim/opensim.currency/branches/0.6.7
# svn delete -m "mis v0.6.7" http://www.nsl.tuis.ac.jp/svn/opensim/opensim.currency/branches/0.6.7
$ svn upgrade .
$ svn co http://www.nsl.tuis.ac.jp/svn/linux/TUIS_Lib/trunk TUIS_Lib
vi ~/.subversion/servers [global] http-proxy-host = プロキシサーバ http-proxy-port = ポート番号
$ svn propedit svn:ignore .
$ svn update -r #### ####:リビジョンNo.
$ svn sw "URL of branche"
$ svn propset svn:executable on command
# cd ./db/lock # grep -R bdb_tool.cpp . (bdb_tool.cpp はロックしたファイル) ./23a/23a16e5f411733325d11d5f15009fc0c:/trunk/ExtendLib/xLib/bdb_tool.cpp # rm ./23a/23a16e5f411733325d11d5f15009fc0c
[global] # http-proxy-exceptions = *.exception.com, www.internal-site.org http-proxy-host = 202.26.159.212 <-- proxy server's IP address http-proxy-port = 8080 <-- proxy server's port number