| Commit message (Expand) | Author | Age | Files | Lines |
* | Merge branch 'nd/shallow-clone' | Junio C Hamano | 2014-01-17 | 1 | -3/+20 |
|\ |
|
| * | smart-http: support shallow fetch/clone | Nguyễn Thái Ngọc Duy | 2013-12-10 | 1 | -3/+13 |
| * | remote-curl: pass ref SHA-1 to fetch-pack as well | Nguyễn Thái Ngọc Duy | 2013-12-10 | 1 | -0/+7 |
| * | clone: support remote shallow repository | Nguyễn Thái Ngọc Duy | 2013-12-10 | 1 | -1/+1 |
| * | connect.c: teach get_remote_heads to parse "shallow" lines | Nguyễn Thái Ngọc Duy | 2013-12-10 | 1 | -1/+1 |
* | | Merge branch 'tb/clone-ssh-with-colon-for-port' | Junio C Hamano | 2013-12-17 | 1 | -3/+11 |
|\ \ |
|
| * | | git fetch-pack: add --diag-url | Torsten Bögershausen | 2013-12-09 | 1 | -3/+11 |
| |/ |
|
* | | replace {pre,suf}fixcmp() with {starts,ends}_with()cc/starts-n-ends-with | Christian Couder | 2013-12-05 | 1 | -3/+3 |
|/ |
|
* | Merge branch 'jc/push-cas' | Junio C Hamano | 2013-09-09 | 1 | -0/+2 |
|\ |
|
| * | cache.h: move remote/connect API out of it | Junio C Hamano | 2013-07-08 | 1 | -0/+2 |
* | | smart http: use the same connectivity check on cloningnd/clone-connectivity-shortcut | Nguyễn Thái Ngọc Duy | 2013-07-23 | 1 | -0/+9 |
|/ |
|
* | Merge branch 'jk/pkt-line-cleanup' | Junio C Hamano | 2013-04-01 | 1 | -7/+4 |
|\ |
|
| * | teach get_remote_heads to read from a memory buffer | Jeff King | 2013-02-24 | 1 | -1/+1 |
| * | pkt-line: provide a LARGE_PACKET_MAX static buffer | Jeff King | 2013-02-20 | 1 | -4/+3 |
| * | pkt-line: teach packet_read_line to chomp newlines | Jeff King | 2013-02-20 | 1 | -2/+0 |
* | | fetch: use struct ref to represent refs to be fetched | Junio C Hamano | 2013-02-07 | 1 | -8/+32 |
|/ |
|
* | fetch-pack: move core code to libgit.a | Nguyễn Thái Ngọc Duy | 2012-10-29 | 1 | -948/+0 |
* | fetch-pack: remove global (static) configuration variable "args" | Nguyễn Thái Ngọc Duy | 2012-10-29 | 1 | -77/+83 |
* | fetch-pack: eliminate spurious error messages | Michael Haggerty | 2012-09-12 | 1 | -5/+5 |
* | cmd_fetch_pack(): simplify computation of return value | Michael Haggerty | 2012-09-12 | 1 | -11/+10 |
* | fetch-pack: report missing refs even if no existing refs were received | Michael Haggerty | 2012-09-12 | 1 | -1/+1 |
* | cmd_fetch_pack(): return early if finish_connect() fails | Michael Haggerty | 2012-09-12 | 1 | -3/+3 |
* | filter_refs(): simplify logic | Michael Haggerty | 2012-09-12 | 1 | -19/+18 |
* | filter_refs(): build refs list as we go | Michael Haggerty | 2012-09-12 | 1 | -27/+4 |
* | filter_refs(): delete matched refs from sought list | Michael Haggerty | 2012-09-12 | 1 | -8/+15 |
* | fetch_pack(): update sought->nr to reflect number of unique entries | Michael Haggerty | 2012-09-12 | 1 | -14/+1 |
* | filter_refs(): do not check the same sought_pos twice | Michael Haggerty | 2012-09-12 | 1 | -1/+1 |
* | Change fetch_pack() and friends to take string_list arguments | Michael Haggerty | 2012-09-12 | 1 | -49/+39 |
* | fetch_pack(): reindent function decl and defn | Michael Haggerty | 2012-09-12 | 1 | -4/+4 |
* | fetch-pack: mention server version with verbose output | Jeff King | 2012-08-13 | 1 | -1/+8 |
* | fetch-pack: do not ask for unadvertised capabilities | Junio C Hamano | 2012-08-10 | 1 | -0/+6 |
* | do not send client agent unless server does first | Jeff King | 2012-08-10 | 1 | -1/+6 |
* | include agent identifier in capability string | Jeff King | 2012-08-03 | 1 | -0/+2 |
* | Merge branch 'jk/fetch-pack-remove-dups-optim' | Junio C Hamano | 2012-05-29 | 1 | -22/+30 |
|\ |
|
| * | fetch-pack: sort incoming heads list earlier | Jeff King | 2012-05-24 | 1 | -1/+1 |
| * | fetch-pack: avoid quadratic loop in filter_refs | Jeff King | 2012-05-22 | 1 | -6/+13 |
| * | fetch-pack: sort the list of incoming refs | Jeff King | 2012-05-22 | 1 | -0/+2 |
| * | fetch-pack: avoid quadratic behavior in remove_duplicates | Jeff King | 2012-05-22 | 1 | -15/+6 |
| * | fetch-pack: sort incoming heads | Jeff King | 2012-05-22 | 1 | -1/+9 |
* | | Merge branch 'mh/fetch-pack-constness' | Junio C Hamano | 2012-05-29 | 1 | -74/+71 |
|\ \
| |/
|/| |
|
| * | cmd_fetch_pack(): respect constness of argv parameter | Michael Haggerty | 2012-05-22 | 1 | -13/+10 |
| * | cmd_fetch_pack(): combine the loop termination conditions | Michael Haggerty | 2012-05-22 | 1 | -58/+55 |
| * | cmd_fetch_pack(): handle non-option arguments outside of the loop | Michael Haggerty | 2012-05-22 | 1 | -5/+7 |
| * | cmd_fetch_pack(): declare dest to be const | Michael Haggerty | 2012-05-22 | 1 | -3/+4 |
* | | Merge branch 'it/fetch-pack-many-refs' | Junio C Hamano | 2012-04-24 | 1 | -1/+41 |
|\ \
| |/ |
|
| * | fetch-pack: new --stdin option to read refs from stdin | Ivan Todoroski | 2012-04-02 | 1 | -1/+41 |
* | | Merge branch 'cb/transfer-no-progress' | Junio C Hamano | 2012-02-20 | 1 | -1/+1 |
|\ \ |
|
| * | | push/fetch/clone --no-progress suppresses progress outputcb/transfer-no-progress | Clemens Buchacher | 2012-02-13 | 1 | -1/+1 |
| |/ |
|
* | | everything_local(): mark alternate refs as complete | Michael Haggerty | 2012-02-12 | 1 | -0/+6 |
* | | fetch-pack.c: inline insert_alternate_refs() | Michael Haggerty | 2012-02-12 | 1 | -6/+1 |