IOS 程式的版本管理(基於SVN)

來源:互聯網
上載者:User

1, 安裝 SVN

     a, sudo -apt-get install subversion subversion-tools

     b, mkdir /home/svn

     c, cd /home/svn

     d, svnadmin create Repository 

2, 匯入Project

     a, mkdir proj

     b, mkdir proj/trunk

     c, mkdir proj/branches

     d, mkdir proj/tags

     e, svn import proj file:///home/svn/Repository -m 'Init'

     f, svn list file:///home/svn/Repository/proj

     g, 建立分支

     svn copy file:///home/svn/Repository/proj/trunk/ file:///home/svn/Repository/proj/branches/PROJ-201108 -m 'create a branc'

3, 配置 SVN

     a, vi svnserve.conf

        去掉下面語句前的注釋

        anon-access = read
        auth-access = write

        password-db = passwd

        authz-db = authz

     b, vi passwd

       添加新的使用者

       leon = xxxx

     c, vi authz

        添加新的組   

        [groups]

        admin = leon

       [/]
      @admin = rw
       * = r

    d, 關於 authz.conf 設定檔需要注意:

        1), 如果我們以 svnserve -d -r /home/svn/Repository 的方式啟動,則不會有[proj:/]這樣的配置

        2), 如果我們以 svnserve -d 的方式啟動,則可以[proj:/]這樣配置

4, 啟動svn 服務

     a, svnserve -d -r /home/svn/Repository

5, 配置xcode

    

1. 在Xode的菜單中選擇 SCM -> Configure Repositories,填寫SVN伺服器的資訊

2. 然後選SCM -> Repositories 你就可以Import, Check Out你想要的內容了,SVN的日常管理也可以在這裡做。

3. Checkout項目以後在你的項目的屬性中設定項目的SCM

4. 設定好以後,你在你的項目視圖中就可以看到新的一列,M表示該檔案已經修改過,然後你已經可以通過SCM菜單,或者右鍵菜單直接進行SVN的操作, commit,update,revert,diff and log,任何你想要的。

SCM->Get SCM Info 可以看到任何檔案的版本資訊

   

         

相關文章

聯繫我們

該頁面正文內容均來源於網絡整理,並不代表阿里雲官方的觀點,該頁面所提到的產品和服務也與阿里云無關,如果該頁面內容對您造成了困擾,歡迎寫郵件給我們,收到郵件我們將在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.