2023-06-30

.gitigrnoreの反映

すでにgit管理されているファイルをgitignoreでマッチするようにしても、管理から外れない。外すためには以下のようにすると良い。

git rm -r --cached .
git add .
git commit -m 'update with .gitignore'
< 2023-06-292023-07-01 >