Commit message (Expand) | Author | Age | Files | Lines | |
---|---|---|---|---|---|
* | Merge branch 'jk/bug-to-abort' | Junio C Hamano | 2017-05-29 | 5 | -1/+51 |
|\ | |||||
| * | usage: add NORETURN to BUG() function definitionsjk/bug-to-abort | Ramsay Jones | 2017-05-22 | 1 | -2/+2 |
| * | config: complain about --local outside of a git repo | Jeff King | 2017-05-15 | 2 | -1/+4 |
| * | setup_git_env: convert die("BUG") to BUG() | Jeff King | 2017-05-15 | 2 | -1/+7 |
| * | usage.c: add BUG() function | Jeff King | 2017-05-15 | 2 | -0/+41 |
* | | Merge branch 'js/eol-on-ourselves' | Junio C Hamano | 2017-05-29 | 11 | -26/+55 |
|\ \ | |||||
| * | | t4051: mark supporting files as requiring LF-only line endingsjs/eol-on-ourselves | Johannes Schindelin | 2017-05-10 | 1 | -0/+1 |
| * | | Fix the remaining tests that failed with core.autocrlf=true | Johannes Schindelin | 2017-05-10 | 1 | -1/+20 |
| * | | t3901: move supporting files into t/t3901/ | Johannes Schindelin | 2017-05-10 | 6 | -24/+24 |
| * | | completion: mark bash script as LF-only | Johannes Schindelin | 2017-05-10 | 1 | -0/+1 |
| * | | git-new-workdir: mark script as LF-only | Johannes Schindelin | 2017-05-10 | 1 | -0/+1 |
| * | | Fix build with core.autocrlf=true | Johannes Schindelin | 2017-05-10 | 2 | -1/+8 |
* | | | Merge branch 'jc/read-tree-empty-with-m' | Junio C Hamano | 2017-05-29 | 1 | -1/+1 |
|\ \ \ | |||||
| * | | | read-tree: "read-tree -m --empty" does not make sensejc/read-tree-empty-with-m | Junio C Hamano | 2017-05-10 | 1 | -1/+1 |
* | | | | Merge branch 'js/plug-leaks' | Junio C Hamano | 2017-05-29 | 23 | -64/+149 |
|\ \ \ \ | |||||
| * | | | | checkout: fix memory leakjs/plug-leaks | Junio C Hamano | 2017-05-09 | 1 | -0/+1 |
| * | | | | submodule_uses_worktrees(): plug memory leak | Johannes Schindelin | 2017-05-08 | 1 | -1/+1 |
| * | | | | show_worktree(): plug memory leak | Johannes Schindelin | 2017-05-08 | 1 | -3/+5 |
| * | | | | name-rev: avoid leaking memory in the `deref` case | Johannes Schindelin | 2017-05-08 | 1 | -2/+5 |
| * | | | | remote: plug memory leak in match_explicit() | Johannes Schindelin | 2017-05-08 | 1 | -2/+3 |
| * | | | | add_reflog_for_walk: avoid memory leak | Johannes Schindelin | 2017-05-08 | 1 | -3/+17 |
| * | | | | shallow: avoid memory leak | Johannes Schindelin | 2017-05-08 | 1 | -2/+6 |
| * | | | | line-log: avoid memory leak | Johannes Schindelin | 2017-05-08 | 1 | -0/+1 |
| * | | | | receive-pack: plug memory leak in update() | Johannes Schindelin | 2017-05-08 | 1 | -1/+3 |
| * | | | | fast-export: avoid leaking memory in handle_tag() | Johannes Schindelin | 2017-05-08 | 1 | -0/+2 |
| * | | | | mktree: plug memory leaks reported by Coverity | Johannes Schindelin | 2017-05-08 | 1 | -2/+3 |
| * | | | | pack-redundant: plug memory leak | Johannes Schindelin | 2017-05-08 | 1 | -0/+1 |
| * | | | | setup_discovered_git_dir(): plug memory leak | Johannes Schindelin | 2017-05-08 | 1 | -2/+7 |
| * | | | | setup_bare_git_dir(): help static analysis | Johannes Schindelin | 2017-05-08 | 1 | -1/+1 |
| * | | | | split_commit_in_progress(): simplify & fix memory leak | Johannes Schindelin | 2017-05-08 | 1 | -14/+14 |
| * | | | | checkout: fix memory leak | Johannes Schindelin | 2017-05-08 | 1 | -8/+9 |
| * | | | | cat-file: fix memory leak | Johannes Schindelin | 2017-05-08 | 1 | -0/+1 |
| * | | | | mailinfo & mailsplit: check for EOF while parsing | Johannes Schindelin | 2017-05-08 | 2 | -1/+18 |
| * | | | | status: close file descriptor after reading git-rebase-todo | Johannes Schindelin | 2017-05-08 | 1 | -0/+1 |
| * | | | | difftool: address a couple of resource/memory leaks | Johannes Schindelin | 2017-05-08 | 1 | -10/+23 |
| * | | | | get_mail_commit_oid(): avoid resource leak | Johannes Schindelin | 2017-05-08 | 1 | -9/+6 |
| * | | | | git_config_rename_section_in_file(): avoid resource leak | Johannes Schindelin | 2017-05-08 | 1 | -1/+4 |
| * | | | | add_commit_patch_id(): avoid allocating memory unnecessarily | Johannes Schindelin | 2017-05-08 | 1 | -1/+2 |
| * | | | | winansi: avoid buffer overrun | Johannes Schindelin | 2017-05-08 | 1 | -0/+5 |
| * | | | | winansi: avoid use of uninitialized value | Johannes Schindelin | 2017-05-08 | 1 | -0/+7 |
| * | | | | mingw: avoid memory leak when splitting PATH | Johannes Schindelin | 2017-05-08 | 1 | -1/+3 |
* | | | | | Merge branch 'jk/disable-pack-reuse-when-broken' | Junio C Hamano | 2017-05-29 | 2 | -4/+50 |
|\ \ \ \ \ | |||||
| * | | | | | t5310: fix "; do" stylejk/disable-pack-reuse-when-broken | Jeff King | 2017-05-09 | 1 | -4/+8 |
| * | | | | | pack-objects: disable pack reuse for object-selection options | Jeff King | 2017-05-09 | 2 | -1/+43 |
* | | | | | | Merge branch 'bc/object-id' | Junio C Hamano | 2017-05-29 | 106 | -1134/+1173 |
|\ \ \ \ \ \ | |||||
| * | | | | | | object: convert parse_object* to take struct object_id | brian m. carlson | 2017-05-08 | 38 | -108/+107 |
| * | | | | | | tree: convert parse_tree_indirect to struct object_id | brian m. carlson | 2017-05-08 | 16 | -28/+28 |
| * | | | | | | sequencer: convert do_recursive_merge to struct object_id | brian m. carlson | 2017-05-08 | 1 | -3/+3 |
| * | | | | | | diff-lib: convert do_diff_cache to struct object_id | brian m. carlson | 2017-05-08 | 5 | -12/+12 |
| * | | | | | | builtin/ls-tree: convert to struct object_id | brian m. carlson | 2017-05-08 | 1 | -3/+3 |