mirror of
https://github.com/git/git.git
synced 2024-11-18 22:14:34 +01:00
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>
This commit is contained in:
parent
b6309ac2b8
commit
a68972c2ad
@ -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)"
|
||||
|
Loading…
Reference in New Issue
Block a user