You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Use_<regex>_to decide what a word is, instead of considering runs of non-whitespace to be a word. Also implies `--word-diff`unless it was already enabled.
Treat the _<string>_ given to `-S`as an extended POSIX regular expression to match.
453
+
`-S`に指定した <string> を拡張POSIX正規表現として扱います。
454
454
455
455
endif::git-format-patch[]
456
456
@@ -473,7 +473,7 @@ endif::git-format-patch[]
473
473
474
474
`--skip-to=<file>`::
475
475
`--rotate-to=<file>`::
476
-
Discard the files before the named _<file>_ from the output (i.e. 'skip to'), or move them to the end of the output (i.e. 'rotate to'). These options were invented primarily for the use of the `git difftool` command, and may not be very useful otherwise.
Show the context between diff hunks, up to the specified _<number>_ of lines, thereby fusing hunks that are close to each other. Defaults to `diff.interHunkContext` or 0 if the config option is unset.
For each pathspec given on command line, descend at most `<depth>` levels of directories. A value of `-1` means no limit. Cannot be combined with wildcards in the pathspec. Given a tree containing `foo/bar/baz`, the following list shows the matches generated by each set of options:
If no pathspec is given, the depth is measured as if all top-level entries were specified. Note that this is different than measuring from the root, in that `--max-depth=0` would still return `foo`. This allows you to still limit depth while asking for a subset of the top-level entries.
Copy file name to clipboardExpand all lines: Documentation-ja/fetch-options.adoc
+8-8Lines changed: 8 additions & 8 deletions
Display the source diff
Display the rich diff
Original file line number
Diff line number
Diff line change
@@ -1,10 +1,10 @@
1
1
`--all`::
2
2
`--no-all`::
3
-
Fetch all remotes, except for the ones that has the `remote.<name>.skipFetchAll`configuration variable set. This overrides the configuration variable `fetch.all`.
0 commit comments