-
Notifications
You must be signed in to change notification settings - Fork 8
Git Handling
themerius edited this page Apr 14, 2012
·
1 revision
Hier sammeln wir alle Git-Befehle die wir hier so brauchen, und wie die allgemeine Branch-Handhabung aussieht.
Neuer Branch anlegen, basierend auf dem aktuellen:
git checkout -b neuerBranch
Änderungen hochladen:
git push origin branchName
[alias]
llog = log --graph --full-history --all --color \
--pretty=format:"%x1b[31m%h%x09%x1b[32m%d%x1b[0m%x20%s"
[core]
editor = vim +0
pager = less -FXRS
[merge]
tool = vimdiff
[color]
diff = auto
status = auto
branch = auto
interactive = auto
grep = auto