Skip to content

Commit c4e26c4

Browse files
committed
for [synopsis]
JP: [synopsis] に絡む変更を一応記録しとく。
1 parent 3f2ea97 commit c4e26c4

24 files changed

+182
-168
lines changed

Documentation-ja/git-checkout.adoc

Lines changed: 9 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -8,7 +8,15 @@ git-checkout - ブランチの切り替え、または作業ツリーファイ
88
SYNOPSIS
99
--------
1010
[synopsis]
11-
git checkout [-q] [-f] [-m] [<branch>] git checkout [-q] [-f] [-m] --detach [<branch>] git checkout [-q] [-f] [-m] [--detach] <commit> git checkout [-q] [-f] [-m] [[-b|-B|--orphan] <new-branch>] [<start-point>] git checkout <tree-ish> [--] <pathspec>... git checkout <tree-ish> --pathspec-from-file=<file> [--pathspec-file-nul] git checkout [-f|--ours|--theirs|-m|--conflict=<style>] [--] <pathspec>... git checkout [-f|--ours|--theirs|-m|--conflict=<style>] --pathspec-from-file=<file> [--pathspec-file-nul] git checkout (-p|--patch) [<tree-ish>] [--] [<pathspec>...]
11+
git checkout [-q] [-f] [-m] [<branch>]
12+
git checkout [-q] [-f] [-m] --detach [<branch>]
13+
git checkout [-q] [-f] [-m] [--detach] <commit>
14+
git checkout [-q] [-f] [-m] [[-b|-B|--orphan] <new-branch>] [<start-point>]
15+
git checkout <tree-ish> [--] <pathspec>...
16+
git checkout <tree-ish> --pathspec-from-file=<file> [--pathspec-file-nul]
17+
git checkout [-f|--ours|--theirs|-m|--conflict=<style>] [--] <pathspec>...
18+
git checkout [-f|--ours|--theirs|-m|--conflict=<style>] --pathspec-from-file=<file> [--pathspec-file-nul]
19+
git checkout (-p|--patch) [<tree-ish>] [--] [<pathspec>...]
1220

1321
DESCRIPTION
1422
-----------

Documentation-ja/git-config.adoc

Lines changed: 8 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -9,7 +9,14 @@ git-config - リポジトリー・オプションまたはグローバル・オ
99
SYNOPSIS
1010
--------
1111
[synopsis]
12-
'git config list' [<file-option>] [<display-option>] [--includes] 'git config get' [<file-option>] [<display-option>] [--includes] [--all] [--regexp] [--value=<pattern>] [--fixed-value] [--default=<default>] [--url=<url>] <name> 'git config set' [<file-option>] [--type=<type>] [--all] [--value=<pattern>] [--fixed-value] <name> <value> 'git config unset' [<file-option>] [--all] [--value=<pattern>] [--fixed-value] <name> 'git config rename-section' [<file-option>] <old-name> <new-name> 'git config remove-section' [<file-option>] <name> 'git config edit' [<file-option>] 'git config' [<file-option>] --get-colorbool <name> [<stdout-is-tty>]
12+
'git config list' [<file-option>] [<display-option>] [--includes]
13+
'git config get' [<file-option>] [<display-option>] [--includes] [--all] [--regexp] [--value=<pattern>] [--fixed-value] [--default=<default>] [--url=<url>] <name>
14+
'git config set' [<file-option>] [--type=<type>] [--all] [--value=<pattern>] [--fixed-value] <name> <value>
15+
'git config unset' [<file-option>] [--all] [--value=<pattern>] [--fixed-value] <name>
16+
'git config rename-section' [<file-option>] <old-name> <new-name>
17+
'git config remove-section' [<file-option>] <name>
18+
'git config edit' [<file-option>]
19+
'git config' [<file-option>] --get-colorbool <name> [<stdout-is-tty>]
1320

1421
DESCRIPTION
1522
-----------

Documentation-ja/git-diff.adoc

Lines changed: 6 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -9,7 +9,12 @@ git-diff - コミット、コミット、作業ツリーなどの間の変更を
99
SYNOPSIS
1010
--------
1111
[synopsis]
12-
git diff [<options>] [<commit>] [--] [<path>...] git diff [<options>] --cached [--merge-base] [<commit>] [--] [<path>...] git diff [<options>] [--merge-base] <commit> [<commit>...] <commit> [--] [<path>...] git diff [<options>] <commit>...<commit> [--] [<path>...] git diff [<options>] <blob> <blob> git diff [<options>] --no-index [--] <path> <path> [<pathspec>...]
12+
git diff [<options>] [<commit>] [--] [<path>...]
13+
git diff [<options>] --cached [--merge-base] [<commit>] [--] [<path>...]
14+
git diff [<options>] [--merge-base] <commit> [<commit>...] <commit> [--] [<path>...]
15+
git diff [<options>] <commit>...<commit> [--] [<path>...]
16+
git diff [<options>] <blob> <blob>
17+
git diff [<options>] --no-index [--] <path> <path> [<pathspec>...]
1318

1419
DESCRIPTION
1520
-----------

Documentation-ja/git-mv.adoc

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -10,7 +10,8 @@ SYNOPSIS
1010
--------
1111

1212
[synopsis]
13-
git mv [-v] [-f] [-n] [-k] <source> <destination> git mv [-v] [-f] [-n] [-k] <source>... <destination-directory>
13+
git mv [-v] [-f] [-n] [-k] <source> <destination>
14+
git mv [-v] [-f] [-n] [-k] <source>... <destination-directory>
1415

1516
DESCRIPTION
1617
-----------

Documentation-ja/git-notes.adoc

