Twas brillig at 19:05:39 04.03.2010 UTC+01 when [email protected] 
did gyre and gimble:

 MK> Is there a simple git way to switch to that tree, or would i need
 MK> to checkout the whole tree again and then copy & paste chunks of
 MK> code from the old tree to the new one manually?

git remote add upstream <git repo url>
git fetch upstream
# You've got lot of branches upstream/*
# Make a new branch from upstream/master
git checkout -b new-master upstream/master

and then

git cherry-pick <commitid> for all relevant commits.

P.S: Please don't top-post.

-- 
  http://fossarchy.blogspot.com/

Attachment: pgpcqySqO8SbZ.pgp
Description: PGP signature

_______________________________________________
xorg-devel mailing list
[email protected]
http://lists.x.org/mailman/listinfo/xorg-devel

Reply via email to