diff options
author | Linus Torvalds <torvalds@osdl.org> | 2006-05-18 14:19:20 -0700 |
---|---|---|
committer | Junio C Hamano <junkio@cox.net> | 2006-05-18 15:46:11 -0700 |
commit | 5fb61b8dcfdf7bcec0793c071813e255d1803859 (patch) | |
tree | d659b35a14c586d5f8121ab22735941639e63508 /builtin.h | |
parent | builtin-diff: do not say files are renamed when blob and file are given (diff) | |
download | tgif-5fb61b8dcfdf7bcec0793c071813e255d1803859.tar.xz |
Make "git rev-list" be a builtin
This was surprisingly easy. The diff is truly minimal: rename "main()" to
"cmd_rev_list()" in rev-list.c, and rename the whole file to reflect its
new built-in status.
Signed-off-by: Linus Torvalds <torvalds@osdl.org>
Signed-off-by: Junio C Hamano <junkio@cox.net>
Diffstat (limited to 'builtin.h')
-rw-r--r-- | builtin.h | 1 |
1 files changed, 1 insertions, 0 deletions
@@ -24,5 +24,6 @@ extern int cmd_count_objects(int argc, const char **argv, char **envp); extern int cmd_push(int argc, const char **argv, char **envp); extern int cmd_grep(int argc, const char **argv, char **envp); +extern int cmd_rev_list(int argc, const char **argv, char **envp); #endif |