--------------{ kgdb-light.git instructions }----------> mkdir linux.trees.git || exit -1 cd linux.trees.git git-init-db # Add Linus's tree as a remote git-remote add linus git://git.kernel.org/pub/scm/linux/kernel/git/torvalds/linux-2.6.git # Add Ingo's kgdb-light.git tree as a remote git-remote add kgdb-light git://git.kernel.org/pub/scm/linux/kernel/git/mingo/linux-2.6-kgdb.git # # With that setup, just run the following to get any changes you # don't have. It will also notice any new branches Ingo/Linus # add to their repo. Look in .git/config afterwards, the format # to add new remotes is easy to figure out. # # This will take a lot of time initially (it downloads the ~150MB # repository), but will be much faster subsequently as it only # does delta updates. Note that it may warn you about no common # commits but you can ignore that: # git-remote update # # Check out the latest kgdb-light branch to a local branch # in this example, we create a branch called 'tmp-devel' # You can pick whatever name suits you. # git-checkout -b tmp-devel kgdb-light/master