File tree Expand file tree Collapse file tree 2 files changed +4
-2
lines changed Expand file tree Collapse file tree 2 files changed +4
-2
lines changed Original file line number Diff line number Diff line change @@ -13,7 +13,7 @@ SYNOPSIS
13
13
[--3way] [--interactive] [--committer-date-is-author-date]
14
14
[--ignore-date] [--ignore-space-change | --ignore-whitespace]
15
15
[--whitespace=<option>] [-C<n>] [-p<n>] [--directory=<dir>]
16
- [--exclude=<path>] [--reject] [-q | --quiet]
16
+ [--exclude=<path>] [--include=<path>] [-- reject] [-q | --quiet]
17
17
[--scissors | --no-scissors]
18
18
[(<mbox> | <Maildir>)...]
19
19
'git am' (--continue | --skip | --abort)
@@ -92,6 +92,7 @@ default. You can use `--no-utf8` to override this.
92
92
-p<n>::
93
93
--directory=<dir>::
94
94
--exclude=<path>::
95
+ --include=<path>::
95
96
--reject::
96
97
These flags are passed to the 'git apply' (see linkgit:git-apply[1])
97
98
program that applies
Original file line number Diff line number Diff line change @@ -24,6 +24,7 @@ ignore-space-change pass it through git-apply
24
24
ignore-whitespace pass it through git-apply
25
25
directory= pass it through git-apply
26
26
exclude= pass it through git-apply
27
+ include= pass it through git-apply
27
28
C= pass it through git-apply
28
29
p= pass it through git-apply
29
30
patch-format= format the patch(es) are in
412
413
;;
413
414
--resolvemsg)
414
415
shift ; resolvemsg=$1 ;;
415
- --whitespace|--directory|--exclude)
416
+ --whitespace|--directory|--exclude|--include )
416
417
git_apply_opt=" $git_apply_opt $( sq " $1 =$2 " ) " ; shift ;;
417
418
-C|-p)
418
419
git_apply_opt=" $git_apply_opt $( sq " $1$2 " ) " ; shift ;;
You can’t perform that action at this time.
0 commit comments