Back to TILs

Convertendo um repositório git para bare

Date: 2020-09-14Last modified: 2023-02-17
cd repo
mv .git ../repo.git # renaming just for clarity
cd ..
rm -fr repo
cd repo.git
git config --bool core.bare true

Referências