Unterschiede
Hier werden die Unterschiede zwischen zwei Versionen angezeigt.
Nächste Überarbeitung | Vorhergehende Überarbeitung | ||
development:github [2025/10/07 09:16] – angelegt silversurfer | development:github [2025/10/09 14:18] (aktuell) – silversurfer | ||
---|---|---|---|
Zeile 2: | Zeile 2: | ||
===== What is GitHub and what is it used for? ===== | ===== What is GitHub and what is it used for? ===== | ||
GitHub is a web-based interface that uses Git, the open source version control software that lets multiple people make separate changes to web pages at the same time. As Carpenter notes, because it allows for real-time collaboration, | GitHub is a web-based interface that uses Git, the open source version control software that lets multiple people make separate changes to web pages at the same time. As Carpenter notes, because it allows for real-time collaboration, | ||
+ | |||
+ | {{youtube> | ||
+ | {{youtube> | ||
+ | {{youtube> | ||
+ | |||
+ | [[https:// | ||
+ | ===== Befehls Basics ===== | ||
+ | git clone[URL] | ||
+ | |||
+ | git init - Initatialisierung | ||
+ | git remote add origin git@github.com: | ||
+ | git push --set-upstream origin main | ||
+ | |||
+ | git status - Änderungen | ||
+ | |||
+ | git add [filename] oder git add * | ||
+ | |||
+ | git commit -m "Mein Git Kommentar" | ||
+ | |||
+ | git push | ||