2005-09-25 18:43:05 +00:00
|
|
|
#include "cache.h"
|
|
|
|
#include "refs.h"
|
2006-06-13 20:22:00 +00:00
|
|
|
#include "builtin.h"
|
2007-10-07 21:14:43 +00:00
|
|
|
#include "parse-options.h"
|
2005-09-25 18:43:05 +00:00
|
|
|
|
2007-10-07 21:14:43 +00:00
|
|
|
static const char * const git_update_ref_usage[] = {
|
|
|
|
"git-update-ref [options] -d <refname> <oldval>",
|
|
|
|
"git-update-ref [options] <refname> <newval> [<oldval>]",
|
|
|
|
NULL
|
|
|
|
};
|
2005-09-25 23:28:51 +00:00
|
|
|
|
2006-07-29 05:44:25 +00:00
|
|
|
int cmd_update_ref(int argc, const char **argv, const char *prefix)
|
2005-09-25 18:43:05 +00:00
|
|
|
{
|
2007-10-07 21:14:43 +00:00
|
|
|
const char *refname, *value, *oldval, *msg=NULL;
|
2006-05-17 09:55:19 +00:00
|
|
|
unsigned char sha1[20], oldsha1[20];
|
2007-10-07 21:14:43 +00:00
|
|
|
int delete = 0, no_deref = 0;
|
|
|
|
struct option options[] = {
|
|
|
|
OPT_STRING( 'm', NULL, &msg, "reason", "reason of the update"),
|
|
|
|
OPT_BOOLEAN('d', NULL, &delete, "deletes the reference"),
|
|
|
|
OPT_BOOLEAN( 0 , "no-deref", &no_deref,
|
|
|
|
"update <refname> not the one it points to"),
|
|
|
|
OPT_END(),
|
|
|
|
};
|
2005-09-25 18:43:05 +00:00
|
|
|
|
2006-03-24 07:41:18 +00:00
|
|
|
git_config(git_default_config);
|
2007-10-07 21:14:43 +00:00
|
|
|
argc = parse_options(argc, argv, options, git_update_ref_usage, 0);
|
|
|
|
if (msg && !*msg)
|
|
|
|
die("Refusing to perform update with empty message.");
|
2006-05-17 09:55:19 +00:00
|
|
|
|
2007-10-07 21:14:43 +00:00
|
|
|
if (argc < 2 || argc > 3)
|
|
|
|
usage_with_options(git_update_ref_usage, options);
|
|
|
|
refname = argv[0];
|
|
|
|
value = argv[1];
|
|
|
|
oldval = argv[2];
|
2005-09-25 18:43:05 +00:00
|
|
|
|
2006-05-08 21:43:38 +00:00
|
|
|
if (get_sha1(value, sha1))
|
2005-09-25 18:43:05 +00:00
|
|
|
die("%s: not a valid SHA1", value);
|
2006-09-27 08:58:57 +00:00
|
|
|
|
|
|
|
if (delete) {
|
|
|
|
if (oldval)
|
2007-10-07 21:14:43 +00:00
|
|
|
usage_with_options(git_update_ref_usage, options);
|
2006-09-27 08:58:57 +00:00
|
|
|
return delete_ref(refname, sha1);
|
|
|
|
}
|
|
|
|
|
2006-08-23 20:57:23 +00:00
|
|
|
hashclr(oldsha1);
|
2006-09-27 08:58:57 +00:00
|
|
|
if (oldval && *oldval && get_sha1(oldval, oldsha1))
|
2005-09-25 18:43:05 +00:00
|
|
|
die("%s: not a valid old SHA1", oldval);
|
|
|
|
|
2007-09-05 01:38:24 +00:00
|
|
|
return update_ref(msg, refname, sha1, oldval ? oldsha1 : NULL,
|
2007-10-07 21:14:43 +00:00
|
|
|
no_deref ? REF_NODEREF : 0, DIE_ON_ERR);
|
2005-09-25 18:43:05 +00:00
|
|
|
}
|