less than 1 minute read

super easy explanation given in this link

the usual workflow for changing is as follows:

    1. local changes
    2. add: local index
    3. commit: local head

push: repository

the commands:

  • adding files:
    • git add <file>
    • git add *
  • committing changes to local index:
    • git commit -m "msg"
  • pushing to the repo:
    • git push
    • git push origin master
  • mit repo zu aktualisieren:
    • git pull
  • check status:
    • git status
  • set name/email:
    $ git config --global user.name "John Doe"
    $ git config --global user.email johndoe@example.com