On Tue, Sep 14, 2010 at 7:37 AM, Bernd Petrovitsch <bernd@xxxxxxxxxx> wrote: > They were against git://git.kernel.org/pub/scm/devel/sparse/sparse.git > which is listed on https://sparse.wiki.kernel.org/index.php/Main_Page. > But your patch doesn't apply against it. And it doesn't apply against > git://git.kernel.org/pub/scm/devel/sparse/chrisl/sparse.git - which > looks at the first glance identical to the above. > I think there is some thing wrong in your git setup. May be you did not checkout the right branch? You can always visit the web link to see if that match your local "git log". http://git.kernel.org/?p=devel/sparse/chrisl/sparse.git;a=summary > I found http://marc.info/?l=linux-sparse&m=126634898432123 but there is > no "chrisl" branch - at least not in the output of `git branch -a`. > What I'm doing wrong? Have your try to clone a clean repository in a new directory? git clone git://git.kernel.org/pub/scm/devel/sparse/chrisl/sparse.git That should give you a clean local copy of "chrisl" repository. There is a better way to deal with remote branch in one git repository. If you add those to your .git/config: [remote "chrisl"] fetch = +refs/heads/*:refs/remotes/origin/* url = git://git.kernel.org/pub/scm/devel/sparse/chrisl/sparse.git [branch "chrisl"] remote = chrisl merge = refs/heads/master You should be able to do: git fetch chrisl git checkout chrisl To get the chrisl branch. > Signed-off-by: Bernd Petrovitsch <bernd@xxxxxxxxxx> Thanks. The change is pushed. Chris -- To unsubscribe from this list: send the line "unsubscribe linux-sparse" in the body of a message to majordomo@xxxxxxxxxxxxxxx More majordomo info at http://vger.kernel.org/majordomo-info.html