summaryrefslogtreecommitdiff
path: root/builtin-fetch--tool.c
AgeCommit message (Collapse)Author
2007-03-01builtin-fetch--tool: fix reflog notes.Junio C Hamano
Also the verbose output had unnecessary SHA1 and not-for-merge markers leaked because append_fetch_head() cheated Signed-off-by: Junio C Hamano <junkio@cox.net>
2007-03-01git-fetch: retire update-local-ref which is not used anymore.Junio C Hamano
Signed-off-by: Junio C Hamano <junkio@cox.net>
2007-02-28builtin-fetch--tool: make sure not to overstep ls-remote-result buffer.Junio C Hamano
Signed-off-by: Junio C Hamano <junkio@cox.net>
2007-02-28fetch--tool: fix uninitialized buffer when reading from stdinJunio C Hamano
The original code allocates too much space and forgets to NUL terminate the string. Signed-off-by: Junio C Hamano <junkio@cox.net>
2007-02-27builtin-fetch--tool: adjust to updated sha1_object_info().Junio C Hamano
Signed-off-by: Junio C Hamano <junkio@cox.net>
2007-02-14Allow fetch--tool to read from stdinJulian Phillips
If the reflist is "-" then read the reflist data from stdin instead, this will allow the passing of more than 128K of reflist data - which won't fit in the environment passed by execve. Signed-off-by: Julian Phillips <julian@quantumfyre.co.uk> Signed-off-by: Junio C Hamano <junkio@cox.net>
2007-02-14git-fetch: rewrite expand_ref_wildcard in CJunio C Hamano
This does not seem to make measurable improvement when dealing with 1000 unpacked refs, but we would need something like it if we were to do a full rewrite in C somedaoy. Signed-off-by: Junio C Hamano <junkio@cox.net>
2007-02-14git-fetch: rewrite another shell loop in CJunio C Hamano
Move another shell loop that canonicalizes the list of refs for underlying git-fetch-pack and fetch-native-store into C. This seems to shave the runtime for the same 1000 branch repository from 30 seconds down to 15 seconds (it used to be 2 and half minutes with the original version). Signed-off-by: Junio C Hamano <junkio@cox.net>
2007-02-14git-fetch: move more code into C.Junio C Hamano
This adds "native-store" subcommand to git-fetch--tool to move a huge loop implemented in shell into C. This shaves about 70% of the runtime to fetch and update 1000 tracking branches with a single fetch. Signed-off-by: Junio C Hamano <junkio@cox.net>
2007-02-14git-fetch--tool: start rewriting parts of git-fetch in C.Junio C Hamano
Signed-off-by: Junio C Hamano <junkio@cox.net>