diff options
author | Kyle Meyer <kyle@kyleam.com> | 2017-02-20 20:10:33 -0500 |
---|---|---|
committer | Junio C Hamano <gitster@pobox.com> | 2017-02-20 22:04:47 -0800 |
commit | de922669ab0508109cdb5672e5515f7524e3ccf8 (patch) | |
tree | e2c422d531bba40feb3940d2c552ab6d4cc45e3a /builtin | |
parent | 755b49ae965c9d17d91fbe7902050428f366bf69 (diff) | |
download | git-de922669ab0508109cdb5672e5515f7524e3ccf8.tar.gz git-de922669ab0508109cdb5672e5515f7524e3ccf8.tar.xz |
update-ref: pass reflog message to delete_ref()
Now that delete_ref() accepts a reflog message, pass the user-provided
message to delete_ref() rather than silently dropping it.
Signed-off-by: Kyle Meyer <kyle@kyleam.com>
Signed-off-by: Junio C Hamano <gitster@pobox.com>
Diffstat (limited to 'builtin')
-rw-r--r-- | builtin/update-ref.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/builtin/update-ref.c b/builtin/update-ref.c index 86d006d36..0b2ecf41a 100644 --- a/builtin/update-ref.c +++ b/builtin/update-ref.c @@ -433,7 +433,7 @@ int cmd_update_ref(int argc, const char **argv, const char *prefix) * For purposes of backwards compatibility, we treat * NULL_SHA1 as "don't care" here: */ - return delete_ref(NULL, refname, + return delete_ref(msg, refname, (oldval && !is_null_sha1(oldsha1)) ? oldsha1 : NULL, flags); else |