Created
July 7, 2015 13:57
-
-
Save ADoebeling/19537d5f7eee9380aa47 to your computer and use it in GitHub Desktop.
GitHub-Basiswissen
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
# 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 <[email protected]>" | |
# (ab dem zweiten mal reicht) | |
git commit -m "Logo zur CSS hinzugefügt" [email protected] | |
# Veröffentlichen auf GitHub | |
git push |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment