Neues Repo anlegen
touch README.md oder vi README.md git init git checkout -b main git add README.md git commit -m "first commit" git remote add origin http://git.lan.klotzbuecher.biz:3000/daddl/NeuesRepo.git git push -u origin main
Bestehendes Repository via Kommandozeile pushen
git remote add origin http://git.lan.klotzbuecher.biz:3000/daddl/NeuesRepo.git git push -u origin main
Client-Einstellungen
git config --global user.name "daddl" git config --global user.email "daddl@klotzbuecher.biz" git config credential.helper store