On Wed, Dec 05, 2007 at 10:22:33PM -0800, Harvey Harrison wrote: > // fetching someone else's remote branches is not a standard thing to do > // so we'll need to edit our .git/config file > // you should have a section that looks like: > [remote "gcc.gnu.org"] > url = git://git.infradead.org/gcc.git > fetch = +refs/heads/*:refs/remotes/gcc.gnu.org/* > // infradead's mirror puts the gcc svn branches in its own namespace > // refs/remotes/gcc.gnu.org/* > // change our fetch line accordingly > [remote "gcc.gnu.org"] > url = git://git.infradead.org/gcc.git > fetch = +refs/remotes/gcc.gnu.org/*:refs/remotes/gcc.gnu.org/* FWIW, if you are writing a shell recipe for other people to cut and paste, you can say this as: git config remote.gcc.gnu.org.fetch \ '+refs/remotes/gcc.gnu.org/*:refs/remotes/gcc.gnu.org/*' -Peff - To unsubscribe from this list: send the line "unsubscribe git" in the body of a message to majordomo@xxxxxxxxxxxxxxx More majordomo info at http://vger.kernel.org/majordomo-info.html