A configurable git server written in Deno
deno run -A https://taisukef.github.io/deno-git-server/GitServer.js
runs on localhost:7005
make some dir
git init
commit some file
touch a.txt
git add .
git commit -m test
push to deno-git-server
git remote add origin http://localhost:7005/test
git push --set-upstream origin master
or
git push http://localhost:7005/test master