GIT public repository 이전
apt-get intall git git-core git-daemon
/etc/service/git-daemon 의 내용을 편집
#!/bin/sh
exec 2>&1
echo 'git-daemon starting.'
exec chpst -ugitdaemon \
"$(git --exec-path)"/git-daemon --verbose --reuseaddr \
--base-path=/repository/git/public --export-all --syslog --detach
레포지토리의 path를 --base-path 이후에 적어준다.
이후 기존 repository를 통째로 들고와서 --base-path 에 명시한 디렉토리에 복사.
끝~
'geek_stuff > server & linux' 카테고리의 다른 글
apt 사용시 proxy 사용 (0) | 2012.08.06 |
---|---|
ubuntu repository mirroring (0) | 2012.08.06 |
여러 장비에서 자동으로 슬립모드로 들어가는 bash shell script (0) | 2012.07.19 |
시스템 sleep 관련 event 발생시 자동실행 (0) | 2012.07.19 |
일반적인 리눅스 bash command (0) | 2012.07.19 |