Create Git Local Server
Last modified: 2023-11-05
Start Local Git Server (Dumb, HTTP)
cd test_repo
git init
git add . && git commit -m "first commit"
cd .git
# Update auxiliary info file to help dumb server.
# --bare: Bare repository (does not have a working directory)
git --bare update-server-info
cd ..
python3 -m http.server