aboutsummaryrefslogtreecommitdiff
path: root/builtin.h
diff options
context:
space:
mode:
authorLinus Torvalds <torvalds@osdl.org>2006-04-29 21:22:49 -0700
committerJunio C Hamano <junkio@cox.net>2006-04-30 00:59:18 -0700
commit755225de6ce4c7b39137afefb35208d0dbc14d9d (patch)
treed9aa5f4ac00ad3b5c7c93aac6a40d953a34e41c3 /builtin.h
parent66ae0c7702e68765dad17aa05c5d9255d999216c (diff)
downloadgit-755225de6ce4c7b39137afefb35208d0dbc14d9d.tar.gz
git-755225de6ce4c7b39137afefb35208d0dbc14d9d.tar.xz
git builtin "push"
This adds a builtin "push" command, which is largely just a C'ification of the "git-push.sh" script. Now, the reason I did it as a built-in is partly because it's yet another step on relying less on shell, but it's actually mostly because I've wanted to be able to push to _multiple_ repositories, and the most obvious and simplest interface for that would seem be to just have a "remotes" file that has multiple URL entries. (For "pull", having multiple entries should either just select the first one, or you could fall back on the others on failure - your choice). And quite frankly, it just became too damn messy to do that in shell. Besides, we actually have a fair amount of infrastructure in C, so it just wasn't that hard to do. Of course, this is almost totally untested. It probably doesn't work for anything but the one trial I threw at it. "Simple" doesn't necessarily mean "obviously correct". 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.h2
1 files changed, 2 insertions, 0 deletions
diff --git a/builtin.h b/builtin.h
index 47408a058..94fa9b546 100644
--- a/builtin.h
+++ b/builtin.h
@@ -20,4 +20,6 @@ extern int cmd_whatchanged(int argc, const char **argv, char **envp);
extern int cmd_show(int argc, const char **argv, char **envp);
extern int cmd_log(int argc, const char **argv, char **envp);
+extern int cmd_push(int argc, const char **argv, char **envp);
+
#endif