26 lines
544 B
Plaintext
26 lines
544 B
Plaintext
// 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
|
|
|
|
|
|
|
|
//////////////////////
|
|
|
|
// Hinterlegen von Benutzerinfos in GIT
|
|
|
|
git config --global user.name "Christian Albers"
|
|
git config --global user.email "christian.albers@albers-consulting.de" |