タイトル: リポジトリの作成
mkdir リポジトリ名.git cd リポジトリ名.git git init --shared |
※git init に --bare を付与すると、ファイルの実体を持たずに管理する。
--bareを付与しない場合は更に以下のコマンドを実行する。
git config --bool core.bare true |
mkdir リポジトリ名.git cd リポジトリ名.git git init --shared |
※git init に --bare を付与すると、ファイルの実体を持たずに管理する。
--bareを付与しない場合は更に以下のコマンドを実行する。
git config --bool core.bare true |