]> git.ipfire.org Git - thirdparty/git.git/blame - builtin-update-ref.c
Merge branch 'js/alias-p'
[thirdparty/git.git] / builtin-update-ref.c
CommitLineData
66bf85a4
LT
1#include "cache.h"
2#include "refs.h"
854b4629 3#include "builtin.h"
66bf85a4 4
5b16b090
SP
5static const char git_update_ref_usage[] =
6"git-update-ref <refname> <value> [<oldval>] [-m <reason>]";
152da3df 7
854b4629 8int cmd_update_ref(int argc, const char **argv, char **envp)
66bf85a4 9{
5b16b090
SP
10 const char *refname=NULL, *value=NULL, *oldval=NULL, *msg=NULL;
11 struct ref_lock *lock;
12 unsigned char sha1[20], oldsha1[20];
13 int i;
66bf85a4 14
0b0fe4a6 15 setup_ident();
66bf85a4 16 setup_git_directory();
84a9b58c 17 git_config(git_default_config);
5b16b090
SP
18
19 for (i = 1; i < argc; i++) {
20 if (!strcmp("-m", argv[i])) {
21 if (i+1 >= argc)
22 usage(git_update_ref_usage);
23 msg = argv[++i];
24 if (!*msg)
25 die("Refusing to perform update with empty message.");
26 if (strchr(msg, '\n'))
27 die("Refusing to perform update with \\n in message.");
28 continue;
29 }
30 if (!refname) {
31 refname = argv[i];
32 continue;
33 }
34 if (!value) {
35 value = argv[i];
36 continue;
37 }
38 if (!oldval) {
39 oldval = argv[i];
40 continue;
41 }
42 }
43 if (!refname || !value)
66bf85a4
LT
44 usage(git_update_ref_usage);
45
31fff305 46 if (get_sha1(value, sha1))
66bf85a4
LT
47 die("%s: not a valid SHA1", value);
48 memset(oldsha1, 0, 20);
31fff305 49 if (oldval && get_sha1(oldval, oldsha1))
66bf85a4
LT
50 die("%s: not a valid old SHA1", oldval);
51
5b16b090
SP
52 lock = lock_any_ref_for_update(refname, oldval ? oldsha1 : NULL, 0);
53 if (!lock)
54 return 1;
55 if (write_ref_sha1(lock, sha1, msg) < 0)
56 return 1;
854b4629
LS
57
58 /* write_ref_sha1 always unlocks the ref, no need to do it explicitly */
66bf85a4
LT
59 return 0;
60}