linux:git
Dies ist eine alte Version des Dokuments!
Inhaltsverzeichnis
git
Cloning an existing Repository
Committing Changes to your Repository
git add mynewfile.txt
If you have simply updated (or deleted) existing files we simply pass the -u argument to the add argument:
git add -u
git commit -m “Updated the README file”
git push origin
Updating a local Git Repository
git pull origin
Datei aus Repo entfernen
git rm Datei
Ordner nur rekursiv:
git rm -r Ordner
Entfernte Repos
Repo entfernen
git remote rm origin
Siehe auch
Weblinks
linux/git.1451435440.txt.gz · Zuletzt geändert: (Externe Bearbeitung)
