Commit message (Expand) | Author | Age | Files | Lines | ||
---|---|---|---|---|---|---|
... | ||||||
| * | | | | | | | compat/mingw: brown paper bag fix for 50a6c8e | Jeff King | 2016-02-29 | 1 | -1/+1 | |
| * | | | | | | | ewah: convert to REALLOC_ARRAY, etc | Jeff King | 2016-02-22 | 3 | -19/+8 | |
| * | | | | | | | convert ewah/bitmap code to use xmalloc | Jeff King | 2016-02-22 | 4 | -30/+11 | |
| * | | | | | | | diff_populate_gitlink: use a strbuf | Jeff King | 2016-02-22 | 1 | -8/+8 | |
| * | | | | | | | transport_anonymize_url: use xstrfmt | Jeff King | 2016-02-22 | 1 | -5/+3 | |
| * | | | | | | | git-compat-util: drop mempcpy compat code | Jeff King | 2016-02-22 | 1 | -9/+0 | |
| * | | | | | | | sequencer: simplify memory allocation of get_message | Jeff King | 2016-02-22 | 1 | -19/+10 | |
| * | | | | | | | test-path-utils: fix normalize_path_copy output buffer size | Jeff King | 2016-02-22 | 1 | -11/+4 | |
| * | | | | | | | fetch-pack: simplify add_sought_entry | Jeff King | 2016-02-22 | 1 | -18/+9 | |
| * | | | | | | | fast-import: simplify allocation in start_packfile | Jeff King | 2016-02-22 | 1 | -4/+1 | |
| * | | | | | | | write_untracked_extension: use FLEX_ALLOC helper | Jeff King | 2016-02-22 | 1 | -5/+4 | |
| * | | | | | | | prepare_{git,shell}_cmd: use argv_array | Jeff King | 2016-02-22 | 3 | -53/+39 | |
| * | | | | | | | use st_add and st_mult for allocation size computation | Jeff King | 2016-02-22 | 25 | -53/+56 | |
| * | | | | | | | convert trivial cases to FLEX_ARRAY macros | Jeff King | 2016-02-22 | 17 | -82/+35 | |
| * | | | | | | | use xmallocz to avoid size arithmetic | Jeff King | 2016-02-22 | 15 | -25/+17 | |
| * | | | | | | | convert trivial cases to ALLOC_ARRAY | Jeff King | 2016-02-22 | 34 | -64/+75 | |
| * | | | | | | | convert manual allocations to argv_array | Jeff King | 2016-02-22 | 7 | -76/+43 | |
| * | | | | | | | argv-array: add detach function | Jeff King | 2016-02-22 | 3 | -0/+19 | |
| * | | | | | | | add helpers for allocating flex-array structs | Jeff King | 2016-02-22 | 1 | -0/+62 | |
| * | | | | | | | harden REALLOC_ARRAY and xcalloc against size_t overflow | Jeff King | 2016-02-22 | 2 | -1/+5 | |
| * | | | | | | | tree-diff: catch integer overflow in combine_diff_path allocation | Jeff King | 2016-02-19 | 2 | -4/+4 | |
| * | | | | | | | add helpers for detecting size_t overflow | Jeff King | 2016-02-19 | 1 | -0/+34 | |
| * | | | | | | | reflog_expire_cfg: NUL-terminate pattern field | Jeff King | 2016-02-19 | 1 | -5/+3 | |
* | | | | | | | | Merge branch 'jk/more-comments-on-textconv' into maint | Junio C Hamano | 2016-03-10 | 3 | -1/+24 | |
|\ \ \ \ \ \ \ \ | ||||||
| * | | | | | | | | diff: clarify textconv interfacejk/more-comments-on-textconv | Jeff King | 2016-02-22 | 3 | -1/+24 | |
| | |/ / / / / / | |/| | | | | | | ||||||
* | | | | | | | | Merge branch 'jk/no-diff-emit-common' into maint | Junio C Hamano | 2016-03-10 | 4 | -57/+3 | |
|\ \ \ \ \ \ \ \ | ||||||
| * | | | | | | | | xdiff: drop XDL_EMIT_COMMONjk/no-diff-emit-common | Jeff King | 2016-02-22 | 2 | -19/+0 | |
| * | | | | | | | | merge-tree: drop generate_common strategy | Jeff King | 2016-02-22 | 1 | -36/+2 | |
| * | | | | | | | | merge-one-file: use empty blob for add/add base | Jeff King | 2016-02-22 | 1 | -2/+1 | |
| |/ / / / / / / | ||||||
* | | | | | | | | Merge branch 'jc/am-i-v-fix' into maint | Junio C Hamano | 2016-03-10 | 3 | -9/+15 | |
|\ \ \ \ \ \ \ \ | ||||||
| * | | | | | | | | am -i: fix "v"iewjc/am-i-v-fix | Junio C Hamano | 2016-02-17 | 1 | -1/+1 | |
| * | | | | | | | | pager: factor out a helper to prepare a child process to run the pager | Junio C Hamano | 2016-02-17 | 2 | -6/+14 | |
| * | | | | | | | | pager: lose a separate argv[] | Junio C Hamano | 2016-02-16 | 1 | -3/+1 | |
* | | | | | | | | | Merge branch 'nd/git-common-dir-fix' into maint | Junio C Hamano | 2016-03-10 | 2 | -1/+12 | |
|\ \ \ \ \ \ \ \ \ | ||||||
| * | | | | | | | | | rev-parse: take prefix into account in --git-common-dirnd/git-common-dir-fix | Nguyễn Thái Ngọc Duy | 2016-02-12 | 2 | -1/+12 | |
| | |_|_|/ / / / / | |/| | | | | | | | ||||||
* | | | | | | | | | Merge branch 'nd/dwim-wildcards-as-pathspecs' into maint | Junio C Hamano | 2016-03-10 | 5 | -33/+54 | |
|\ \ \ \ \ \ \ \ \ | ||||||
| * | | | | | | | | | get_sha1: don't die() on bogus search stringsnd/dwim-wildcards-as-pathspecs | Jeff King | 2016-02-10 | 2 | -2/+12 | |
| * | | | | | | | | | check_filename: tighten dwim-wildcard ambiguity | Jeff King | 2016-02-10 | 4 | -31/+42 | |
| * | | | | | | | | | checkout: reorder check_filename conditional | Jeff King | 2016-02-10 | 1 | -1/+1 | |
* | | | | | | | | | | Merge branch 'jk/epipe-in-async' into maint | Junio C Hamano | 2016-03-10 | 6 | -3/+25 | |
|\ \ \ \ \ \ \ \ \ \ | ||||||
| * | | | | | | | | | | t5504: handle expected output from SIGPIPE deathjk/epipe-in-async | Jeff King | 2016-02-25 | 1 | -1/+4 | |
| * | | | | | | | | | | test_must_fail: report number of unexpected signal | Jeff King | 2016-02-25 | 1 | -1/+1 | |
| * | | | | | | | | | | fetch-pack: ignore SIGPIPE in sideband demuxer | Jeff King | 2016-02-25 | 1 | -1/+5 | |
| * | | | | | | | | | | write_or_die: handle EPIPE in async threads | Jeff King | 2016-02-25 | 3 | -0/+15 | |
| | |_|_|_|_|/ / / / | |/| | | | | | | | | ||||||
* | | | | | | | | | | Merge branch 'ps/config-error' into maint | Junio C Hamano | 2016-03-10 | 13 | -105/+159 | |
|\ \ \ \ \ \ \ \ \ \ | ||||||
| * | | | | | | | | | | config: rename git_config_set_or_die to git_config_setps/config-error | Patrick Steinhardt | 2016-02-22 | 10 | -67/+67 | |
| * | | | | | | | | | | config: rename git_config_set to git_config_set_gently | Patrick Steinhardt | 2016-02-22 | 7 | -39/+40 | |
| * | | | | | | | | | | compat: die when unable to set core.precomposeunicode | Patrick Steinhardt | 2016-02-22 | 1 | -1/+2 | |
| * | | | | | | | | | | sequencer: die on config error when saving replay opts | Patrick Steinhardt | 2016-02-22 | 1 | -11/+11 | |
| * | | | | | | | | | | init-db: die on config errors when initializing empty repo | Patrick Steinhardt | 2016-02-22 | 1 | -10/+10 |