4 * Copyright (C) Linus Torvalds, 2005
15 static int filter
= ~0;
17 static char *def
= NULL
;
21 static int show_type
= NORMAL
;
22 static int symbolic
= 0;
23 static int abbrev
= 0;
24 static int output_sq
= 0;
26 static int revs_count
= 0;
29 * Some arguments are relevant "revision" arguments,
30 * others are about output format or other details.
31 * This sorts it all out.
33 static int is_rev_argument(const char *arg
)
35 static const char *rev_args
[] = {
56 const char **p
= rev_args
;
58 /* accept -<digit>, like traditional "head" */
59 if ((*arg
== '-') && isdigit(arg
[1]))
63 const char *str
= *p
++;
68 if (!strcmp(arg
, str
) ||
69 (str
[len
-1] == '=' && !strncmp(arg
, str
, len
)))
74 /* Output argument as a string, either SQ or normal */
75 static void show(const char *arg
)
81 while ((ch
= *arg
++)) {
83 fputs("'\\'", stdout
);
93 /* Output a revision, only if filter allows it */
94 static void show_rev(int type
, const unsigned char *sha1
, const char *name
)
96 if (!(filter
& DO_REVS
))
101 if (type
!= show_type
)
103 if (symbolic
&& name
)
106 show(find_unique_abbrev(sha1
, abbrev
));
108 show(sha1_to_hex(sha1
));
111 /* Output a flag, only if filter allows it. */
112 static int show_flag(char *arg
)
114 if (!(filter
& DO_FLAGS
))
116 if (filter
& (is_rev_argument(arg
) ? DO_REVS
: DO_NOREV
)) {
123 static void show_default(void)
128 unsigned char sha1
[20];
131 if (!get_sha1(s
, sha1
)) {
132 show_rev(NORMAL
, sha1
, s
);
138 static int show_reference(const char *refname
, const unsigned char *sha1
)
140 show_rev(NORMAL
, sha1
, refname
);
144 static void show_datestring(const char *flag
, const char *datestr
)
146 static char buffer
[100];
148 /* date handling requires both flags and revs */
149 if ((filter
& (DO_FLAGS
| DO_REVS
)) != (DO_FLAGS
| DO_REVS
))
151 snprintf(buffer
, sizeof(buffer
), "%s%lu", flag
, approxidate(datestr
));
155 static int show_file(const char *arg
)
158 if ((filter
& (DO_NONFLAGS
|DO_NOREV
)) == (DO_NONFLAGS
|DO_NOREV
)) {
165 int main(int argc
, char **argv
)
167 int i
, as_is
= 0, verify
= 0;
168 unsigned char sha1
[20];
169 const char *prefix
= setup_git_directory();
171 for (i
= 1; i
< argc
; i
++) {
180 if (!strcmp(arg
,"-n")) {
182 die("-n requires an argument");
183 if ((filter
& DO_FLAGS
) && (filter
& DO_REVS
)) {
189 if (!strncmp(arg
,"-n",2)) {
190 if ((filter
& DO_FLAGS
) && (filter
& DO_REVS
))
196 if (!strcmp(arg
, "--")) {
198 /* Pass on the "--" if we show anything but files.. */
199 if (filter
& (DO_FLAGS
| DO_REVS
))
203 if (!strcmp(arg
, "--default")) {
208 if (!strcmp(arg
, "--revs-only")) {
212 if (!strcmp(arg
, "--no-revs")) {
216 if (!strcmp(arg
, "--flags")) {
217 filter
&= ~DO_NONFLAGS
;
220 if (!strcmp(arg
, "--no-flags")) {
224 if (!strcmp(arg
, "--verify")) {
225 filter
&= ~(DO_FLAGS
|DO_NOREV
);
229 if (!strcmp(arg
, "--short") ||
230 !strncmp(arg
, "--short=", 8)) {
231 filter
&= ~(DO_FLAGS
|DO_NOREV
);
233 abbrev
= DEFAULT_ABBREV
;
235 abbrev
= strtoul(arg
+ 8, NULL
, 10);
236 if (abbrev
< MINIMUM_ABBREV
)
237 abbrev
= MINIMUM_ABBREV
;
238 else if (40 <= abbrev
)
242 if (!strcmp(arg
, "--sq")) {
246 if (!strcmp(arg
, "--not")) {
247 show_type
^= REVERSED
;
250 if (!strcmp(arg
, "--symbolic")) {
254 if (!strcmp(arg
, "--all")) {
255 for_each_ref(show_reference
);
258 if (!strcmp(arg
, "--show-prefix")) {
263 if (!strcmp(arg
, "--show-cdup")) {
264 const char *pfx
= prefix
;
266 pfx
= strchr(pfx
, '/');
275 if (!strcmp(arg
, "--git-dir")) {
276 const char *gitdir
= getenv(GIT_DIR_ENVIRONMENT
);
277 static char cwd
[PATH_MAX
];
286 if (!getcwd(cwd
, PATH_MAX
))
287 die("unable to get current working directory");
288 printf("%s/.git\n", cwd
);
291 if (!strncmp(arg
, "--since=", 8)) {
292 show_datestring("--max-age=", arg
+8);
295 if (!strncmp(arg
, "--after=", 8)) {
296 show_datestring("--max-age=", arg
+8);
299 if (!strncmp(arg
, "--before=", 9)) {
300 show_datestring("--min-age=", arg
+9);
303 if (!strncmp(arg
, "--until=", 8)) {
304 show_datestring("--min-age=", arg
+8);
307 if (show_flag(arg
) && verify
)
308 die("Needed a single revision");
312 /* Not a flag argument */
313 dotdot
= strstr(arg
, "..");
315 unsigned char end
[20];
318 if (!get_sha1(arg
, sha1
)) {
321 if (!get_sha1(n
, end
)) {
322 show_rev(NORMAL
, end
, n
);
323 show_rev(REVERSED
, sha1
, arg
);
329 if (!get_sha1(arg
, sha1
)) {
330 show_rev(NORMAL
, sha1
, arg
);
333 if (*arg
== '^' && !get_sha1(arg
+1, sha1
)) {
334 show_rev(REVERSED
, sha1
, arg
+1);
341 die("Needed a single revision");
342 if (lstat(arg
, &st
) < 0)
343 die("'%s': %s", arg
, strerror(errno
));
346 if (verify
&& revs_count
!= 1)
347 die("Needed a single revision");