西西軟件園多重安全檢測下載網站、值得信賴的軟件下載站!
西西首頁 電腦軟件 安卓軟件 電腦游戲 安卓游戲 排行榜 專題合集

Mercurial For Linux

V3.5.1免費版
  • Mercurial For LinuxV3.5.1免費版
  • 軟件大小:4.2M
  • 更新時間:2015-10-08 15:55
  • 軟件語言:英文
  • 軟件廠商:
  • 軟件類別:國外軟件 / 免費軟件 / 編程輔助
  • 軟件等級:4級
  • 應用平臺:linux
  • 官方網站:https://www.mercurial-scm.org/wiki/Mercu
  • 應用備案:
好評:50%
壞評:50%

軟件介紹

Mercurial For Linux是一種輕量級分布式版本控制系統(tǒng),采用Python語言實現(xiàn),易于學習和使用,擴展性強,其是基于GNU General Public License(GPL)授權的開源項目。這個工具在國內很少人使用,所以中文資料匱乏.只有官方的website上有一些少得可憐的中文資料了.不過總體上來說,還是比較好用的。

Linux下Mercurial (hg)配置說明

1.建立用戶hgrepo

其它用戶將用這個賬戶用hg服務器push代碼。

useradd hgrepo -d /home/hgrepo # add user hgrepo
passwd hgrepo

2.建立hg代碼倉庫

如果代碼倉庫名稱為project.hg,則可用如下命令。

cd /home/hgrepo
mkdir project.hg
cd project.hg
hg init # 初始化代碼倉庫
建立一個測試文件

echo "hello, mercurial" > sample.txt
hg add  # add
hg ci     # check in

3. 打開http

打開一個端口,讓遠程用戶可以clone倉庫中的代碼.
在打開端口前請確定文件權限正確。

更改文件權限
chown hgrepo.hgrepo /home/hgrepo/project.hg -R
chmod og+rw /home/hgrepo/project.hg -R
打開端口

cd  /home/hgrepo/project.hg -R
hg serve -p 8002 &
可將上面兩行加入/etc/rc.local這樣就可以在開機的時候自動運行了。

4.使用hg

完成步驟3以后,我們就可以使用了。

clone到本地

例如你的服務器的名字為test.

hg clone http://test:8002
然后在本地目錄就會出現(xiàn)一個project.hg的一個copy.

修改Client端的配置

更改.hg/hgrc,加上default-push和username

[paths]
default = http://test:8002
default-push = ssh://hgrepo@test//home/hgrepo/project.hg/
[ui]
username=shaohui.zheng
這樣你就可用hg push 向服務器提交code了。這時服務器會問你passward,這個password就是用戶hgrepo的password.

Good Luck.

軟件截圖

Mercurial For Linux V3.5.1免費版

發(fā)表評論

昵稱:
表情: 高興 可 汗 我不要 害羞 好 下下下 送花 屎 親親
查看所有(0)條評論 > 字數(shù): 0/500

TOP
軟件下載