diff options
author | Linus Torvalds <torvalds@osdl.org> | 2006-05-17 09:33:32 -0700 |
---|---|---|
committer | Junio C Hamano <junkio@cox.net> | 2006-05-17 11:52:40 -0700 |
commit | 0d78153952e70c21e94dc6b7eefcb2ac5337a902 (patch) | |
tree | fa5a9124804890b42e911307caff4f8f536c2bb6 /builtin.h | |
parent | b4189aa84873718f80c62846cd53e803b5f72362 (diff) | |
download | git-0d78153952e70c21e94dc6b7eefcb2ac5337a902.tar.gz git-0d78153952e70c21e94dc6b7eefcb2ac5337a902.tar.xz |
Do "git add" as a builtin
First try. Let's see how well this works.
In many ways, the hard parts of "git commit" are not so different from
this, and a builtin commit would share a lot of the code, I think.
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_add(int argc, const char **argv, char **envp); #endif |