Tommaso Cucinotta schreef op 4-5-2014 21:48:
On 28/04/14 10:36, Vincent van Ravesteijn wrote:
It would be easier to review if you would push the branch to the features.git
repository (which is accessible to everyone).
Hi,
I also pushed the branch to features.git as branch "chat3".
Now I've got into this issue:
$ git checkout features/chat3
warning: refname 'features/chat3' is ambiguous.
as I guess it's now finding, in repo tommaso, the "features/chat3" branch, and also, in repo
"features", the branch "chat3".
How to disambiguate in git cmd-line invocations ?
Thanks,
T.
First, I think it is unnecessary to make a new branch with an increased
number. You can just overwrite the existing features/chat branch.
To disambiguate the refs, you can use:
"tommaso/features/chat3" for the branch features/chat3 in remote tommaso,
and
"remotes/features/chat3" for the branch chat3 in the remote features.
Vincent