remote: only update remote-tracking branch if updating refspec
commitb52d00aedeb94f12a16afcef1bb33c989f9b4105
authorMartin von Zweigbergk <martin.von.zweigbergk@gmail.com>
Sat, 10 Sep 2011 19:39:23 +0000 (10 15:39 -0400)
committerJunio C Hamano <gitster@pobox.com>
Mon, 12 Sep 2011 04:40:00 +0000 (11 21:40 -0700)
tree9a3e5ec235ecdc84adc7d9effbf5aead7cb18140
parent1822b86a515af708e2259bae2b6a1f2052a2d3aa
remote: only update remote-tracking branch if updating refspec

'git remote rename' will only update the remote's fetch refspec if it
looks like a default one. If the remote has no default fetch refspec,
as in

[remote "origin"]
    url = git://git.kernel.org/pub/scm/git/git.git
    fetch = +refs/heads/*:refs/remotes/upstream/*

we would not update the fetch refspec and even if there is a ref
called "refs/remotes/origin/master", we should not rename it, since it
was not created by fetching from the remote.

Suggested-by: Junio C Hamano <gitster@pobox.com>
Signed-off-by: Martin von Zweigbergk <martin.von.zweigbergk@gmail.com>
Signed-off-by: Junio C Hamano <gitster@pobox.com>
builtin/remote.c
t/t5505-remote.sh