windows svn利用鉤子實現代碼同步到web目錄

來源:互聯網
上載者:User

標籤:blog   http   使用   os   檔案   資料   for   問題   

思路:  
找 到SVN Server中的倉庫(Repositories)檔案夾的位置,在相應的專案檔夾中找到hooks檔案夾。在該檔案夾中添加一個post- commit檔案;當有commit動作發生時(提交到SVN Server時)就會執行這個post-commit檔案,在該檔案實現資料的複製。  

      執行個體:  
環境:SVN Server與測試用的Web Server在同一台Windows系統伺服器上,SVN Server使用的是VisualSVN,Web Server使用的是Apache。項目的名稱為test,用戶端使用TortoiseSVN。  
首先在apache的www目錄下建立一個檔案夾,進行checkout,輸入需要使用者名稱和密碼,將test項目取出到該檔案夾中。  
找到SVN Server的Repositories目錄,在Repositories/test/hooks檔案夾中建立post-commit.bat,在其中寫入命令:  
"C:\Program Files\VisualSVN Server\bin\svn.exe" update "D:\www\test" --quiet --username name --password pwd  

(即執行svn update命令,請自行替換使用者名稱和密碼) 

也可以這樣寫

@echo offSET REPOS=%1SET USER=%2SET SVN="E:/Program Files/VisualSVN Server/bin/svn.exe"SET DIR="E:/wamp2/www" (call %SVN% update %DIR% --username izaodao --password izaodao --non-interactive)

 

大功告成。  
註:

1.web目錄下一定要用TortoiseSVN checkout出Repositories的代碼

2.

-username izaodao --password izaodao

izaodao替換為登入svn的使用者名稱和密碼

在使用中可能會遇到的錯誤排除 :


1.Error: svn: 解析“D:\www\test”出錯,或svn: E020024: Error resolving case of ‘D:\www\test"‘,則有可能是因為目標檔案名之後多加了”\”


2.“D:\www\test"或Skipped ‘d:\www\test‘,則可能是因為沒有執行步驟提交更新處理檔案 即上面提到的.bat檔案,svn.exe不認識目標檔案夾


3. Working copy ‘D:\www\test‘ is too old,則可能需要使用sven.exe upgrade命令重新整理一下目標檔案夾 或者重新安裝一個較高用戶端版本至少要2.6以上吧

4.還有一個注意問題——Visual SVN Server的許可權,否則可能會出現下列錯誤:
post-commit hook failed (exit code 1) with output:
svn: E155004: Working copy ‘D:\www\Test‘ locked
svn: E200031: sqlite: attempt to write a readonly database
svn: E200031: sqlite: attempt to write a readonly database
svn: run ‘svn cleanup‘ to remove locks (type ‘svn help cleanup‘ for details)
原因是Visual SVN Server服務的執行許可權不夠,不能對指定目錄做讀寫操作。解決辦法,修改Visual SVN Server 
     簡單操作 win+R  運行 services.msc 找到visual svn server 服務 右鍵屬性 登陸面板 設定案頭互動或者管理員權限再試

 

源地址:http://www.cnblogs.com/xiezhengcai/archive/2013/11/27/3445457.html

  參考:http://www.2cto.com/os/201303/192225.html

    http://www.php100.com/html/webkaifa/PHP/PHPyingyong/2009/0709/3066.html

    http://blog.sina.com.cn/s/blog_418bef9d0100rqmx.html

相關文章

聯繫我們

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