subversionコマンド備忘録
2009 年 7 月 15 日
リポジトリ作成とデーモン起動
svnadmin create –fs-type fsfs testrepos
svnserve -d -r c:/svn
インポート
svn import svn://your.domain.com/home/svn/repos -m “init”
チェックアウト
svn co https://your.domain.com/home/svn/repos
svn co svn://your.domain.comp/home/svn/repos –username user_name –password pass_word
svn co svn+ssh://user_name@your.domain.com/home/svn/repos –username user_name –password pass_word
svn co https://your.domain.com:1443/svn/repos
チェックイン
svn ci repos/test.txt -m “add__test”
diff
svn diff
コミット
svn commit -m “command.txt svn”
アップデート
svn update
クリーンUP
svn cleanup
追加
svn add test.txt
移動
svn move before_dir/test.txt after_dir