diff options
author | Jeff King <peff@peff.net> | 2021-11-09 11:35:47 -0500 |
---|---|---|
committer | Junio C Hamano <gitster@pobox.com> | 2021-11-09 11:15:21 -0800 |
commit | 67ba13e5a4b27785391a0e1673d71e506edae13b (patch) | |
tree | e8ef0c9ed44b7221d81f55178ffc8776e8207505 /contrib/git-jump/README | |
parent | A few fixes before -rc2 (diff) | |
download | tgif-67ba13e5a4b27785391a0e1673d71e506edae13b.tar.xz |
git-jump: pass "merge" arguments to ls-files
We currently throw away any arguments given to "git jump merge". We
should instead pass them along to ls-files, since they're likely to be
pathspecs. This matches the behavior of "git jump diff", etc.
Signed-off-by: Jeff King <peff@peff.net>
Signed-off-by: Junio C Hamano <gitster@pobox.com>
Diffstat (limited to 'contrib/git-jump/README')
-rw-r--r-- | contrib/git-jump/README | 3 |
1 files changed, 3 insertions, 0 deletions
diff --git a/contrib/git-jump/README b/contrib/git-jump/README index 2f618a7f97..8bcace29d2 100644 --- a/contrib/git-jump/README +++ b/contrib/git-jump/README @@ -65,6 +65,9 @@ git jump diff --cached # jump to merge conflicts git jump merge +# documentation conflicts are hard; skip past them for now +git jump merge :^Documentation + # jump to all instances of foo_bar git jump grep foo_bar |