真实的国产乱ⅩXXX66竹夫人,五月香六月婷婷激情综合,亚洲日本VA一区二区三区,亚洲精品一区二区三区麻豆

成都創(chuàng)新互聯(lián)網(wǎng)站制作重慶分公司

詳解Node.js利用node-git-server快速搭建git服務(wù)器

本文用到了node-git-server

成都創(chuàng)新互聯(lián)主營銅鼓網(wǎng)站建設(shè)的網(wǎng)絡(luò)公司,主營網(wǎng)站建設(shè)方案,成都app軟件開發(fā)公司,銅鼓h5微信小程序定制開發(fā)搭建,銅鼓網(wǎng)站營銷推廣歡迎銅鼓等地區(qū)企業(yè)咨詢

1、檢測本地git版本

該包的使用需要機(jī)器上本來就安裝git,且git的版本大于等于2.7:

 ╭─root@lt /home/workspace 
 ╰─# git --version             
 git version 2.7.4

2、利用npm安裝包

╭─root@lt /home/workspace 
╰─# npm install node-git-server
/home/workspace
└─┬ node-git-server@0.3.0 
 ├─┬ http-duplex@0.0.2 
 │ ├── duplex-pipe@0.0.2 
 │ └── inherits@1.0.2 
 └── through@2.3.8

npm WARN enoent ENOENT: no such file or directory, open '/home/workspace/package.json'
npm WARN workspace No description
npm WARN workspace No repository field.
npm WARN workspace No README data
npm WARN workspace No license field.

有警告可以先忽略~

3、編寫example

cd ./node_modules/node-git-server/example/

編輯index.js

const Server = require('node-git-server');
const repos = new Server('/tmp/repos');
const port = process.env.PORT || 80;
 
repos.on('push', (push) => {
  console.log('push ' + push.repo + '/' + push.commit
    + ' (' + push.branch + ')'
  );
  push.accept();
});
 
repos.on('fetch', (fetch) => {
  console.log('fetch ' + fetch.commit);
  fetch.accept();
});
 
repos.listen(port, () => {
  console.log(`node-git-server running at http://localhost:${port}`)
});

4、運(yùn)行

 ╭─root@lt /home/workspace/node_modules/node-git-server/example 
 ╰─# node index.js 
 node-git-server running at http://localhost:80

5、測試git服務(wù)器

由于我的git服務(wù)器是在aliyun上跑的,并且綁定了www.beautifulzzzz.com,所以我先在本地新建一個(gè)git倉庫,并將其推送同步到云端,然后再clone下來來做測試:

詳解Node.js利用node-git-server快速搭建git服務(wù)器

可見將本地git倉庫同步到云端和普通的git服務(wù)器沒有區(qū)別,簡直太簡單方便了?。?!

詳解Node.js利用node-git-server快速搭建git服務(wù)器

同樣git clone也比較簡單!

6、云端git倉庫的位置

在index.js中我們指定git倉庫存放在:const repos = new Server('/tmp/repos');目錄下

登錄遠(yuǎn)程服務(wù)器可以發(fā)現(xiàn)在/tmp/repos/目錄下存在我們同步的git倉庫:(其中beep.git是之前push的一個(gè))

 ╭─root@lt /tmp/repos 
 ╰─# ls
 beautifulzzzz.git beep.git

以上就是本文的全部內(nèi)容,希望對大家的學(xué)習(xí)有所幫助,也希望大家多多支持創(chuàng)新互聯(lián)。


名稱欄目:詳解Node.js利用node-git-server快速搭建git服務(wù)器
分享路徑:http://weahome.cn/article/jseeih.html

其他資訊

在線咨詢

微信咨詢

電話咨詢

028-86922220(工作日)

18980820575(7×24)

提交需求

返回頂部