aboutsummaryrefslogtreecommitdiffstats
path: root/builtin-fetch-pack.c
AgeCommit message (Expand)AuthorFilesLines
2010-02-22Move 'builtin-*' into a 'builtin/' subdirectoryLinus Torvalds1-976/+0
2010-02-05run-command: support custom fd-set in asyncErik Faye-Lund1-3/+4
2009-11-04Smart fetch over HTTP: client sideShawn O. Pearce1-17/+93
2009-10-30Add multi_ack_detailed capability to fetch-pack/upload-packShawn O. Pearce1-9/+32
2009-10-30Move "get_ack()" back to fetch-packShawn O. Pearce1-0/+21
2009-10-30fetch-pack: Use a strbuf to compose the want listShawn O. Pearce1-18/+34
2009-06-08fetch-pack: close output channel after sideband demultiplexer terminatesJohannes Sixt1-1/+3
2009-05-25Merge branch 'ar/unlink-err' into maintJunio C Hamano1-1/+1
2009-05-03Sync with GIT 1.6.2.5Junio C Hamano1-1/+12
2009-05-01honor repack.usedeltabaseoffset when fetching packsNicolas Pitre1-1/+12
2009-05-01Fix a bunch of pointer declarations (codestyle)Felipe Contreras1-1/+1
2009-04-29replace direct calls to unlink(2) with unlink_or_warnAlex Riesen1-1/+1
2009-03-23builtin-fetch-pack: use warning() instead of fprintf(stderr, "warning: ")Miklos Vajna1-1/+1
2009-03-17Merge branch 'js/sideband-stderr'Junio C Hamano1-1/+1
2009-03-17Merge branch 'kb/checkout-optim'Junio C Hamano1-4/+2
2009-03-15checkout bugfix: use stat.mtime instead of stat.ctime in two placesKjetil Barvik1-1/+1
2009-03-10recv_sideband: Bands #2 and #3 always go to stderrJohannes Sixt1-1/+1
2009-03-08Not all systems use st_[cm]tim field for ns resolution file timestampJunio C Hamano1-1/+1
2009-03-07Remove unused function scope local variablesBenjamin Kramer1-2/+1
2009-03-07Record ns-timestamps if possible, but do not use it without USE_NSECKjetil Barvik1-3/+1
2009-02-19fix compile error when USE_NSEC is definedKjetil Barvik1-2/+2
2008-12-07Merge branch 'maint'Junio C Hamano1-1/+2
2008-12-07fetch-pack: Avoid memcpy() with src==dstThomas Rast1-1/+2
2008-10-21Merge branch 'jc/maint-co-track'Junio C Hamano1-1/+2
2008-10-19Enhance hold_lock_file_for_{update,append}() APIJunio C Hamano1-1/+2
2008-09-25Merge branch 'jc/alternate-push'Shawn O. Pearce1-1/+1
2008-09-09Merge branch 'ho/dashless'Junio C Hamano1-1/+1
2008-09-09push: prepare sender to receive extended ref information from the receiverJunio C Hamano1-1/+1
2008-09-09Start conforming code to "git subcmd" style part 2Heikki Orsila1-1/+1
2008-09-03Merge branch 'maint'Junio C Hamano1-1/+1
2008-08-31cast pid_t's to uintmax_t to improve portabilityDavid Soria Parra1-1/+1
2008-08-31'git foo' program identifies itself without dash in die() messagesJunio C Hamano1-1/+1
2008-07-13Make usage strings dash-lessStephan Beyer1-1/+1
2008-07-05Fix some warnings (on cygwin) to allow -WerrorRamsay Jones1-1/+2
2008-07-02git fetch-pack: do not complain about "no common commits" in an empty repoJohannes Schindelin1-1/+2
2008-06-19Incorporate fetched packs in future object traversalJohan Herland1-0/+1
2008-05-14Provide git_config with a callback-data parameterJohannes Schindelin1-3/+3
2008-04-30fetch-pack: brown paper bag fixJunio C Hamano1-1/+1
2008-04-28fetch-pack: do not stop traversing an already parsed commitLinus Torvalds1-4/+4
2008-03-19Fix tag followingDaniel Barkalow1-0/+16
2008-03-08Merge branch 'sp/fetch-optim'Junio C Hamano1-2/+7
2008-03-04Teach fetch-pack/upload-pack about --include-tagShawn O. Pearce1-2/+7
2008-03-03fetch-pack: check parse_commit/object resultsMartin Koegler1-7/+10
2008-03-02Merge branch 'mk/maint-parse-careful'Junio C Hamano1-1/+0
2008-02-25Remove unused object-ref codeMartin Koegler1-1/+0
2008-02-23start_command(), .in/.out/.err = -1: Callers must close the file descriptorJohannes Sixt1-1/+3
2008-02-05Reduce the number of connects when fetchingDaniel Barkalow1-35/+40
2008-01-16Improve use of lockfile APIBrandon Casey1-1/+0
2007-11-17fetch-pack: Prepare for a side-band demultiplexer in a thread.Johannes Sixt1-26/+16
2007-11-07restore fetching with thin-pack capabilityNicolas Pitre1-2/+2
2007-11-01Merge branch 'js/forkexec'Junio C Hamano1-65/+36
2007-10-29Correct handling of upload-pack in builtin-fetch-packDaniel Barkalow1-3/+4
2007-10-21Use the asyncronous function infrastructure in builtin-fetch-pack.c.Johannes Sixt1-21/+18
2007-10-21Use start_comand() in builtin-fetch-pack.c instead of explicit fork/exec.Johannes Sixt1-40/+16
2007-10-21Change git_connect() to return a struct child_process instead of a pid_t.Johannes Sixt1-5/+3
2007-09-19Ensure builtin-fetch honors {fetch,transfer}.unpackLimitShawn O. Pearce1-6/+13
2007-09-19Always obtain fetch-pack arguments from struct fetch_pack_argsShawn O. Pearce1-65/+46
2007-09-19Fix builtin-fetch memory corruption by not overstepping arrayShawn O. Pearce1-1/+0
2007-09-19Remove pack.keep after ref updates in git-fetchShawn O. Pearce1-6/+25
2007-09-19Remove unnecessary debugging from builtin-fetchShawn O. Pearce1-2/+0
2007-09-19Make fetch-pack a builtin with an internal APIDaniel Barkalow1-0/+829