Fix the wrong output of `git-show v1.3.0~155^2~4` in documentation.
[gitweb.git] / t / t5505-remote.sh
index ecfc999aaae728e3f57beaab60490abc53a3fb23..004a8dc5ed28f57de76935c4f02803fe6496d4d6 100755 (executable)
@@ -237,4 +237,14 @@ test_expect_success 'update default (overridden, with funny whitespace)' '
 
 '
 
+test_expect_success '"remote show" does not show symbolic refs' '
+
+       git clone one three &&
+       (cd three &&
+        git remote show origin > output &&
+        ! grep HEAD < output &&
+        ! grep -i stale < output)
+
+'
+
 test_done