[PATCH] docs/gitweb.conf: config variable typo

2018-12-07 Thread Frank Dana
The documentation for the feature 'snapshot' claimed "This feature can be configured on a per-repository basis via repository's `gitweb.blame` configuration variable" Fixed to specify `gitweb.snapshot` as the variable name. --- Documentation/gitweb.conf.txt | 2 +- 1 file changed, 1

Re: [BUG] gitignore documentation inconsistent with actual behaviour

2018-10-20 Thread dana
only when used in a path component by itself, otherwise it acts like `*`. So there's precedent there. dana

Re: [BUG] gitignore documentation inconsistent with actual behaviour

2018-10-19 Thread dana
eed that personally, but then again i don't understand why these people are using `**` the way they are in the first place.) dana

Re: [BUG] gitignore documentation inconsistent with actual behaviour

2018-10-13 Thread dana
d him on this message in case he has anything to add. dana

Re: [BUG] gitignore documentation inconsistent with actual behaviour

2018-10-11 Thread dana
On 11 Oct 2018, at 05:19, dana wrote: >git itself happily accepts these patterns, however, apparently treating the ** >like a single * without fnmatch(3)'s FNM_PATHNAME flag set (in other words, it >matches / as a regular character, thus crossing directory boundaries). Sorry for

[BUG] gitignore documentation inconsistent with actual behaviour

2018-10-11 Thread dana
m/BurntSushi/ripgrep/issues/859 https://github.com/BurntSushi/ripgrep/issues/945 https://github.com/BurntSushi/ripgrep/issues/1080 https://github.com/BurntSushi/ripgrep/issues/1082 https://github.com/Microsoft/vscode/issues/24050 dana

Re: [PATCH] rebase -i: Fix white space in comments

2018-06-26 Thread dana
that. That change does appear to solve the same problem, so i'm happy to defer to it. Thanks for looking! dana

[PATCH] rebase -i: Fix white space in comments

2018-06-26 Thread dana
Fix a trivial white-space issue introduced by commit d48f97aa8 ("rebase: reindent function git_rebase__interactive", 2018-03-23). This affected the instructional comments displayed in the editor during an interactive rebase. Signed-off-by: dana --- Sorry if i've done any of this w