]> git.ipfire.org Git - thirdparty/git.git/blame - builtin-symbolic-ref.c
git-push through git protocol
[thirdparty/git.git] / builtin-symbolic-ref.c
CommitLineData
640ce105 1#include "builtin.h"
8098a178 2#include "cache.h"
8da19775 3#include "refs.h"
8098a178
JH
4
5static const char git_symbolic_ref_usage[] =
a0f4280f 6"git-symbolic-ref [-q] name [ref]";
8098a178 7
a0f4280f 8static void check_symref(const char *HEAD, int quiet)
8098a178
JH
9{
10 unsigned char sha1[20];
8da19775
JH
11 int flag;
12 const char *refs_heads_master = resolve_ref(HEAD, sha1, 0, &flag);
ed378ec7
LT
13
14 if (!refs_heads_master)
8098a178 15 die("No such ref: %s", HEAD);
a0f4280f
JH
16 else if (!(flag & REF_ISSYMREF)) {
17 if (!quiet)
18 die("ref %s is not a symbolic ref", HEAD);
19 else
20 exit(1);
21 }
ed378ec7 22 puts(refs_heads_master);
8098a178
JH
23}
24
640ce105 25int cmd_symbolic_ref(int argc, const char **argv, const char *prefix)
8098a178 26{
a0f4280f
JH
27 int quiet = 0;
28
27dedf0c 29 git_config(git_default_config);
a0f4280f
JH
30
31 while (1 < argc) {
32 const char *arg = argv[1];
33 if (arg[0] != '-')
34 break;
35 else if (!strcmp("-q", arg))
36 quiet = 1;
37 else if (!strcmp("--", arg)) {
38 argc--;
39 argv++;
40 break;
41 }
42 else
43 die("unknown option %s", arg);
44 argc--;
45 argv++;
46 }
47
8098a178
JH
48 switch (argc) {
49 case 2:
a0f4280f 50 check_symref(argv[1], quiet);
8098a178
JH
51 break;
52 case 3:
ed378ec7 53 create_symref(argv[1], argv[2]);
8098a178
JH
54 break;
55 default:
56 usage(git_symbolic_ref_usage);
57 }
58 return 0;
59}