From 6718f1f0d07167128c2d23c15081ea5660e865e9 Mon Sep 17 00:00:00 2001 From: Johannes Sixt Date: Sat, 9 Jun 2007 22:34:16 +0200 Subject: [PATCH] git-remote show: Also shorten non-fast-forward refs in the 'push' listing 'git-remote show remote-name' lists the refs that are pushed to the remote by showing the 'Push' line from the config file. But before showing it, it shortened 'refs/heads/here:refs/heads/there' to 'here:there'. However, if the Push line is prefixed with a plus, the ref was not shortened. Signed-off-by: Johannes Sixt Signed-off-by: Junio C Hamano --- git-remote.perl | 1 + 1 file changed, 1 insertion(+) diff --git a/git-remote.perl b/git-remote.perl index 5763799127..b59cafdf87 100755 --- a/git-remote.perl +++ b/git-remote.perl @@ -258,6 +258,7 @@ sub show_remote { if ($info->{'PUSH'}) { my @pushed = map { s|^refs/heads/||; + s|^\+refs/heads/|+|; s|:refs/heads/|:|; $_; } @{$info->{'PUSH'}}; -- 2.11.4.GIT