aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
-rw-r--r--log-tree.c23
-rw-r--r--t/t4013/diff.log_--decorate=full_--all2
2 files changed, 19 insertions, 6 deletions
diff --git a/log-tree.c b/log-tree.c
index 2c1ed0fa9..92259bcb0 100644
--- a/log-tree.c
+++ b/log-tree.c
@@ -13,6 +13,8 @@
#include "line-log.h"
static struct decoration name_decoration = { "object names" };
+static int decoration_loaded;
+static int decoration_flags;
static char decoration_colors[][COLOR_MAXLEN] = {
GIT_COLOR_RESET,
@@ -146,9 +148,9 @@ static int add_graft_decoration(const struct commit_graft *graft, void *cb_data)
void load_ref_decorations(int flags)
{
- static int loaded;
- if (!loaded) {
- loaded = 1;
+ if (!decoration_loaded) {
+ decoration_loaded = 1;
+ decoration_flags = flags;
for_each_ref(add_ref_decoration, &flags);
head_ref(add_ref_decoration, &flags);
for_each_commit_graft(add_graft_decoration, NULL);
@@ -196,8 +198,19 @@ static const struct name_decoration *current_pointed_by_HEAD(const struct name_d
branch_name = resolve_ref_unsafe("HEAD", 0, unused, &rru_flags);
if (!(rru_flags & REF_ISSYMREF))
return NULL;
- if (!skip_prefix(branch_name, "refs/heads/", &branch_name))
- return NULL;
+
+ if ((decoration_flags == DECORATE_SHORT_REFS)) {
+ if (!skip_prefix(branch_name, "refs/heads/", &branch_name))
+ return NULL;
+ } else {
+ /*
+ * Each decoration has a refname in full; keep
+ * branch_name also in full, but still make sure
+ * HEAD is a reasonable ref.
+ */
+ if (!starts_with(branch_name, "refs/"))
+ return NULL;
+ }
/* OK, do we have that ref in the list? */
for (list = decoration; list; list = list->next)
diff --git a/t/t4013/diff.log_--decorate=full_--all b/t/t4013/diff.log_--decorate=full_--all
index 44d45257d..b345b2ebf 100644
--- a/t/t4013/diff.log_--decorate=full_--all
+++ b/t/t4013/diff.log_--decorate=full_--all
@@ -5,7 +5,7 @@ Date: Mon Jun 26 00:06:00 2006 +0000
Rearranged lines in dir/sub
-commit 59d314ad6f356dd08601a4cd5e530381da3e3c64 (HEAD, refs/heads/master)
+commit 59d314ad6f356dd08601a4cd5e530381da3e3c64 (HEAD -> refs/heads/master)
Merge: 9a6d494 c7a2ab9
Author: A U Thor <author@example.com>
Date: Mon Jun 26 00:04:00 2006 +0000