On Tue, Apr 10, 2007 at 09:21:51AM -0400, Mike Frysinger wrote: > On Tuesday 10 April 2007, Karel Zak wrote: > > Sorry, I forgot to say that you have to use the devel branch. See: > > > > http://userweb.kernel.org/~kzak/util-linux-ng/ > > > > The master branch is exactly same like the original util-linux-2.13 now. > > There will be a code after feature freeze. > > got ya ... can someone point out what i'm screwing up here as those > instructions dont work for me with git-1.5.1 ... my experience with git > really has been checking out the master branch and making diffs ... Unfortunately for you, it seems you're the first person who clone with git 1.5.x :-) > $ git clone \ > git://git.kernel.org/pub/scm/utils/util-linux-ng/util-linux-ng.git \ > util-linux-ng right > $ cd util-linux-ng right > $ git checkout -f devel wrong :-( The git 1.5.x uses namespaces for branches and all remote branches are in the origin/ namespace. See: $ git branch -r origin/HEAD origin/devel origin/master You can directly use "origin/devel" or (as expected by GIT developers) create your local copy of the branch: $ git checkout -f -b my_devel origin/devel I think (I didn't test it) you can also set everything in the .git/config if you want to map remote branches to your local branches. See also "git remote". I'm going to update the web page add there note about git 1.5.x. Thanks! Karel -- Karel Zak <kzak@xxxxxxxxxx> - To unsubscribe from this list: send the line "unsubscribe util-linux-ng" in the body of a message to majordomo@xxxxxxxxxxxxxxx More majordomo info at http://vger.kernel.org/majordomo-info.html