summary refs log blame commit diff stats
path: root/ABOUT_THIS_BRANCH
blob: ae09d54d9e0395e6e4439d0826fed29e0d1d4912 (plain) (tree)
1
2
3
4
5
6
7
8
9
10
11
12
13
14













                                                                  
I put my personal branch online, maybe you find some of the
parts useful. To see whats different, type:

git diff master..hut

This branch is being regularily rebased on the master branch,
which rewrites history, so maybe its better to pick single commits
from this branch into your own branch rather than working directly
on this one:

git log master..hut
# search for a commit you like, write down SHA1 identifier
git checkout <your branch>
git cherry-pick <SHA1 of the commit>