readme hinzugefügt

Ich habe die git-Befehle, die nur in einem leeren Repo angezeigt werden, in diese readme gfespeichert.
main
Adrian Pegler 2024-02-22 10:20:23 +01:00
commit b94071118e
1 changed files with 16 additions and 0 deletions

16
readme.txt Normal file
View File

@ -0,0 +1,16 @@
# Erstelle ein neues Repository von der Kommandozeile aus
touch README.md
git init
git checkout -b main
git add README.md
git commit -m "first commit"
git remote add origin http://185.183.156.236:3000/pegler/GodotTutorial.git
git push -u origin main
# Bestehendes Repository via Kommandozeile pushen
git remote add origin http://185.183.156.236:3000/pegler/GodotTutorial.git
git push -u origin main