http://hachinobu.hateblo.jp/entry/20130731/1375276390
CentOS6.4にGitサーバを構築したのでメモ
[サーバ側]
xinetd を起動中: [ OK ]
必要なものをインストールして起動設定が終わったらgit-
daemonファイルを/etc/xinetd.dに作成
内容は
service git
{
disable = no
socket_type = stream
wait = no
user = nobody
server = /usr/libexec/git-core/git-daemon
server_args = --base-path=/var/lib/git --export-all --user-path=public_git --syslog --inetd --verbose
log_on_failure += USERID
}
設定を反映するために再起動
Initialized empty shared Git repository in /var/lib/git/public_git/test.git/
gitグループを作成してユーザをそのグループに追加
[クライアント側]
環境はgitコマンドが使用できる状態であることを前提
$ cd ~/src
$ mkdir test
$ cd test
$ echo "Git Test." > test.txt
$ git init
Initialized empty Git repository in /home/hachinobu/src/test/.git/
ローカルにコミット
$ git add test.txt
$ git commit -m "First Commit"
git remote add test ssh://hachinobu@server-name.com:56722/var/lib/git/public_git/test.git
$ git push origin master
Counting objects: 3, done.
Writing objects: 100% (3/3), 229 bytes, done.
Total 3 (delta 0), reused 0 (delta 0)
To ssh://hachinobu@server-name.com:56722/var/lib/git/public_git/test.git
* [new branch] master -> master
ssh 用の鍵ペアを登録していればパスワードは求められない
$ git pull test master
From ssh://hachinobu@server-name.com:56722/var/lib/git/public_git/test.git
* branch master -> FETCH_HEAD
Already up-to-date.
cd ..
$ rm -rf ~/src/test
$ git clone ssh://hachinobu@server-name.com:56722/var/lib/git/public_git/test.git
Cloning into 'test'...
remote: Counting objects: 3, done.
Receiving objects: 100% (3/3), 228 bytes, done.
remote: Total 3 (delta 0), reused 0 (delta 0)
$ ls -la test
合計 16
drwxr-xr-x 3 hachinobu hachinobu 4096 7月 31 22:12 .
drwxr-xr-x 13 hachinobu hachinobu 4096 7月 31 22:12 ..
drwxr-xr-x 8 hachinobu hachinobu 4096 7月 31 22:12 .git
-rw-r--r-- 1 hachinobu hachinobu 10 7月 31 22:12 test.txt
댓글 없음:
댓글 쓰기