summaryrefslogtreecommitdiff
path: root/sha1_name.c
diff options
context:
space:
mode:
authorJunio C Hamano <gitster@pobox.com>2014-01-13 19:33:29 (GMT)
committerJunio C Hamano <gitster@pobox.com>2014-01-13 19:33:29 (GMT)
commit0a8cb0355589cd4058be8b810a9fc608ef9b9a6c (patch)
tree99bc18bd1fa94ab831e85364691c2f5ae018ae91 /sha1_name.c
parenta25014bc4cef56712f7d005d7b76070d0270f454 (diff)
parent832cf74c0792a58c9c28e32a8fe5dbb694f0cce6 (diff)
downloadgit-0a8cb0355589cd4058be8b810a9fc608ef9b9a6c.zip
git-0a8cb0355589cd4058be8b810a9fc608ef9b9a6c.tar.gz
git-0a8cb0355589cd4058be8b810a9fc608ef9b9a6c.tar.bz2
Merge branch 'br/sha1-name-40-hex-no-disambiguation'
When parsing a 40-hex string into the object name, the string is checked to see if it can be interpreted as a ref so that a warning can be given for ambiguity. The code kicked in even when the core.warnambiguousrefs is set to false to squelch this warning, in which case the cycles spent to look at the ref namespace were an expensive no-op, as the result was discarded without being used. * br/sha1-name-40-hex-no-disambiguation: sha1_name: don't resolve refs when core.warnambiguousrefs is false
Diffstat (limited to 'sha1_name.c')
-rw-r--r--sha1_name.c4
1 files changed, 2 insertions, 2 deletions
diff --git a/sha1_name.c b/sha1_name.c
index b1873d8..a5578f7 100644
--- a/sha1_name.c
+++ b/sha1_name.c
@@ -451,9 +451,9 @@ static int get_sha1_basic(const char *str, int len, unsigned char *sha1)
int at, reflog_len, nth_prior = 0;
if (len == 40 && !get_sha1_hex(str, sha1)) {
- if (warn_on_object_refname_ambiguity) {
+ if (warn_ambiguous_refs && warn_on_object_refname_ambiguity) {
refs_found = dwim_ref(str, len, tmp_sha1, &real_ref);
- if (refs_found > 0 && warn_ambiguous_refs) {
+ if (refs_found > 0) {
warning(warn_msg, len, str);
if (advice_object_name_warning)
fprintf(stderr, "%s\n", _(object_name_msg));