Welcome to mirror list, hosted at ThFree Co, Russian Federation.

git.kernel.org/pub/scm/git/git.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorPing Yin <pkufranky@gmail.com>2008-04-10 18:45:29 +0400
committerJunio C Hamano <gitster@pobox.com>2008-04-12 04:35:39 +0400
commita68972c2ad7c3de582abeed03f660e19950ed66f (patch)
tree40201a04eef09efafdd30d216c8e11a0fcbd8c45 /git-submodule.sh
parentb6309ac2b8bc9794f4e8e9e829ccfa3360f2df49 (diff)
git-submodule: Avoid 'fatal: cannot describe' message
When "git submodule status" command tries to show the name of the submodule HEAD revision more descriptively, but the submodule repository lacked a suitable tag to do so, it leaked "fatal: cannot describe" message to the UI. Squelch it by using '--always'. Signed-off-by: Ping Yin <pkufranky@gmail.com> Signed-off-by: Junio C Hamano <gitster@pobox.com>
Diffstat (limited to 'git-submodule.sh')
-rwxr-xr-xgit-submodule.sh2
1 files changed, 1 insertions, 1 deletions
diff --git a/git-submodule.sh b/git-submodule.sh
index 56ec3536e0..7674346c8d 100755
--- a/git-submodule.sh
+++ b/git-submodule.sh
@@ -327,7 +327,7 @@ set_name_rev () {
cd "$1" && {
git describe "$2" 2>/dev/null ||
git describe --tags "$2" 2>/dev/null ||
- git describe --contains --tags "$2"
+ git describe --contains --tags --always "$2"
}
) )
test -z "$revname" || revname=" ($revname)"