CentOS6.5安裝Subversion

1.安裝
參考: http://subversion.apache.org/packages.html#centos
# yum install subversion
# yum install mod_dav_svn

2.建立版本庫
# mkdir -p /mnt/svn (建立版本庫目錄)
# cd  /mnt/svn
# svnadmin create tm(建立版本庫tm)

3.啓動svn
# svnserve -d -r /mnt/svn/tm

4.配置訪問權限
# cd /mnt/svn/tm/conf/
# vim svnserve.conf
[general]
anon-access = read
auth-access = write
password-db = passwd
authz-db = authz
[sasl]

# vim passwd
[users]
xxx = xxx123456

# vim authz
[aliases]
[groups]
[/]
xxx = rw


5.重啓svn
# killall svnserve
# svnserve -d -r /mnt/svn

6. windows下開啓svn check out svn://xxxx.com/tm/
至此安裝結束,svn已可用。 如下內容爲linux下本地加載使用svn的步驟和事項,可不用看。

/*--------------------------------------------------------
6.檢出:svn co svn://127.0.0.1/tm
7.添加文件:svn add 目錄
8.提交修改:svn commit
9.刪除文件但保存本地副本:svn delete --keep-local 目錄
10.忽略當前目錄下的data和attachment目錄
# svn propedit svn:ignore .
# 在編輯器中輸入目錄名,用回車分隔
# svn commit
11.查看當前目錄的狀態:svn status
問題1:
svn: 沒法使用外部編輯器得到日誌信息;考慮設置環境變量 $SVN_EDITOR,或者使用 --message (-m) 或 --file (-F) 選項
svn: 沒有設置 SVN_EDITOR,VISUAL 或 EDITOR 環境變量,運行時的配置參數中也沒有 「editor-cmd」 選項
解決辦法: 
a.vim ~/.bash_profile 
b.增長:export SVN_EDITOR=vim

--------------------------------------------------------*/ html

參考連接: http://www.2cto.com/os/201304/201812.html linux

相關文章
相關標籤/搜索