23 lines
503 B
Batchfile
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
|
|
|