2010/11/15 mark adrian bell <[email protected]>: > I'm following this guide to setting up a cross-compile tool-chain. > > http://www.tuxbrain.com/en/content/my-first-port-ben-nanonote-gnuchess-howto > > I'm up to the step > > git checkout --track -b xburst origin/xburst
Hi, With this command, you try to checkout a remote branch (origin/xburst) while creating a local branch (-b xburst) that will track changes from the remote branch (--track). This command fails as there is no remote xburst branch. You can see all branches with : git branch -a Maybe you can use the "master" branch (which is the default one and already checked out) for your tests ? I can't help you further since I am not familiar with this git repository, I'm just curious about the nanonote and that's why I'm on this mailing list. Still, I hope I answered your question. Regards, -- Christophe. _______________________________________________ Qi Hardware Discussion List Mail to list (members only): [email protected] Subscribe or Unsubscribe: http://lists.en.qi-hardware.com/mailman/listinfo/discussion

