From 60c8b091be6caa50eaa94b2ee11886cc669feb7a Mon Sep 17 00:00:00 2001 From: Blockmaster Date: Mon, 21 Sep 2026 21:52:40 +0000 Subject: [PATCH] README.md aktualisiert --- README.md | 9 +++++++++ 1 file changed, 9 insertions(+) diff --git a/README.md b/README.md index c636966..18c7540 100644 --- a/README.md +++ b/README.md @@ -4,23 +4,32 @@ `git --version` -> Prüfen ob git auf eurem PC vorhanden ist. **Im Projekt Ordner** + `git init` -> Lokales Repo erstellen + `git remote add origin https://gitea.bunicorner.de/DEIN_USERNAME/DEIN_REPOSITORY.git` -> Diese Webseite mit deinem Projekt verknüpfen + `git remote -v` -> Überprüfen **Ergebniss im Optimalfall:** + origin https://gitea.bunicorner.de/DEIN_USERNAME/DEIN_REPOSITORY.git (fetch) + origin https://gitea.bunicorner.de/DEIN_USERNAME/DEIN_REPOSITORY.git (push) ## Account mit Git verbinden `git config --global user.name "NUTZERNAME"` + `git config --global user.email "EMAIL-ADRESSE"` ## Projekt pushen (hochladen) `git add .` -> Änderungen zu Git hinzufügen + `git commit -m "NACHRICHT"` -> Eine Nachricht hinzufügen + `git push -u origin master` -> Das Projekt auf diese Webseite hochladen ## Projekt pullen (herunterladen) `git pull` -> Eure Version mit der Webseite aktualiesieren + `git clone https://gitea.bunicorner.de/DEIN_USERNAME/DEIN_REPOSITORY.git` -> Projekt erstmalig von der Webseite herunterladen \ No newline at end of file