Lines changed: 12 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -8,7 +8,18 @@ git-notes - オブジェクト・ノートを追加または調べます
88
SYNOPSIS
99
--------
1010
[synopsis]
11-
git notes [list [<object>]] git notes add [-f] [--allow-empty] [--[no-]separator | --separator=<paragraph-break>] [--[no-]stripspace] [-F <file> | -m <msg> | (-c | -C) <object>] [-e] [<object>] git notes copy [-f] ( --stdin | <from-object> [<to-object>] ) git notes append [--allow-empty] [--[no-]separator | --separator=<paragraph-break>] [--[no-]stripspace] [-F <file> | -m <msg> | (-c | -C) <object>] [-e] [<object>] git notes edit [--allow-empty] [<object>] [--[no-]stripspace] git notes show [<object>] git notes merge [-v | -q] [-s <strategy> ] <notes-ref> git notes merge --commit [-v | -q] git notes merge --abort [-v | -q] git notes remove [--ignore-missing] [--stdin] [<object>...] git notes prune [-n] [-v] git notes get-ref
11+
git notes [list [<object>]]
12+
git notes add [-f] [--allow-empty] [--[no-]separator | --separator=<paragraph-break>] [--[no-]stripspace] [-F <file> | -m <msg> | (-c | -C) <object>] [-e] [<object>]
13+
git notes copy [-f] ( --stdin | <from-object> [<to-object>] )
14+
git notes append [--allow-empty] [--[no-]separator | --separator=<paragraph-break>] [--[no-]stripspace] [-F <file> | -m <msg> | (-c | -C) <object>] [-e] [<object>]
15+
git notes edit [--allow-empty] [<object>] [--[no-]stripspace]
16+
git notes show [<object>]
17+
git notes merge [-v | -q] [-s <strategy> ] <notes-ref>
18+
git notes merge --commit [-v | -q]
19+
git notes merge --abort [-v | -q]
20+
git notes remove [--ignore-missing] [--stdin] [<object>...]
21+
git notes prune [-n] [-v]
22+
git notes get-ref
1223

1324

1425
DESCRIPTION

Documentation-ja/git-repo.adoc

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -8,7 +8,8 @@ git-repo - リポジトリーに関する情報を取得
88
SYNOPSIS
99
--------
1010
[synopsis]
11-
git repo info [--format=(keyvalue|nul)] [-z] [<key>...] git repo structure [--format=(table|keyvalue|nul)]
11+
git repo info [--format=(keyvalue|nul)] [-z] [<key>...]
12+
git repo structure [--format=(table|keyvalue|nul)]
1213

1314
DESCRIPTION
1415
-----------

Documentation-ja/git-reset.adoc

Lines changed: 4 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -8,7 +8,10 @@ git-reset - 現在のHEADを指定の状態にリセットします
88
SYNOPSIS
99
--------
1010
[synopsis]
11-
git reset [-q] [<tree-ish>] [--] <pathspec>... git reset [-q] [--pathspec-from-file=<file> [--pathspec-file-nul]] [<tree-ish>] git reset (--patch | -p) [<tree-ish>] [--] [<pathspec>...] git reset [--soft | --mixed [-N] | --hard | --merge | --keep] [-q] [<commit>]
11+
git reset [-q] [<tree-ish>] [--] <pathspec>...
12+
git reset [-q] [--pathspec-from-file=<file> [--pathspec-file-nul]] [<tree-ish>]
13+
git reset (--patch | -p) [<tree-ish>] [--] [<pathspec>...]
14+
git reset [--soft | --mixed [-N] | --hard | --merge | --keep] [-q] [<commit>]
1215

1316
DESCRIPTION
1417
-----------

Documentation-ja/git-restore.adoc

Lines changed: 3 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -8,7 +8,9 @@ git-restore - 作業ツリーファイルを復元します
88
SYNOPSIS
99
--------
1010
[synopsis]
11-
git restore [<options>] [--source=<tree>] [--staged] [--worktree] [--] <pathspec>... git restore [<options>] [--source=<tree>] [--staged] [--worktree] --pathspec-from-file=<file> [--pathspec-file-nul] git restore (-p|--patch) [<options>] [--source=<tree>] [--staged] [--worktree] [--] [<pathspec>...]
11+
git restore [<options>] [--source=<tree>] [--staged] [--worktree] [--] <pathspec>...
12+
git restore [<options>] [--source=<tree>] [--staged] [--worktree] --pathspec-from-file=<file> [--pathspec-file-nul]
13+
git restore (-p|--patch) [<options>] [--source=<tree>] [--staged] [--worktree] [--] [<pathspec>...]
1214

1315
DESCRIPTION
1416
-----------

Documentation-ja/git-send-email.adoc

Lines changed: 4 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -9,7 +9,10 @@ git-send-email - パッチの集まりを電子メールとして送信します
99
SYNOPSIS
1010
--------
1111
[synopsis]
12-
'git send-email' [<options>] (<file>|<directory>)... 'git send-email' [<options>] <format-patch-options> 'git send-email' --dump-aliases 'git send-email' --translate-aliases
12+
'git send-email' [<options>] (<file>|<directory>)...
13+
'git send-email' [<options>] <format-patch-options>
14+
'git send-email' --dump-aliases
15+
'git send-email' --translate-aliases
1316

1417

1518
DESCRIPTION

Documentation-ja/git-stripspace.adoc

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -9,7 +9,8 @@ git-stripspace - 不要な空白(whitespace)を削除します
99
SYNOPSIS
1010
--------
1111
[synopsis]
12-
'git stripspace' [-s | --strip-comments] 'git stripspace' [-c | --comment-lines]
12+
'git stripspace' [-s | --strip-comments]
13+
'git stripspace' [-c | --comment-lines]
1314

1415
DESCRIPTION
1516
-----------

0 commit comments

Comments
 (0)