svn 常見錯誤分析
阿新 • • 發佈:2019-01-02
這時可能會出現系統提示,因為subversion發現了local work
copy和repository上的不一致。需要svn使用者自己裁決,可以直接輸入tf,即使用repository上版本即可,因為你沒有更改project檔案。即:
Conflict discovered in ‘EuM1.xcodeproj/project.pbxproj’.
Select: (p) postpone, (df) diff-full, (e) edit,
(mc) mine-conflict, (tc) theirs-conflict,
(s) show all options: s
(e) edit – change merged file in an editor
(df) diff-full – show all changes made to merged file
(r) resolved – accept merged version of file
(dc) display-conflict – show all conflicts (ignoring merged version)
(mc) mine-conflict – accept my version for all conflicts (same)
(tc) theirs-conflict – accept their version for all conflicts (same)
(mf) mine-full – accept my version of entire file (even non-conflicts)
(tf) theirs-full – accept their version of entire file (same)
(p) postpone – mark the conflict to be resolved later
(l) launch – launch external tool to resolve conflict
(s) show all – show this list
Select: (p) postpone, (df) diff-full, (e) edit,
(mc) mine-conflict, (tc) theirs-conflict,
(s) show all options: tf
在這裡,如果記不清楚各個選項的含義,可以輸入s瞭解。另外,如果不確定自己是否更改了本地的project檔案,可以輸入dc瞭解原生代碼和repository上的差異。
但是,如果你也為專案增加了新檔案,這樣你的本地project檔案和repository上的project檔案都有新的內容。我現在的做法是 tc,即讓svn自動合併,當然合併的是有問題的,會標出哪部分是我本地的,哪部分是repository上的,我是手工解決衝突,然後再次提交,通知項 目成員更新。
編號
出錯資訊
問題剖析
解決方案
1.
svn: Server sent unexpected return value (500 Internal Server Error) in response to OPTIONS request for 'http://svn.moon.ossxp.com/svn/test'
錯誤的使用者名稱
檢查登入的使用者名稱是否輸入錯誤
svn: 伺服器傳送了意外的返回值(500 Internal Server Error),在響應 “OPTIONS” 的請求 “http://svn.moon.ossxp.com/svn/test” 中
2.
svn: OPTIONS of 'http://svn.moon.ossxp.com/svn/test': authorization failed: Could not authenticate to server: rejected Basic challenge (http://svn.moon.ossxp.com)
錯誤的口令
用正確的使用者名稱/口令登入
svn: 方法 OPTIONS 失敗於 “http://svn.moon.ossxp.com/svn/test”: 認證失敗: Could not authenticate to server: rejected Basic challenge (http://svn.moon.ossxp.com)
3.
svn: Server sent unexpected return value (403 Forbidden) in response to OPTIONS request for 'http://svn.moon.ossxp.com/svn/test'
使用者無許可權
聯絡管理員,為使用者分配許可權
svn: 伺服器傳送了意外的返回值(403 Forbidden),在響應 “OPTIONS” 的請求 “http://svn.moon.ossxp.com/svn/test” 中
4.
svn: OPTIONS of 'http://www.moon.ossxp.com/svn/test': 200 OK (http://www.moon.ossxp.com)
伺服器地址錯誤,是普通Web頁面,不支援SVN的 WebDAV 協議
確認輸入正確的 SVN 服務地址。可以在瀏覽器中輸入該地址進行確認
svn: 方法 OPTIONS 失敗於 “http://www.moon.ossxp.com/svn/test”: 200 OK (http://www.moon.ossxp.com)
5.
The version of your subversion (client) is below 1.5.0, upgrade to 1.5.0 or above. SVN below 1.5.0 can not handle mergeinfo properly. It can mess up our automated merge tracking!
是由於客戶端的軟體版本低於1.5.0造成的。伺服器端對客戶端軟體版本進行了限制,以免對合並跟蹤破壞。
升級本地的Subversion客戶端軟體到1.5.0或以上版本。
6.
svn: This client is too old to work with working copy '.'. You need to get a newer Subversion client, or to downgrade this working copy. See http://subversion.tigris.org/faq.html#working-copy-format-change for details.
安裝了多個版本的SVN客戶端(TSVN,Subclipse,...),且各個客戶端的版本不一致。高版本的SVN客戶端會自動更新本地工作目錄中的 .svn 目錄下的檔案格式,導致舊版本的SVN客戶端不能繼續訪問該本地工作目錄
將本機安裝的所有的SVN客戶端都更新到同一個大版本,以避免本地工作目錄的格式不一致
svn: 此客戶端對於工作副本 “.” 太舊。你需要取得更新的 Subversion 客戶端,或者降級工作副本。 參見 http://subversion.tigris.org/faq.html#working-copy-format-change 以獲得更詳細的資訊。
7.
svn: Working copy 'trunk/src' locked svn: run 'svn cleanup' to remove locks (type 'svn help cleanup' for details)
異常操作導致目錄沒有解鎖。
一個簡單的重現方法:在 .svn 目錄下建立空的名為 lock 的檔案
使用命令列"svn cleanup" 或者類似的“清理”動作刪除鎖定
svn: 工作副本“trunk/src”已經鎖定 svn: 執行“svn cleanup”刪除鎖定 (輸入“svn help cleanup”得到用法)
8.
日誌中沒有作者資訊: ------------------------------------ r9 | (沒有作者資訊) | … ossxp.com anonymous commit test
匿名提交導致沒有作者資訊
檢查版本庫許可權控制,禁止匿名提交
9.
正在傳送 ... 傳輸檔案資料.svn: 提交失敗(細節如下): svn: Commit blocked by pre-commit hook (exit code 1) with output: 提交說明至少應包含 4 個字元, 或者太簡單了。
這是由於使用者提交的提交說明(commit log),太過簡單了。在提交時需要輸入有意義的 commit log。
寫有意義的提交說明,或者請求管理員更改版本庫外掛
10.
增加 Logger.c 傳輸檔案資料.svn: 提交失敗(細節如下): svn: Commit blocked by pre-commit hook (exit code 1) with output: Wide character in print at /opt/svn/svnroot/myrepos/hooks/scripts/check-case-insensitive.pl line 259. 發現檔名大小寫衝突: trunk/src/Logger.c 已經存在於 logger.c
管理員設定了對新增檔案是否重名(只有大小寫不同)的檔案進行檢查。檔名只有大小寫不同,在Windows上進行檢出會造成麻煩
不要新增重名(僅大小寫不同)檔案
增加 src/檔案aBc.txt 傳輸檔案資料.svn: 提交失敗(細節如下): svn: Commit blocked by pre-commit hook (exit code 1) with output: Clash: '/trunk/src/檔案aBc.txt' '/trunk/src/檔案abc.txt'
11.
svn: While preparing '/home/jiangxin/tmp/svn.test/trunk/src/README.txt' for commit svn: Inconsistent line ending style
提交的檔案已經設定了 svn:eol-style 屬性,但是該文字內的換行符有DOS的換行符CRLF,也有Unix換行符LF,不一致!
統一該文字檔案內的換行符。Linux 下可以用dos2unix, unix2dos, sed等命令。Windows下可用UltraEdit 進行轉換。
svn: 當為提交操作準備“/home/jiangxin/tmp/svn.test/trunk/src/README.txt”時 svn: 不一致的行結束樣式
12.
svn: Failed to add file 'Makefile': an unversioned file of the same name already exists
執行更新(svn up)時報錯。因為其他人新增一個檔案到伺服器,而本地卻存在一個同名檔案(未版本控制)
先將本地重名檔案改名,再執行"svn up",之後再比較、合併檔案。或者執行 "svn up --force"
svn: 增加檔案 'Makefile' 失敗: 同名未版本控制的檔案已存在
13.
Adding src/Makefile svn: Commit failed (details follow): svn: File '/svn/test/trunk/src/Makefile' already exists
新增新檔案,提交時報錯。因為其他人已經先於我增加了該檔案。
先執行更新操作("svn up"),再根據提示進行操作:合併/提交...
增加 src/Makefile svn: 提交失敗(細節如下): svn: 檔案“/svn/test/trunk/src/Makefile”已存在
14.
$ svn up Conflict discovered in 'Makefile'. Select: (p) postpone, (df) diff-full, (e) edit, (mc) mine-conflict, (tc) theirs-conflict, (s) show all options: p C Makefile Updated to revision 5. Summary of conflicts: Text conflicts: 1
多人同時編輯同一個檔案時,可能會遇到衝突。別人先於我提交,則當我提交時要先更新。更新可能遇到不能自動解決的衝突
使用工具進行衝突解決
$ svn up 在 “Makefile” 中發現衝突。 選擇: (p) 推遲,(df) 顯示全部差異,(e) 編輯, (mc) 我的版本, (tc) 他人的版本, (s) 顯示全部選項: p C Makefile 更新到版本 5。 衝突概要: 正文衝突:1
15.
svn: Commit failed (details follow): svn: File 'Makefile' is out of date svn: File not found: transaction '6-d', path '/trunk/src/Makefile'
提交的檔案已被他人刪除
先執行更新操作("svn up"),再根據提示解決該樹衝突:刪除檔案或繼續新增...
svn: 提交失敗(細節如下): svn: 檔案 “Makefile” 已經過時 svn: File not found: transaction '6-c', path '/trunk/src/Makefile'
16.
svn: Commit failed (details follow): svn: File or directory '/trunk/XXX' is out of date; try updating svn: resource out of date; try updating
基於舊版本修改是不允許的
先更新("svn update"),再提交
svn: 提交失敗(細節如下): svn: 檔案或目錄 “/trunk/XXX” 已經過時;請先更新 svn: resource out of date; try updating
17.
svn: DAV request failed; it's possible that the repository's pre-revprop-change hook either failed or is non-existent svn: At least one property change failed; repository is unchanged svn: Error setting property 'log': Repository has not been enabled to accept revision propchanges; ask the administrator to create a pre-revprop-change hook
修改提交說明等操作屬於高風險操作,因為該操作沒有被版本控制,屬於不可恢復的操作。預設禁止。
請聯絡管理員,啟用該版本的相關鉤子,允許修改“版本屬性”。參見 管理員鉤子設定
svn: DAV 請求失敗;可能是版本庫的 pre-revprop-change 鉤子執行失敗或者不存在 svn: 至少有一個屬性變更失敗;版本庫未改變 svn: 設定屬性 “log” 出錯: Repository has not been enabled to accept revision propchanges; ask the administrator to create a pre-revprop-change hook
18.
傳輸檔案資料.svn: 提交失敗(細節如下): svn: Commit blocked by pre-commit hook (exit code 1) with output: ==================== trunk/src/File.c : 屬性 svn:mime-type 或者 svn:eol-style 沒有設定 ==================== 管理員已經啟用換行符屬性檢查。每一個新新增的檔案必須 指定換行符。如果 svn:mime-type 屬性為文字檔案,則 必須設定 svn:eol-style 屬性。 對於二進位制檔案,執行如下命令: svn propset svn:mime-type application/octet-stream path/of/file 對於文字檔案,可以執行如下命令: svn propset svn:mime-type text/plain path/of/file svn propset svn:eol-style native path/of/file 為了避免每次新增檔案手動設定,可以啟用自動屬性設定 ...
Conflict discovered in ‘EuM1.xcodeproj/project.pbxproj’.
Select: (p) postpone, (df) diff-full, (e) edit,
(mc) mine-conflict, (tc) theirs-conflict,
(s) show all options: s
(e) edit – change merged file in an editor
(df) diff-full – show all changes made to merged file
(r) resolved – accept merged version of file
(dc) display-conflict – show all conflicts (ignoring merged version)
(mc) mine-conflict – accept my version for all conflicts (same)
(tc) theirs-conflict – accept their version for all conflicts (same)
(mf) mine-full – accept my version of entire file (even non-conflicts)
(tf) theirs-full – accept their version of entire file (same)
(p) postpone – mark the conflict to be resolved later
(l) launch – launch external tool to resolve conflict
(s) show all – show this list
Select: (p) postpone, (df) diff-full, (e) edit,
(mc) mine-conflict, (tc) theirs-conflict,
(s) show all options: tf
在這裡,如果記不清楚各個選項的含義,可以輸入s瞭解。另外,如果不確定自己是否更改了本地的project檔案,可以輸入dc瞭解原生代碼和repository上的差異。
但是,如果你也為專案增加了新檔案,這樣你的本地project檔案和repository上的project檔案都有新的內容。我現在的做法是 tc,即讓svn自動合併,當然合併的是有問題的,會標出哪部分是我本地的,哪部分是repository上的,我是手工解決衝突,然後再次提交,通知項 目成員更新。
編號
出錯資訊
問題剖析
解決方案
1.
svn: Server sent unexpected return value (500 Internal Server Error) in response to OPTIONS request for 'http://svn.moon.ossxp.com/svn/test'
錯誤的使用者名稱
檢查登入的使用者名稱是否輸入錯誤
svn: 伺服器傳送了意外的返回值(500 Internal Server Error),在響應 “OPTIONS” 的請求 “http://svn.moon.ossxp.com/svn/test” 中
2.
svn: OPTIONS of 'http://svn.moon.ossxp.com/svn/test': authorization failed: Could not authenticate to server: rejected Basic challenge (http://svn.moon.ossxp.com)
錯誤的口令
用正確的使用者名稱/口令登入
svn: 方法 OPTIONS 失敗於 “http://svn.moon.ossxp.com/svn/test”: 認證失敗: Could not authenticate to server: rejected Basic challenge (http://svn.moon.ossxp.com)
3.
svn: Server sent unexpected return value (403 Forbidden) in response to OPTIONS request for 'http://svn.moon.ossxp.com/svn/test'
使用者無許可權
聯絡管理員,為使用者分配許可權
svn: 伺服器傳送了意外的返回值(403 Forbidden),在響應 “OPTIONS” 的請求 “http://svn.moon.ossxp.com/svn/test” 中
4.
svn: OPTIONS of 'http://www.moon.ossxp.com/svn/test': 200 OK (http://www.moon.ossxp.com)
伺服器地址錯誤,是普通Web頁面,不支援SVN的 WebDAV 協議
確認輸入正確的 SVN 服務地址。可以在瀏覽器中輸入該地址進行確認
svn: 方法 OPTIONS 失敗於 “http://www.moon.ossxp.com/svn/test”: 200 OK (http://www.moon.ossxp.com)
5.
The version of your subversion (client) is below 1.5.0, upgrade to 1.5.0 or above. SVN below 1.5.0 can not handle mergeinfo properly. It can mess up our automated merge tracking!
是由於客戶端的軟體版本低於1.5.0造成的。伺服器端對客戶端軟體版本進行了限制,以免對合並跟蹤破壞。
升級本地的Subversion客戶端軟體到1.5.0或以上版本。
6.
svn: This client is too old to work with working copy '.'. You need to get a newer Subversion client, or to downgrade this working copy. See http://subversion.tigris.org/faq.html#working-copy-format-change for details.
安裝了多個版本的SVN客戶端(TSVN,Subclipse,...),且各個客戶端的版本不一致。高版本的SVN客戶端會自動更新本地工作目錄中的 .svn 目錄下的檔案格式,導致舊版本的SVN客戶端不能繼續訪問該本地工作目錄
將本機安裝的所有的SVN客戶端都更新到同一個大版本,以避免本地工作目錄的格式不一致
svn: 此客戶端對於工作副本 “.” 太舊。你需要取得更新的 Subversion 客戶端,或者降級工作副本。 參見 http://subversion.tigris.org/faq.html#working-copy-format-change 以獲得更詳細的資訊。
7.
svn: Working copy 'trunk/src' locked svn: run 'svn cleanup' to remove locks (type 'svn help cleanup' for details)
異常操作導致目錄沒有解鎖。
一個簡單的重現方法:在 .svn 目錄下建立空的名為 lock 的檔案
使用命令列"svn cleanup" 或者類似的“清理”動作刪除鎖定
svn: 工作副本“trunk/src”已經鎖定 svn: 執行“svn cleanup”刪除鎖定 (輸入“svn help cleanup”得到用法)
8.
日誌中沒有作者資訊: ------------------------------------ r9 | (沒有作者資訊) | … ossxp.com anonymous commit test
匿名提交導致沒有作者資訊
檢查版本庫許可權控制,禁止匿名提交
9.
正在傳送 ... 傳輸檔案資料.svn: 提交失敗(細節如下): svn: Commit blocked by pre-commit hook (exit code 1) with output: 提交說明至少應包含 4 個字元, 或者太簡單了。
這是由於使用者提交的提交說明(commit log),太過簡單了。在提交時需要輸入有意義的 commit log。
寫有意義的提交說明,或者請求管理員更改版本庫外掛
10.
增加 Logger.c 傳輸檔案資料.svn: 提交失敗(細節如下): svn: Commit blocked by pre-commit hook (exit code 1) with output: Wide character in print at /opt/svn/svnroot/myrepos/hooks/scripts/check-case-insensitive.pl line 259. 發現檔名大小寫衝突: trunk/src/Logger.c 已經存在於 logger.c
管理員設定了對新增檔案是否重名(只有大小寫不同)的檔案進行檢查。檔名只有大小寫不同,在Windows上進行檢出會造成麻煩
不要新增重名(僅大小寫不同)檔案
增加 src/檔案aBc.txt 傳輸檔案資料.svn: 提交失敗(細節如下): svn: Commit blocked by pre-commit hook (exit code 1) with output: Clash: '/trunk/src/檔案aBc.txt' '/trunk/src/檔案abc.txt'
11.
svn: While preparing '/home/jiangxin/tmp/svn.test/trunk/src/README.txt' for commit svn: Inconsistent line ending style
提交的檔案已經設定了 svn:eol-style 屬性,但是該文字內的換行符有DOS的換行符CRLF,也有Unix換行符LF,不一致!
統一該文字檔案內的換行符。Linux 下可以用dos2unix, unix2dos, sed等命令。Windows下可用UltraEdit 進行轉換。
svn: 當為提交操作準備“/home/jiangxin/tmp/svn.test/trunk/src/README.txt”時 svn: 不一致的行結束樣式
12.
svn: Failed to add file 'Makefile': an unversioned file of the same name already exists
執行更新(svn up)時報錯。因為其他人新增一個檔案到伺服器,而本地卻存在一個同名檔案(未版本控制)
先將本地重名檔案改名,再執行"svn up",之後再比較、合併檔案。或者執行 "svn up --force"
svn: 增加檔案 'Makefile' 失敗: 同名未版本控制的檔案已存在
13.
Adding src/Makefile svn: Commit failed (details follow): svn: File '/svn/test/trunk/src/Makefile' already exists
新增新檔案,提交時報錯。因為其他人已經先於我增加了該檔案。
先執行更新操作("svn up"),再根據提示進行操作:合併/提交...
增加 src/Makefile svn: 提交失敗(細節如下): svn: 檔案“/svn/test/trunk/src/Makefile”已存在
14.
$ svn up Conflict discovered in 'Makefile'. Select: (p) postpone, (df) diff-full, (e) edit, (mc) mine-conflict, (tc) theirs-conflict, (s) show all options: p C Makefile Updated to revision 5. Summary of conflicts: Text conflicts: 1
多人同時編輯同一個檔案時,可能會遇到衝突。別人先於我提交,則當我提交時要先更新。更新可能遇到不能自動解決的衝突
使用工具進行衝突解決
$ svn up 在 “Makefile” 中發現衝突。 選擇: (p) 推遲,(df) 顯示全部差異,(e) 編輯, (mc) 我的版本, (tc) 他人的版本, (s) 顯示全部選項: p C Makefile 更新到版本 5。 衝突概要: 正文衝突:1
15.
svn: Commit failed (details follow): svn: File 'Makefile' is out of date svn: File not found: transaction '6-d', path '/trunk/src/Makefile'
提交的檔案已被他人刪除
先執行更新操作("svn up"),再根據提示解決該樹衝突:刪除檔案或繼續新增...
svn: 提交失敗(細節如下): svn: 檔案 “Makefile” 已經過時 svn: File not found: transaction '6-c', path '/trunk/src/Makefile'
16.
svn: Commit failed (details follow): svn: File or directory '/trunk/XXX' is out of date; try updating svn: resource out of date; try updating
基於舊版本修改是不允許的
先更新("svn update"),再提交
svn: 提交失敗(細節如下): svn: 檔案或目錄 “/trunk/XXX” 已經過時;請先更新 svn: resource out of date; try updating
17.
svn: DAV request failed; it's possible that the repository's pre-revprop-change hook either failed or is non-existent svn: At least one property change failed; repository is unchanged svn: Error setting property 'log': Repository has not been enabled to accept revision propchanges; ask the administrator to create a pre-revprop-change hook
修改提交說明等操作屬於高風險操作,因為該操作沒有被版本控制,屬於不可恢復的操作。預設禁止。
請聯絡管理員,啟用該版本的相關鉤子,允許修改“版本屬性”。參見 管理員鉤子設定
svn: DAV 請求失敗;可能是版本庫的 pre-revprop-change 鉤子執行失敗或者不存在 svn: 至少有一個屬性變更失敗;版本庫未改變 svn: 設定屬性 “log” 出錯: Repository has not been enabled to accept revision propchanges; ask the administrator to create a pre-revprop-change hook
18.
傳輸檔案資料.svn: 提交失敗(細節如下): svn: Commit blocked by pre-commit hook (exit code 1) with output: ==================== trunk/src/File.c : 屬性 svn:mime-type 或者 svn:eol-style 沒有設定 ==================== 管理員已經啟用換行符屬性檢查。每一個新新增的檔案必須 指定換行符。如果 svn:mime-type 屬性為文字檔案,則 必須設定 svn:eol-style 屬性。 對於二進位制檔案,執行如下命令: svn propset svn:mime-type application/octet-stream path/of/file 對於文字檔案,可以執行如下命令: svn propset svn:mime-type text/plain path/of/file svn propset svn:eol-style native path/of/file 為了避免每次新增檔案手動設定,可以啟用自動屬性設定 ...