main repo

This commit is contained in:
Basilosaurusrex
2025-11-24 18:09:40 +01:00
parent b636ee5e70
commit f027651f9b
34146 changed files with 4436636 additions and 0 deletions

22
setup-git.bat Normal file
View File

@@ -0,0 +1,22 @@
@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