Node.js 는 node-git-server 를 이용 하여 git 서버 를 빠르게 구축 합 니 다.
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
이상 이 바로 본 고의 모든 내용 입 니 다.여러분 의 학습 에 도움 이 되 고 저 희 를 많이 응원 해 주 셨 으 면 좋 겠 습 니 다.
이 내용에 흥미가 있습니까?
현재 기사가 여러분의 문제를 해결하지 못하는 경우 AI 엔진은 머신러닝 분석(스마트 모델이 방금 만들어져 부정확한 경우가 있을 수 있음)을 통해 가장 유사한 기사를 추천합니다:
NestJs Guard하지만 가드는 ExcutionContext를 사용할 수 있기 때문에 다음에 어떠한 라우트 핸들러가 실행되는지 정확하게 알 수 있다. ExecutionContext는 ArgumentsHost를 상속 받았기 때문에 각 ...
텍스트를 자유롭게 공유하거나 복사할 수 있습니다.하지만 이 문서의 URL은 참조 URL로 남겨 두십시오.
CC BY-SA 2.5, CC BY-SA 3.0 및 CC BY-SA 4.0에 따라 라이센스가 부여됩니다.