HOWTO - GIT¶
Basics¶
Installation¶
git-scm.com
git --version
git --global user.name "Marco Achermann"
git --global user.email "marco.achermann@tyk.ch"
git config --list
git help config
git config --help
Init git¶
Start git-Überwachung eines bestehenden Verzeichnisses.
git init # erzeugt .git Verzeichnis (im aktuellen Verzeichnis)
git status # zeigt Informationen zum Zustand des repos
Workflow¶
WorkDir > Staging Area > .git directory (Repository)
- Checkout the project
- Stage Fixes (git add)
- Commit
git add -A # add all Files
git add [filename]
git commit
git commit -m 'mein kommentar' # -m commit mit Bemerkung
git reset [filename] # entfernt file aus der Staging Area
git log # zeige die commit Historie
GitHub¶
- Create a Repository Including a README is recommended
... done with mgaagm/vanilla 2. Create a Branch 3. Make and commit changes 4. Open a Pull Request propose chhanges and request someone for review and pull in your contribution and merge them into their branch 5. Merge your Pull Request Merge my branch to
master
branch withmerge pull request
andconfirm merge
. Finally get rid of the obsolete branch with `delete branch'.