From 2d51dbf9e774b0204a296adef8ab482a2a48c982 Mon Sep 17 00:00:00 2001 From: Christian Albers Date: Tue, 11 Feb 2025 15:03:52 +0100 Subject: [PATCH] =?UTF-8?q?git=20Howto=20hinzugef=C3=BCgt?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- git_howto.txt | 18 ++++++++++++++++++ 1 file changed, 18 insertions(+) create mode 100644 git_howto.txt diff --git a/git_howto.txt b/git_howto.txt new file mode 100644 index 0000000..23a9805 --- /dev/null +++ b/git_howto.txt @@ -0,0 +1,18 @@ +// GIT-HowTo: + +// Clone das Repository: +git clone https://git.ac22.de/Christian/d.velop.git + +// Erstelle oder Ändere Dateien oder Verzeichnisse + +// Füge Änderungen hinzu +git add +// oder alles hinzufügen mit +git add . + +// Erstelle einen Commit: +git commit -m "Beschreibung der Änderungen" + +// Hochladen der Änderungen: +git push origin main +