Files
Webklar.com/setup-git.bat
Basilosaurusrex f027651f9b main repo
2025-11-24 18:09:40 +01:00

23 lines
503 B
Batchfile

@echo off
echo Initialisiere Git Repository...
git init
echo Erstelle Branch 'main'...
git checkout -b main
echo Fuege alle Projektdateien zum Staging-Bereich hinzu...
git add .
echo Erstelle ersten Commit...
git commit -m "first commit"
echo Fuege Remote-Repository hinzu...
git remote add origin https://git.webklar.com/knso/Webklar.com.git
echo Pushe zum Remote-Repository...
git push -u origin main
echo Fertig! Das Projekt wurde erfolgreich zu Gitea hochgeladen.
pause