1. 程式人生 > >Mac 上使用svn 記錄

Mac 上使用svn 記錄

create word sta password www. span sub bsp use

1.啟動svn服務器
svnadmin create /Users/liuwei/Desktop/svn/UI 如果本地有 UI這個目錄了就不用再運行

使用這句就可以了

svnserve -d -r /Users/liuwei/Desktop/svn/UI/mycode

2. 修改配置文件(啟動修改一次就可以了)註意每句話前面不要留空格!!!

修改svnserve.conf:

# anon-access = read

# auth-access = write

# password-db = passwd

# authz-db = authz


3. 第一次上傳本地文件到svn服務器 
svn import 
/Users/liuwei/Desktop/UI svn://localhost/svn/UI/mycode --username=harry --password=harryssecret -m "import new project" -m後的信息用英文 步驟都對 呵呵 不知道為什麽我這邊一直爆錯 百度也沒解決 Assertion failed: (svn_uri_is_canonical(parent_uri, NULL)), function uri_skip_ancestor, file /BuildRoot/Library/Caches/com.apple.xbs/Sources/subversion/subversion-78
/subversion/subversion/libsvn_subr/dirent_uri.c, line 1522. Abort trap: 6 4.殺掉所有svn killall svnserve 或者去活動監視器殺掉進程

參考:http://www.icafebolger.com/server/svnstart.html
他推薦使用svnX這個客戶端



Mac 上使用svn 記錄