git init 使い方
リポジトリを作成する
リポジトリ用のディレクトリ newdir を作り、 git コマンドでリポジトリにする。
mkdir newdir
cd newdir
git init
newdir の中に .git ディレクトリが作られる。
mkdir でディレクトリを作成しないで、
git init newdir
のようにしても同じことができる。
ベアリポジトリを作成する
ディレクトリ repo.git をベアリポジトリとして作成する。
git init --bare <repo.git>
こうすると作業ディレクトリは作られない。
参考
- man git-init