aboutsummaryrefslogtreecommitdiffstats
path: root/refs.c
diff options
context:
space:
mode:
authorJunio C Hamano <gitster@pobox.com>2020-08-01 13:49:13 -0700
committerJunio C Hamano <gitster@pobox.com>2020-08-01 13:49:13 -0700
commitdc3c6fb56557bfa4a4f5ed5abca25f119ded6cde (patch)
tree1dc405e1d929d69cd95eb998472f5e05c2b4a3f8 /refs.c
parent341a196ab6603aa7be709812132fd906a3d2359c (diff)
parent25429fed5ce134bce9f729d927ac397badae1959 (diff)
downloadgit-dc3c6fb56557bfa4a4f5ed5abca25f119ded6cde.tar.gz
Merge branch 'hn/reftable' into master
Brown-paper-bag fix. * hn/reftable: refs: move the logic to add \t to reflog to the files backend
Diffstat (limited to 'refs.c')
-rw-r--r--refs.c1
1 files changed, 0 insertions, 1 deletions
diff --git a/refs.c b/refs.c
index 89814c7be4..2dd851fe81 100644
--- a/refs.c
+++ b/refs.c
@@ -907,7 +907,6 @@ static void copy_reflog_msg(struct strbuf *sb, const char *msg)
char c;
int wasspace = 1;
- strbuf_addch(sb, '\t');
while ((c = *msg++)) {
if (wasspace && isspace(c))
continue;