Node.js 는 node-git-server 를 이용 하여 git 서버 를 빠르게 구축 합 니 다.

2729 단어 Nodegit 서버
본문 은 사용 되 었 다node-git-server
1.로 컬 git 버 전 검사
이 가방 의 사용 은 기계 에 git 를 설치 해 야 하고 git 의 버 전 은 2.7 보다 크다.

 q─root@lt /home/workspace 
 t─# git --version             
 git version 2.7.4
2、npm 설치 패키지 이용

q─root@lt /home/workspace 
t─# npm install node-git-server
/home/workspace
└─┬ [email protected] 
 ├─┬ [email protected] 
 │ ├── [email protected] 
 │ └── [email protected] 
 └── [email protected]

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.예제 작성
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.운행

 q─root@lt /home/workspace/node_modules/node-git-server/example 
 t─# node index.js 
 node-git-server running at http://localhost:80
5.테스트 git 서버
제 git 서버 는 aliyun 에서 뛰 었 고 www.beautifulzzzz.com 에 연결 되 어 있 기 때문에 저 는 먼저 로 컬 에 git 창 고 를 새로 만 들 고 이 를 클 라 우 드 로 전송 한 다음 에 clone 에서 내 려 와 테스트 를 합 니 다.

이 를 통 해 알 수 있 듯 이 로 컬 git 창 고 를 클 라 우 드 에 동기 화 하 는 것 은 일반 git 서버 와 다 르 지 않 습 니 다.정말 간단 하고 편리 합 니 다!!!

git clone 도 쉬 워 요!
6.클 라 우 드 git 창고 의 위치
index.js 에서 git 창 고 를 지정 하여 저장 합 니 다:const repos=new Server('/tmp/repos');목록 아래
원 격 서버 에 로그 인하 면/tmp/repos/디 렉 터 리 에 동기 화 된 git 창고 가 존재 합 니 다.(그 중 beep.git 는 이전 push 의 하나 입 니 다)

 q─root@lt /tmp/repos 
 t─# ls
 beautifulzzzz.git beep.git
이상 이 바로 본 고의 모든 내용 입 니 다.여러분 의 학습 에 도움 이 되 고 저 희 를 많이 응원 해 주 셨 으 면 좋 겠 습 니 다.

좋은 웹페이지 즐겨찾기