小規模な開発チームでGitでバージョン管理を行いたいけれど、わざわざGitサーバーを構築したくないような場合があります。
そのような場合は、共有ファイルサーバー内にリモートリポジトリを作成してバージョン管理を行います。
Git Bashで下記のコマンドを実行します。
cd /r/path/to git init --bare --shared xxxxxxxx.git
Initialized empty shared Git repository in /path/to/xxxxxxxx.git/
cd /d/path/to git clone /r/path/to/xxxxxxxx.git
Cloning into 'xxxxxxxx'... warning: You appear to have cloned an empty repository. done.