Re: Odd problem in repository
From: Clark Williams <hidden>
Date: 2016-06-15 22:43:06
-----BEGIN PGP SIGNED MESSAGE----- Hash: SHA1 Shawn O. Pearce wrote:
Clark Williams [off-list ref] wrote:quoted
But, I'm still confused. After you clone the central repository, with the new layout, why can't I 'mock checkout -f mock-0-6-branch'? Do I need to further qualify it, or create a local branch from it?I don't know what the mock command does... but if you meant: git checkout -f mock-0-6-branch
Heh, yes that's what I meant. :)
then you want to add the origin/ prefix to qualify it, as you want the branch from the origin remote. That should cause your head to get detached however: git checkout -f origin/mock-0-6-branch at which point you aren't on any branch at all. So you might want to make your own mock-0-6-branch starting at your origin's current version: git checkout -f -b mock-0-6-branch origin/mock-0-6-branch
Ah, I think that's what I was looking for. Thanks, Clark -----BEGIN PGP SIGNATURE----- Version: GnuPG v1.4.7 (GNU/Linux) Comment: Using GnuPG with Fedora - http://enigmail.mozdev.org iD8DBQFGLkQDqA4JVb61b9cRAt8OAJ9sPWLuiA0n/WKO7EzYH40GhFN0ZgCfY6Mw J7m60FS67Rj4ESgnVNRfjl8= =iuic -----END PGP SIGNATURE-----