aboutsummaryrefslogtreecommitdiff
path: root/builtin-update-ref.c
diff options
context:
space:
mode:
authorKarl Hasselström <kha@treskal.com>2008-06-03 01:34:53 +0200
committerJunio C Hamano <gitster@pobox.com>2008-06-02 22:52:39 -0700
commit3fe8dce6fc5b1d0bffba8fdb4e075fcd16cf5619 (patch)
tree0df179167dd685e7d96aa46d28cdffd312e2ea6c /builtin-update-ref.c
parent973a70ea4d9fc98e9ed20c261c5f6c8f1c1df2b0 (diff)
downloadgit-3fe8dce6fc5b1d0bffba8fdb4e075fcd16cf5619.tar.gz
git-3fe8dce6fc5b1d0bffba8fdb4e075fcd16cf5619.tar.xz
Make old sha1 optional with git update-ref -d
Giving the old sha1 is already optional when changing a ref, and it's quite handy when running update-ref manually. So make it optional for deleting a ref too. Signed-off-by: Karl Hasselström <kha@treskal.com> Signed-off-by: Junio C Hamano <gitster@pobox.com>
Diffstat (limited to 'builtin-update-ref.c')
-rw-r--r--builtin-update-ref.c6
1 files changed, 3 insertions, 3 deletions
diff --git a/builtin-update-ref.c b/builtin-update-ref.c
index 1e714a3c9..d90d11d2e 100644
--- a/builtin-update-ref.c
+++ b/builtin-update-ref.c
@@ -4,7 +4,7 @@
#include "parse-options.h"
static const char * const git_update_ref_usage[] = {
- "git-update-ref [options] -d <refname> <oldval>",
+ "git-update-ref [options] -d <refname> [<oldval>]",
"git-update-ref [options] <refname> <newval> [<oldval>]",
NULL
};
@@ -28,7 +28,7 @@ int cmd_update_ref(int argc, const char **argv, const char *prefix)
die("Refusing to perform update with empty message.");
if (delete) {
- if (argc != 2)
+ if (argc < 1 || argc > 2)
usage_with_options(git_update_ref_usage, options);
refname = argv[0];
oldval = argv[1];
@@ -48,7 +48,7 @@ int cmd_update_ref(int argc, const char **argv, const char *prefix)
die("%s: not a valid old SHA1", oldval);
if (delete)
- return delete_ref(refname, oldsha1);
+ return delete_ref(refname, oldval ? oldsha1 : NULL);
else
return update_ref(msg, refname, sha1, oldval ? oldsha1 : NULL,
no_deref ? REF_NODEREF : 0, DIE_ON_ERR);