git builtin "push"
authorLinus Torvalds <torvalds@osdl.org>
Sun, 30 Apr 2006 04:22:49 +0000 (21:22 -0700)
committerJunio C Hamano <junkio@cox.net>
Sun, 30 Apr 2006 07:59:18 +0000 (00:59 -0700)
commit755225de6ce4c7b39137afefb35208d0dbc14d9d
treed9aa5f4ac00ad3b5c7c93aac6a40d953a34e41c3
parent66ae0c7702e68765dad17aa05c5d9255d999216c
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>
Makefile
builtin-push.c [new file with mode: 0644]
builtin.h
git.c