亚洲激情专区-91九色丨porny丨老师-久久久久久久女国产乱让韩-国产精品午夜小视频观看

溫馨提示×

溫馨提示×

您好,登錄后才能下訂單哦!

密碼登錄×
登錄注冊×
其他方式登錄
點擊 登錄注冊 即表示同意《億速云用戶服務條款》

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

發布時間:2020-10-06 03:11:04 來源:腳本之家 閱讀:133 作者:beautifulzzzz 欄目:web開發

本文用到了node-git-server

1、檢測本地git版本

該包的使用需要機器上本來就安裝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、運行

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

5、測試git服務器

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

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

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

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

同樣git clone也比較簡單!

6、云端git倉庫的位置

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

登錄遠程服務器可以發現在/tmp/repos/目錄下存在我們同步的git倉庫:(其中beep.git是之前push的一個)

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

以上就是本文的全部內容,希望對大家的學習有所幫助,也希望大家多多支持億速云。

向AI問一下細節

免責聲明:本站發布的內容(圖片、視頻和文字)以原創、轉載和分享為主,文章觀點不代表本網站立場,如果涉及侵權請聯系站長郵箱:is@yisu.com進行舉報,并提供相關證據,一經查實,將立刻刪除涉嫌侵權內容。

AI

台北市| 舞阳县| 盖州市| 隆尧县| 碌曲县| 延长县| 卢氏县| 桂阳县| 辽源市| 崇信县| 利川市| 大方县| 广饶县| 玉山县| 海晏县| 临海市| 鹤峰县| 遵义市| 玛曲县| 秦安县| 兰溪市| 新蔡县| 阳新县| 佛冈县| 息烽县| 台安县| 张家港市| 夏邑县| 崇文区| 三都| 普兰县| 威远县| 五峰| 宜州市| 保康县| 瑞安市| 新竹市| 古交市| 伊吾县| 兴安县| 五家渠市|