Zum Inhalt

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
Um git-Überwachung zu stoppen muss nur das .git Verzeichnis gelöscht werden. Files die nicht verfolgt werden sollen können im File .gitignore aufgeführt werden. Wildcards sind erlaubt.

# Musterdatei .gitignore
.DS_Store
.project
*.pyc

Workflow

WorkDir > Staging Area > .git directory (Repository)

  1. Checkout the project
  2. Stage Fixes (git add)
  3. 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

  1. 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 with merge pull requestand confirm merge. Finally get rid of the obsolete branch with `delete branch'.

Literatur

https://www.atlassian.com/de/git/tutorials/what-is-git