【git】公開用リポジトリを作って複数個所で共有する
1、公開用リポジトリのためのディレクトリを作る
mkdir /home/git/test.project
2、公開用リポジトリを作る
cd /home/git/test.project git --bare init
以上で、まっさらの状態からスタートしてもよいが、通常何かバージョン管理したいものが既にあると思う。
3、同じサーバーにgitで管理している環境があったら、そちらから内容をpushしてくる例
(参照:現在稼働中の環境をgitで管理を始める)
cd /path/to/別のgit管理しているソースのディレクトリ git push /home/git/test.project master
4、外部から接続してみる
git clone ssh://user@git.example.com:12345/home/git/test.project
git pull ssh://user@git.example.com:12345/home/git/test.project
git push (省略)
コメント