Skip to content

Instantly share code, notes, and snippets.

@ADoebeling
Created July 7, 2015 13:57
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save ADoebeling/19537d5f7eee9380aa47 to your computer and use it in GitHub Desktop.
Save ADoebeling/19537d5f7eee9380aa47 to your computer and use it in GitHub Desktop.
GitHub-Basiswissen
# Zum Verbinden auf mac
# Terminal starten
ssh SSH-BENUTZERNAME@DOMAINNAME
# Repariert die SSH-Berechtigung in einem Quota, einmal täglich
chmod 700 ~/.ssh && chmod 600 ~/.ssh/*
# Gibt Übersicht über alle Änderungen seit letztem Checkin
git status
# Hinzufügen von neuen Dateien od. geänderten Dateien
git add PFAD/ZU/DATEINAME
# Einchecken Deiner Änderung
git commit -m "Logo zur CSS hinzugefügt" --author="Maxim Tajer <mt@1601.com>"
# (ab dem zweiten mal reicht)
git commit -m "Logo zur CSS hinzugefügt" --author=mt@1601.com
# Veröffentlichen auf GitHub
git push
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment