git Howto hinzugefügt

This commit is contained in:
2025-02-11 15:03:52 +01:00
parent 286cd544c0
commit 2d51dbf9e7

18
git_howto.txt Normal file
View File

@@ -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 <Dateiname>
// oder alles hinzufügen mit
git add .
// Erstelle einen Commit:
git commit -m "Beschreibung der Änderungen"
// Hochladen der Änderungen:
git push origin main