安裝到d:\svnserver\subversion(隨意)
然後,建立repository
開啟命令視窗, 鍵入 svnadmin create d:\svnserver\projects\easyon
再然後,配置repository
進入repository目錄,在本文中是d:\svnserver\projects\easyon,你會看到conf目錄,進入該目錄,你會看到svnserve.conf和passwd兩個檔案
對兩個檔案作如下修改
svnserve.conf
[general]
### these options control access to the repository for unauthenticated
### and authenticated users. valid values are "write", "read",
### and "none". the sample settings below are the defaults.
anon-access = read
auth-access = write
### the password-db option controls the location of the password
### database file. unless you specify a path starting with a /,
### the file's location is relative to the conf directory.
### uncomment the line below to use the default password file.
password-db = passwd
passwd
[users]
# harry = harryssecret
# sally = sallyssecret
jackie = jackie (你要新增的svn使用者,第乙個是使用者名稱,第二個是密碼,可以新增多個)
以上配置完事,說明你已經具備了svn伺服器的前提條件,可以新增使用使用者和密碼了,
接下來完成最主要的事宜了,—-—
再再然後,向subversion中匯入專案:現在我們需要將專案匯入到subversion的庫中,只需執行一下命令: svn :lol: import d:\easyon(要放到伺服器的專案) svn://localhost/demo(欲放到的伺服器目錄,事先建立好) -m "initial import" --username jackie --password jackie
這樣專案就匯入到subversion庫中啦。
最後既然是做為svn伺服器,必須要執行svnserve -d -r d:\svnserver\project,記住不要關閉視窗,伺服器嘛,就讓它跑著,掛了拉倒,呵呵,本人就這麼配置的,都ok,沒什麼問題,呵呵
ubuntu安裝svn全過程
安裝 安裝過程使用root使用者 2.確保ubuntu安裝了openssh和openssl 不然configure時會出錯 安裝openssh apt get install openssh server 安裝openssl apt get install openssl apt get insta...
Mac搭建Git GitHub全過程
準備工作 第一步 安裝git 一開始我搜到的命令是 ruby e curl fssl 嘗試了一下,出現了兩個問題,乙個是連線不上 似乎是被gfw遮蔽了的關係 另乙個問題是ssl,折騰了半天也沒解決。後來搜尋到另外乙個安裝命令,試了一次就好了,雖然這個命令很少出現在搜尋出來的教程中。這樣一下子就安裝好...
Node MongoDB 搭建後台的全過程
近期基於 vue cil 搭建前端專案,express mongoose 搭建後台,遇到了不少問題,總結部落格如下,有什麼不正確的地方,請大家批評指正 mongodb 是 nosql 非關係型資料庫。mongoose是 mongodb 的乙個物件模型工具,是基於 node mongodb nativ...