[轉]mac OS 下配置SVN忽略檔案

來源:互聯網
上載者:User

安裝XCode後Mac OS X 系統已經內建了svn支援,所以需要做的就只是配置。

1.建立想要儲存軟體倉庫的目錄。 
sudo su (然後輸入密碼)
mkdir /opt
mkdir /opt/svn
mkdir /opt/svn/repos
即建立了目錄/opt/svn/repos/

2.建立版本倉庫 svnadmin create /opt/svn/repos

3.修改授權配置
進入到倉庫配置目錄 cd /opt/svn/repos/conf
(1)編輯設定檔 vi svnserve.conf 取消下列行的注釋
anon-access = read
auth-access = write
password-db = passwd (密碼配置的儲存檔案)
auth-db = authz (認證配置的儲存檔案)

(2)編輯密碼設定檔 vi passwd
格式為 “使用者名稱 = 密碼”

(3)編輯認證檔案 vi authz
格式為 [groups]
使用者組名 = 使用者群組成員
[需要授權的目錄]
@組名 = 許可權
使用者名稱 = 許可權
例如:
[groups]
g_developers = jcccn,jesse,bill
g_tester = jerry,wang
[/]
@g_developer = r
jcccn = rw
* =
[/jcccn]
@g_tester = rw
jcccn = rw
* = r

(4)配置忽略檔案 vi ~/.subversion/config

如果”.subversion”目錄不存在,請運行”svn status”命令,雖然此命令會失敗,但是會為你建立所需要的檔案。

找到 global-ignores 一行,去掉注釋,編輯成:
global-ignores = build *~.nib *.so *.pbxuser *.mode *.perspective*

找到 enable-auto-props = yes 把注釋去掉,在[auto-props] Section聲明以下文字檔:
*.mode* = svn:mime-type=text/X-xcode
*.pbxuser = svn:mime-type=text/X-xcode
*.perspective* = svn:mime-type=text/X-xcode
*.pbxproj = svn:mime-type=text/X-xcode

4.啟動svnserve :
svnserve -d -r /opt/svn/repos
結束服務可以用 killall -9 svnserve

註:很可能會遇到許可權問題,可使用 sudo 命令,SVN的DB檔案如果是ROOT的,要改為使用者權限:
sudo chown -R UserName /opt/svn/repos
sudo chmod -R 755 /opt/svn/repos

另,如有SVN檔案是從其它地方Copy到Mac硬碟上的,就會碰到“Operation not permitted”(大意:你丫沒事吧,瞎得瑟啥,哥的檔案你動不了)的提示。

咋整咧?

請使用 sudo chflags -R nouchg /opt/svn/repos

簡而言之,如果SVN目錄碰到奇怪滴許可權問題,大體三步走即可搞定:
sudo chflags -R nouchg /opt/svn/repos
sudo chown -R UserName /opt/svn/repos
sudo chmod -R 755 /opt/svn/repos

最後友情建議,別忘了先 “Clean up”~

 

一些Mac OS上的SVN用戶端,svnX,scplugin

相關文章

聯繫我們

該頁面正文內容均來源於網絡整理,並不代表阿里雲官方的觀點,該頁面所提到的產品和服務也與阿里云無關,如果該頁面內容對您造成了困擾,歡迎寫郵件給我們,收到郵件我們將在5個工作日內處理。

如果您發現本社區中有涉嫌抄襲的內容,歡迎發送郵件至: info-contact@alibabacloud.com 進行舉報並提供相關證據,工作人員會在 5 個工作天內聯絡您,一經查實,本站將立刻刪除涉嫌侵權內容。

A Free Trial That Lets You Build Big!

Start building with 50+ products and up to 12 months usage for Elastic Compute Service

  • Sales Support

    1 on 1 presale consultation

  • After-Sales Support

    24/7 Technical Support 6 Free Tickets per Quarter Faster Response

  • Alibaba Cloud offers highly flexible support services tailored to meet your exact needs.