aboutsummaryrefslogtreecommitdiffstats
path: root/builtin/fetch-pack.c
AgeCommit message (Expand)AuthorFilesLines
2017-12-08fetch: inherit filter-spec from partial cloneJeff Hostetler1-1/+1
2017-12-08fetch-pack: add --no-filterJeff Hostetler1-0/+4
2017-12-08fetch-pack, index-pack, transport: partial cloneJeff Hostetler1-0/+4
2017-12-08sha1_file: support lazily fetching missing objectsJonathan Tan1-0/+2
2017-12-05introduce fetch-object: fetch one promisor objectJonathan Tan1-0/+8
2017-03-31Rename sha1_array to oid_arraybrian m. carlson1-1/+1
2017-03-02fetch-pack: move code to report unmatched refs to a functionMatt McCutchen1-6/+1
2016-10-10Merge branch 'nd/shallow-deepen'Junio C Hamano1-6/+21
2016-06-13fetch, upload-pack: --deepen=N extends shallow boundary by N commitsNguyễn Thái Ngọc Duy1-0/+4
2016-06-13fetch: define shallow boundary with --shallow-excludeNguyễn Thái Ngọc Duy1-0/+7
2016-06-13fetch: define shallow boundary with --shallow-sinceNguyễn Thái Ngọc Duy1-0/+4
2016-06-13fetch-pack: use skip_prefix() instead of starts_with()Nguyễn Thái Ngọc Duy1-6/+6
2016-03-01fetch-pack: fix object_id of exact sha1Gabriel Souza Franco1-3/+13
2016-02-26Merge branch 'jk/tighten-alloc'Junio C Hamano1-18/+9
2016-02-22fetch-pack: simplify add_sought_entryJeff King1-18/+9
2016-01-15strbuf: introduce strbuf_getline_{lf,nul}()Junio C Hamano1-1/+1
2015-11-20add_sought_entry_mem: convert to struct object_idbrian m. carlson1-6/+8
2015-11-20Convert struct ref to use object_id.brian m. carlson1-2/+2
2015-01-14standardize usage info string formatAlex Henrie1-1/+1
2014-01-17Merge branch 'nd/shallow-clone'Junio C Hamano1-3/+20
2013-12-17Merge branch 'tb/clone-ssh-with-colon-for-port'Junio C Hamano1-3/+11
2013-12-10smart-http: support shallow fetch/cloneNguyễn Thái Ngọc Duy1-3/+13
2013-12-10remote-curl: pass ref SHA-1 to fetch-pack as wellNguyễn Thái Ngọc Duy1-0/+7
2013-12-10clone: support remote shallow repositoryNguyễn Thái Ngọc Duy1-1/+1
2013-12-10connect.c: teach get_remote_heads to parse "shallow" linesNguyễn Thái Ngọc Duy1-1/+1
2013-12-09git fetch-pack: add --diag-urlTorsten Bögershausen1-3/+11
2013-12-05replace {pre,suf}fixcmp() with {starts,ends}_with()Christian Couder1-3/+3
2013-09-09Merge branch 'jc/push-cas'Junio C Hamano1-0/+2
2013-07-23smart http: use the same connectivity check on cloningNguyễn Thái Ngọc Duy1-0/+9
2013-07-08cache.h: move remote/connect API out of itJunio C Hamano1-0/+2
2013-04-01Merge branch 'jk/pkt-line-cleanup'Junio C Hamano1-7/+4
2013-02-24teach get_remote_heads to read from a memory bufferJeff King1-1/+1
2013-02-20pkt-line: provide a LARGE_PACKET_MAX static bufferJeff King1-4/+3
2013-02-20pkt-line: teach packet_read_line to chomp newlinesJeff King1-2/+0
2013-02-07fetch: use struct ref to represent refs to be fetchedJunio C Hamano1-8/+32
2012-10-29fetch-pack: move core code to libgit.aNguyễn Thái Ngọc Duy1-948/+0
2012-10-29fetch-pack: remove global (static) configuration variable "args"Nguyễn Thái Ngọc Duy1-77/+83
2012-09-12fetch-pack: eliminate spurious error messagesMichael Haggerty1-5/+5
2012-09-12cmd_fetch_pack(): simplify computation of return valueMichael Haggerty1-11/+10
2012-09-12fetch-pack: report missing refs even if no existing refs were receivedMichael Haggerty1-1/+1
2012-09-12cmd_fetch_pack(): return early if finish_connect() failsMichael Haggerty1-3/+3
2012-09-12filter_refs(): simplify logicMichael Haggerty1-19/+18
2012-09-12filter_refs(): build refs list as we goMichael Haggerty1-27/+4
2012-09-12filter_refs(): delete matched refs from sought listMichael Haggerty1-8/+15
2012-09-12fetch_pack(): update sought->nr to reflect number of unique entriesMichael Haggerty1-14/+1
2012-09-12filter_refs(): do not check the same sought_pos twiceMichael Haggerty1-1/+1
2012-09-12Change fetch_pack() and friends to take string_list argumentsMichael Haggerty1-49/+39
2012-09-12fetch_pack(): reindent function decl and defnMichael Haggerty1-4/+4
2012-08-13fetch-pack: mention server version with verbose outputJeff King1-1/+8
2012-08-10fetch-pack: do not ask for unadvertised capabilitiesJunio C Hamano1-0/+6
2012-08-10do not send client agent unless server does firstJeff King1-1/+6
2012-08-03include agent identifier in capability stringJeff King1-0/+2
2012-05-29Merge branch 'jk/fetch-pack-remove-dups-optim'Junio C Hamano1-22/+30
2012-05-29Merge branch 'mh/fetch-pack-constness'Junio C Hamano1-74/+71
2012-05-24fetch-pack: sort incoming heads list earlierJeff King1-1/+1
2012-05-22fetch-pack: avoid quadratic loop in filter_refsJeff King1-6/+13
2012-05-22fetch-pack: sort the list of incoming refsJeff King1-0/+2
2012-05-22fetch-pack: avoid quadratic behavior in remove_duplicatesJeff King1-15/+6
2012-05-22fetch-pack: sort incoming headsJeff King1-1/+9
2012-05-22cmd_fetch_pack(): respect constness of argv parameterMichael Haggerty1-13/+10
2012-05-22cmd_fetch_pack(): combine the loop termination conditionsMichael Haggerty1-58/+55
2012-05-22cmd_fetch_pack(): handle non-option arguments outside of the loopMichael Haggerty1-5/+7
2012-05-22cmd_fetch_pack(): declare dest to be constMichael Haggerty1-3/+4
2012-04-24Merge branch 'it/fetch-pack-many-refs'Junio C Hamano1-1/+41
2012-04-02fetch-pack: new --stdin option to read refs from stdinIvan Todoroski1-1/+41
2012-02-20Merge branch 'cb/transfer-no-progress'Junio C Hamano1-1/+1
2012-02-13push/fetch/clone --no-progress suppresses progress outputClemens Buchacher1-1/+1
2012-02-12everything_local(): mark alternate refs as completeMichael Haggerty1-0/+6
2012-02-12fetch-pack.c: inline insert_alternate_refs()Michael Haggerty1-6/+1
2012-02-12fetch-pack.c: rename some parameters from "path" to "refname"Michael Haggerty1-5/+5
2011-12-13fetch-pack: match refs exactlyJeff King1-4/+9
2011-12-13drop "match" parameter from get_remote_headsJeff King1-1/+1
2011-10-10Merge branch 'mh/check-ref-format-3'Junio C Hamano1-1/+1
2011-10-05Change check_ref_format() to take a flags argumentMichael Haggerty1-1/+1
2011-10-05Merge branch 'jc/fetch-pack-fsck-objects'Junio C Hamano1-1/+19
2011-09-04transfer.fsckobjects: unify fetch/receive.fsckobjectsJunio C Hamano1-2/+12
2011-09-04fetch.fsckobjects: verify downloaded objectsJunio C Hamano1-0/+8
2011-08-28Merge branch 'nd/decorate-grafts'Junio C Hamano1-0/+30
2011-08-18fetch-pack: check for valid commit from serverNguyễn Thái Ngọc Duy1-0/+2
2011-08-18Move write_shallow_commits to fetch-pack.cNguyễn Thái Ngọc Duy1-0/+30
2011-05-29Merge branch 'jk/haves-from-alternate-odb'Junio C Hamano1-1/+1
2011-05-19refactor refs_from_alternate_cb to allow passing extra dataJeff King1-1/+1
2011-05-19fetch: avoid repeated commits in mark_completeJeff King1-2/+4
2011-03-29Merge branch 'jc/fetch-progressive-stride'Junio C Hamano1-4/+5
2011-03-29Merge branches 'sp/maint-fetch-pack-stop-early' and 'sp/maint-upload-pack-sto...Junio C Hamano1-1/+2
2011-03-29Revert two "no-done" revertsJunio C Hamano1-3/+15
2011-03-29Fix potential local deadlock during fetch-packJunio C Hamano1-4/+5
2011-03-29enable "no-done" extension only when fetching over smart-httpJunio C Hamano1-1/+2
2011-03-28Revert "fetch-pack: Implement no-done capability"Junio C Hamano1-15/+3
2011-03-26Merge branch 'jc/fetch-progressive-stride'Junio C Hamano1-3/+18
2011-03-22Merge branch 'sp/maint-fetch-pack-stop-early'Junio C Hamano1-2/+16
2011-03-22Merge branch 'jc/maint-fetch-alt'Junio C Hamano1-0/+12
2011-03-22Fix sparse warningsStephen Boyd1-1/+1
2011-03-20fetch-pack: use smaller handshake window for initial requestJunio C Hamano1-2/+4
2011-03-20fetch-pack: progressively use larger handshake windowsJunio C Hamano1-1/+6
2011-03-20fetch-pack: factor out hardcoded handshake window sizeJunio C Hamano1-3/+11
2011-03-17fetch-pack: objects in our alternates are available to usJunio C Hamano1-0/+12
2011-03-15fetch-pack: Implement no-done capabilityShawn O. Pearce1-3/+15
2011-03-14fetch-pack: Finish negotation if remote replies "ACK %s ready"Shawn O. Pearce1-0/+2
2011-03-08add packet tracing debug codeJeff King1-0/+2
2010-11-29commit: Add commit_list prefix in two function names.Thiago Farina1-2/+2
2010-02-22Move 'builtin-*' into a 'builtin/' subdirectoryLinus Torvalds1-0/+976