git Howto hinzugefügt
This commit is contained in:
18
git_howto.txt
Normal file
18
git_howto.txt
Normal 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
|
||||||
|
|
||||||
Reference in New Issue
Block a user