2015/04/29

Windows Git server

Git for Windowsをインストールする
改行コードを変更しないで

E:/gitServer/testRepo.git
でgit Bashを起動


git init --bare --shared=true
touch ./git-daemon-export-ok
git daemon --export-all --enable=receive-pack --base-path=/C/git


==これでサーバー起動完了
 ==>windowのサービスにして、便利
 sc create servicename binPath= "C:\hoge\hogehoge.exe"
“binPath= “の後ろには1つスペースが必要とのこと。

「SC」 Create Service Success!
==>これで起動時エラになる、Sexeを仲介にして登録、起動できた!

★他のPCから接続テスト

git clone git://<リモートリポジトリを構築したPCのIPアドレス>/tesRepo.git