forked from git/git
-
Notifications
You must be signed in to change notification settings - Fork 186
doc: convert another batch of files to synopsis style #2117
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Open
jnavila
wants to merge
5
commits into
gitgitgadget:master
Choose a base branch
from
jnavila:bisect-synopsis-style
base: master
Could not load branches
Branch not found: {{ refName }}
Loading
Could not load tags
Nothing to show
Loading
Are you sure you want to change the base?
Some commits from the old base branch may be removed from the timeline,
and old review comments may become outdated.
+337
−321
Open
Changes from all commits
Commits
Show all changes
5 commits
Select commit
Hold shift + click to select a range
dca7f19
doc: convert git-bisect to synopsis style
jnavila 1b4efce
doc: convert git-grep synopsis and options to new style
jnavila 4ab60a9
doc: convert git-am synopsis and options to new style
jnavila 437e3f9
doc: convert git-apply synopsis and options to new style
jnavila dbe4d20
doc: convert git-imap-send synopsis and options to new style
jnavila File filter
Filter by extension
Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
There are no files selected for viewing
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| Original file line number | Diff line number | Diff line change |
|---|---|---|
| @@ -1,11 +1,16 @@ | ||
| apply.ignoreWhitespace:: | ||
| When set to 'change', tells 'git apply' to ignore changes in | ||
| `apply.ignoreWhitespace`:: | ||
| When set to `change`, tells `git apply` to ignore changes in | ||
| whitespace, in the same way as the `--ignore-space-change` | ||
| option. | ||
| When set to one of: no, none, never, false, it tells 'git apply' to | ||
| When set to one of: `no`, `none`, `never`, `false`, it tells `git apply` to | ||
| respect all whitespace differences. | ||
| ifndef::git-apply[] | ||
| See linkgit:git-apply[1]. | ||
| endif::git-apply[] | ||
|
|
||
| apply.whitespace:: | ||
| Tells 'git apply' how to handle whitespace, in the same way | ||
| as the `--whitespace` option. See linkgit:git-apply[1]. | ||
| `apply.whitespace`:: | ||
| Tells `git apply` how to handle whitespace, in the same way | ||
| as the `--whitespace` option. | ||
| ifndef::git-apply[] | ||
| See linkgit:git-apply[1]. | ||
| endif::git-apply[] |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| Original file line number | Diff line number | Diff line change |
|---|---|---|
| @@ -1,28 +1,28 @@ | ||
| grep.lineNumber:: | ||
| If set to true, enable `-n` option by default. | ||
| `grep.lineNumber`:: | ||
| If set to `true`, enable `-n` option by default. | ||
|
|
||
| grep.column:: | ||
| If set to true, enable the `--column` option by default. | ||
| `grep.column`:: | ||
| If set to `true`, enable the `--column` option by default. | ||
|
|
||
| grep.patternType:: | ||
| Set the default matching behavior. Using a value of 'basic', 'extended', | ||
| 'fixed', or 'perl' will enable the `--basic-regexp`, `--extended-regexp`, | ||
| `grep.patternType`:: | ||
| Set the default matching behavior. Using a value of `basic`, `extended`, | ||
| `fixed`, or `perl` will enable the `--basic-regexp`, `--extended-regexp`, | ||
| `--fixed-strings`, or `--perl-regexp` option accordingly, while the | ||
| value 'default' will use the `grep.extendedRegexp` option to choose | ||
| between 'basic' and 'extended'. | ||
| value `default` will use the `grep.extendedRegexp` option to choose | ||
| between `basic` and `extended`. | ||
|
|
||
| grep.extendedRegexp:: | ||
| If set to true, enable `--extended-regexp` option by default. This | ||
| `grep.extendedRegexp`:: | ||
| If set to `true`, enable `--extended-regexp` option by default. This | ||
| option is ignored when the `grep.patternType` option is set to a value | ||
| other than 'default'. | ||
| other than `default`. | ||
|
|
||
| grep.threads:: | ||
| `grep.threads`:: | ||
| Number of grep worker threads to use. If unset (or set to 0), Git will | ||
| use as many threads as the number of logical cores available. | ||
|
|
||
| grep.fullName:: | ||
| If set to true, enable `--full-name` option by default. | ||
| `grep.fullName`:: | ||
| If set to `true`, enable `--full-name` option by default. | ||
|
|
||
| grep.fallbackToNoIndex:: | ||
| If set to true, fall back to `git grep --no-index` if `git grep` | ||
| is executed outside of a git repository. Defaults to false. | ||
| `grep.fallbackToNoIndex`:: | ||
| If set to `true`, fall back to `git grep --no-index` if `git grep` | ||
| is executed outside of a git repository. Defaults to `false`. |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| Original file line number | Diff line number | Diff line change |
|---|---|---|
| @@ -1,8 +1,8 @@ | ||
| Any line that is of the form: | ||
|
|
||
| * three-dashes and end-of-line, or | ||
| * a line that begins with "diff -", or | ||
| * a line that begins with "Index: " | ||
| * a line that begins with `diff -`, or | ||
| * a line that begins with `Index: ` | ||
|
|
||
| is taken as the beginning of a patch, and the commit log message | ||
| is terminated before the first occurrence of such a line. |
Oops, something went wrong.
Oops, something went wrong.
Add this suggestion to a batch that can be applied as a single commit.
This suggestion is invalid because no changes were made to the code.
Suggestions cannot be applied while the pull request is closed.
Suggestions cannot be applied while viewing a subset of changes.
Only one suggestion per line can be applied in a batch.
Add this suggestion to a batch that can be applied as a single commit.
Applying suggestions on deleted lines is not supported.
You must change the existing code in this line in order to create a valid suggestion.
Outdated suggestions cannot be applied.
This suggestion has been applied or marked resolved.
Suggestions cannot be applied from pending reviews.
Suggestions cannot be applied on multi-line comments.
Suggestions cannot be applied while the pull request is queued to merge.
Suggestion cannot be applied right now. Please check back later.
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Junio C Hamano wrote on the Git mailing list (how to reply to this email):
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Junio C Hamano wrote on the Git mailing list (how to reply to this email):