passwd檔案已經寫上賬號密碼
username=password
svnserve.conf檔案配置如下
[root@aa conf]# cat svnserve.conf |grep -v "#"
[general]
anon-access = none
auth-access = write
password-db = passwd
authz-db = authz
realm = /var/svn/svnrepos
[sasl]
以下是在網上找到乙個很好的配置例子:
[groups]
admin = john, kate
devteam1 = john, rachel, sally
建立目錄
mkdir /svndata
mkdir /svndata/weixin
#/svndata 源目錄 ,file:///var/svn/svnrepos svn 版本庫目錄, -m 說明
svn import /svndata file:///var/svn/svnrepos -m "new import"
#或者svn import /ys_data/svn/ svn://localhost/var/svn/svnrepos -m "new import"
#檢視子目錄
svn list file:var/svn/svnrepos
[groups]
admin = john, kate
devteam1 = john, rachel, sally
svn:
svn:weixin
5. 刪除專案
客戶端刪除專案
(1)選擇專案,執行命令svn delete,然後提交
(2)myeclipse上,在svn資源庫中選擇專案,右鍵刪除。
(3)伺服器刪除專案
svn delete -m "deleting file 'yourfile'" file:///var/svn/repos/test/yourfile
Delphi 目錄及子目錄所有檔案刪除
需要引用單元 shellapi function deldirectory const source string boolean var fo tshfileopstruct begin fillchar fo,sizeof fo 0 with fo do begin wnd 0 wfunc fo...
利用遞迴刪除目錄及其子目錄及檔案
void delpath cstring strpath try catch if handle else while findnextfile handle,sr findclose handle removedirectory strpath else cfilefind ff int natt...
遞迴刪除指定目錄下所有檔案及子目錄
刪除此路徑名表示的檔案或目錄。如果此路徑名表示乙個目錄,則會先刪除目錄下的內容再將目錄刪除,所以該操作不是原子性的。如果目錄中還有目錄,則會引發遞迴動作。param filepath 要刪除檔案或目錄的路徑。return 當且僅當成功刪除檔案或目錄時,返回 true 否則返回 false。publi...