summaryrefslogtreecommitdiff
Commit message (Expand)AuthorAgeFilesLines
...
| * | | | | attr: support quoting pathname patterns in C styleNguyễn Thái Ngọc Duy2017-02-013-5/+44
| * | | | | attr.c: plug small leak in parse_attr_line()Junio C Hamano2017-02-011-4/+8
| * | | | | attr.c: tighten constness around "git_attr" structureJunio C Hamano2017-02-012-3/+3
| * | | | | attr.c: simplify macroexpand_one()Junio C Hamano2017-02-011-7/+4
| * | | | | attr.c: mark where #if DEBUG ends more clearlyJunio C Hamano2017-02-011-1/+1
| * | | | | attr.c: complete a sentence in a commentJunio C Hamano2017-02-011-1/+1
| * | | | | attr.c: explain the lack of attr-name syntax check in parse_attr()Junio C Hamano2017-02-011-0/+6
| * | | | | attr.c: update a stale comment on "struct match_attr"Junio C Hamano2017-02-011-3/+2
| * | | | | attr.c: use strchrnul() to scan for one lineJunio C Hamano2017-02-011-2/+2
| * | | | | commit.c: use strchrnul() to scan for one lineJunio C Hamano2017-02-011-2/+1
* | | | | | Merge branch 'sg/completion'Junio C Hamano2017-02-275-168/+690
|\ \ \ \ \ \
| * | | | | | completion: restore removed line continuating backslashsg/completionSZEDER Gábor2017-02-131-1/+1
| * | | | | | completion: cache the path to the repositorySZEDER Gábor2017-02-032-75/+132
| * | | | | | completion: extract repository discovery from __gitdir()SZEDER Gábor2017-02-032-22/+42
| * | | | | | completion: don't guard git executions with __gitdir()SZEDER Gábor2017-02-031-21/+11
| * | | | | | completion: consolidate silencing errors from git commandsSZEDER Gábor2017-02-031-16/+12
| * | | | | | completion: don't use __gitdir() for git commandsSZEDER Gábor2017-02-031-29/+31
| * | | | | | completion: respect 'git -C <path>'SZEDER Gábor2017-02-032-5/+101
| * | | | | | rev-parse: add '--absolute-git-dir' optionSZEDER Gábor2017-02-033-16/+31
| * | | | | | completion: fix completion after 'git -C <path>'SZEDER Gábor2017-02-032-5/+10
| * | | | | | completion: don't offer commands when 'git --opt' needs an argumentSZEDER Gábor2017-02-031-0/+11
| * | | | | | completion: list short refs from a remote given as a URLSZEDER Gábor2017-02-032-6/+19
| * | | | | | completion: don't list 'HEAD' when trying refs completion outside of a repoSZEDER Gábor2017-02-032-3/+7
| * | | | | | completion: list refs from remote when remote's name matches a directorySZEDER Gábor2017-02-032-3/+28
| * | | | | | completion: respect 'git --git-dir=<path>' when listing remote refsSZEDER Gábor2017-02-032-7/+19
| * | | | | | completion: fix most spots not respecting 'git --git-dir=<path>'SZEDER Gábor2017-02-031-5/+7
| * | | | | | completion: ensure that the repository path given on the command line existsSZEDER Gábor2017-02-032-0/+9
| * | | | | | completion tests: add tests for the __git_refs() helper functionSZEDER Gábor2017-02-031-1/+264
| * | | | | | completion tests: check __gitdir()'s output in the error casesSZEDER Gábor2017-02-031-3/+5
| * | | | | | completion tests: consolidate getting path of current working directorySZEDER Gábor2017-02-031-23/+21
| * | | | | | completion tests: make the $cur variable local to the test helper functionsSZEDER Gábor2017-02-031-2/+2
| * | | | | | completion tests: don't add test cruft to the test repositorySZEDER Gábor2017-02-031-3/+3
| * | | | | | completion: improve __git_refs()'s in-code documentationSZEDER Gábor2017-02-031-3/+5
| | |/ / / / | |/| | | |
* | | | | | Merge branch 'lt/pathspec-negative'Junio C Hamano2017-02-273-9/+24
|\ \ \ \ \ \
| * | | | | | pathspec: don't error out on all-exclusionary pathspec patternslt/pathspec-negativeLinus Torvalds2017-02-103-8/+17
| * | | | | | pathspec magic: add '^' as alias for '!'Linus Torvalds2017-02-102-2/+8
| |/ / / / /
* | | | | | Merge branch 'cw/tag-reflog-message'Junio C Hamano2017-02-272-2/+70
|\ \ \ \ \ \
| * | | | | | tag: generate useful reflog messagecw/tag-reflog-messageCornelius Weig2017-02-082-2/+70
| | |_|_|/ / | |/| | | |
* | | | | | Merge branch 'jk/alternate-ref-optim'Junio C Hamano2017-02-279-49/+249
|\ \ \ \ \ \
| * | | | | | receive-pack: avoid duplicates between our refs and alternatesJeff King2017-02-082-1/+41
| * | | | | | receive-pack: treat namespace .have lines like alternatesJeff King2017-02-081-3/+7
| * | | | | | receive-pack: fix misleading namespace/.have commentJeff King2017-02-081-4/+1
| * | | | | | receive-pack: use oidset to de-duplicate .have linesJeff King2017-02-081-14/+12
| * | | | | | add oidset APIJeff King2017-02-083-0/+95
| * | | | | | fetch-pack: cache results of for_each_alternate_refJeff King2017-02-082-11/+43
| * | | | | | for_each_alternate_ref: replace transport code with for-each-refJeff King2017-02-081-10/+38
| * | | | | | for_each_alternate_ref: pass name/oid instead of ref structJeff King2017-02-084-8/+14
| * | | | | | for_each_alternate_ref: use strbuf for path allocationJeff King2017-02-081-14/+14
| * | | | | | for_each_alternate_ref: stop trimming trailing slashesJeff King2017-02-081-2/+0
| * | | | | | for_each_alternate_ref: handle failure from real_pathdup()Jeff King2017-02-081-0/+2
| | |/ / / / | |/| | | |