Open1

Gitメモ

あじたまあじたま

リモートリポジトリ
mkdir [ディレクトリ名].git
cd [ディレクトリ名].git
git init --bare

ローカルリポジトリ
cd workspace
git init
git remote add origin [リモートリポジトリのパス]

<説明>
①mkdir [ディレクトリ名].git
 gitのリモートリポジトリ情報を置くためのディレクトリ
②cd gitdir.git
 ディレクトリ移動
③git init --bare --shared
 初期化
 ※optionの説明
 --bare:ベアリポジトリ
 --shared:グループアクセス可能

(参考)
https://creepfablic.site/2021/02/12/local-git/
https://www.nekotricolor.com/entry/theory-of-bare-and-non-bare-repository-manage-wordpress-themes-with-git
https://qiita.com/shuntaro_tamura/items/d04fb892c9a6b7e1ab42