SVN常用問題處理辦法(待補充)

2021-08-15 20:18:26 字數 1375 閱讀 3674

[xingcheng@xdnwmfz views]$ sudo svn update wechatnews

skipped

'wechatnews' -- node remains in conflict

summary of conflicts:

skipped

paths:

1[xingcheng@xdnwmfz views]$ sudo svn remove --force wechatnews

d wechatnews

[xingcheng@xdnwmfz views]$ sudo svn resolve --accept=working wechatnews

[xingcheng@xdnwmfz views]$ sudo svn update wechatnews

updating

'wechatnews'

:a wechatnews

a wechatnews/index.volt

updated to revision 6196.

解決辦法:

#skipped 'xx'

-- node remains in conflict 解決辦法,支援目錄

svn cleanup filename

svn revert filename

svn remove --force filename

svn resolve --accept=working filename

svn up

#此時如果還是報錯,那麼重複以上步驟。然後在客戶端刪除問題目錄,提交到svn。然後重新上傳目錄。之後update

其實這個問題是這樣的。下面我舉個例子:比如版本庫svn是root使用者建立的但是啟動服務的時候沒有選擇root啟動,而是在其他使用者轉托管太下啟動的,所以只能讀不能寫。

解決方法:

#停止svn服務:

killall svnserve

#在建立版本庫的使用者下啟動svn :

svnserve -d -r /opt/....(你版本庫的路徑),如果是root使用者 sudo svnserve -d -r /data/svnroot

常用其他(待補充)

echo 輸出乙個或者多個字串 var dump 列印變數的詳細資訊,可以一次列印乙個或多個變數的資訊 print r 列印陣列的資訊 unset 銷毀變數,可以一次銷毀乙個或多個變數,銷毀之後變數的值為null header語句的作用 header content type text html c...

python處理中文 待補充

字串在python內部的表示是unicode編碼,因此,在做編碼轉換時,通常需要以unicode作為中間編碼,即先將其他編碼的字串解碼 decode 成unicode,再從unicode編碼 encode 成另一種編碼。decode的作用是將其他編碼的字串轉換成unicode編碼,如str1.dec...

Linux 常用命令(待補充)

tmux用ctrl b 和ctrl b 分割視窗的時候,會發現出來的視窗又回到了 home 目錄下,如何保持在當前目錄下呢?畢竟有的時候寫 想看看本目錄下檔案的名字,不需要切換目錄的 方法 在home目錄下新建乙個檔案.tmux.conf輸入 bind split window c bind spl...