2005-09-25 20:43:05 +02:00
|
|
|
#include "cache.h"
|
|
|
|
#include "refs.h"
|
2006-06-13 22:22:00 +02:00
|
|
|
#include "builtin.h"
|
2005-09-25 20:43:05 +02:00
|
|
|
|
2006-05-17 11:55:19 +02:00
|
|
|
static const char git_update_ref_usage[] =
|
2006-09-27 10:58:57 +02:00
|
|
|
"git-update-ref [-m <reason>] (-d <refname> <value> | <refname> <value> [<oldval>])";
|
2005-09-26 01:28:51 +02:00
|
|
|
|
2006-07-29 07:44:25 +02:00
|
|
|
int cmd_update_ref(int argc, const char **argv, const char *prefix)
|
2005-09-25 20:43:05 +02:00
|
|
|
{
|
2006-05-17 11:55:19 +02:00
|
|
|
const char *refname=NULL, *value=NULL, *oldval=NULL, *msg=NULL;
|
|
|
|
struct ref_lock *lock;
|
|
|
|
unsigned char sha1[20], oldsha1[20];
|
2006-09-27 10:58:57 +02:00
|
|
|
int i, delete;
|
2005-09-25 20:43:05 +02:00
|
|
|
|
2006-09-27 10:58:57 +02:00
|
|
|
delete = 0;
|
2006-03-24 08:41:18 +01:00
|
|
|
git_config(git_default_config);
|
2006-05-17 11:55:19 +02:00
|
|
|
|
|
|
|
for (i = 1; i < argc; i++) {
|
|
|
|
if (!strcmp("-m", argv[i])) {
|
|
|
|
if (i+1 >= argc)
|
|
|
|
usage(git_update_ref_usage);
|
|
|
|
msg = argv[++i];
|
|
|
|
if (!*msg)
|
|
|
|
die("Refusing to perform update with empty message.");
|
2007-01-27 00:09:02 +01:00
|
|
|
if (strchr(msg, '\n'))
|
|
|
|
die("Refusing to perform update with \\n in message.");
|
2006-05-17 11:55:19 +02:00
|
|
|
continue;
|
|
|
|
}
|
2006-09-27 10:58:57 +02:00
|
|
|
if (!strcmp("-d", argv[i])) {
|
|
|
|
delete = 1;
|
|
|
|
continue;
|
|
|
|
}
|
2006-05-17 11:55:19 +02:00
|
|
|
if (!refname) {
|
|
|
|
refname = argv[i];
|
|
|
|
continue;
|
|
|
|
}
|
|
|
|
if (!value) {
|
|
|
|
value = argv[i];
|
|
|
|
continue;
|
|
|
|
}
|
|
|
|
if (!oldval) {
|
|
|
|
oldval = argv[i];
|
|
|
|
continue;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
if (!refname || !value)
|
2005-09-25 20:43:05 +02:00
|
|
|
usage(git_update_ref_usage);
|
|
|
|
|
2006-05-08 23:43:38 +02:00
|
|
|
if (get_sha1(value, sha1))
|
2005-09-25 20:43:05 +02:00
|
|
|
die("%s: not a valid SHA1", value);
|
2006-09-27 10:58:57 +02:00
|
|
|
|
|
|
|
if (delete) {
|
|
|
|
if (oldval)
|
|
|
|
usage(git_update_ref_usage);
|
|
|
|
return delete_ref(refname, sha1);
|
|
|
|
}
|
|
|
|
|
2006-08-23 22:57:23 +02:00
|
|
|
hashclr(oldsha1);
|
2006-09-27 10:58:57 +02:00
|
|
|
if (oldval && *oldval && get_sha1(oldval, oldsha1))
|
2005-09-25 20:43:05 +02:00
|
|
|
die("%s: not a valid old SHA1", oldval);
|
|
|
|
|
2006-09-27 10:09:18 +02:00
|
|
|
lock = lock_any_ref_for_update(refname, oldval ? oldsha1 : NULL);
|
2006-05-17 11:55:19 +02:00
|
|
|
if (!lock)
|
2007-01-29 09:57:07 +01:00
|
|
|
die("%s: cannot lock the ref", refname);
|
2006-05-17 11:55:19 +02:00
|
|
|
if (write_ref_sha1(lock, sha1, msg) < 0)
|
2007-01-29 09:57:07 +01:00
|
|
|
die("%s: cannot update the ref", refname);
|
2005-09-25 20:43:05 +02:00
|
|
|
return 0;
|
|
|
|
}
|