Skip to content

Commit 4454be7

Browse files
committed
initial save point for git restore.
JP:同一ファイルは git restore するために使う最初のセーブポイント。
1 parent c4b15c5 commit 4454be7

Some content is hidden

Large Commits have some content hidden by default. Use the searchbox below for content that may be hidden.

62 files changed

+1725
-1789
lines changed

Documentation-ja/asciidoc.conf

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -22,8 +22,8 @@ apostrophe='
2222
backtick=`
2323
litdd=--
2424
manmanual=Git Manual
25-
mansource=Git 2.38.0.rc1.11285.ge71b228caa.dirty
26-
revdate=2025-11-14
25+
mansource=Git 2.38.0.rc1.11288.gc4b15c5299.dirty
26+
revdate=2025-11-15
2727

2828
ifdef::doctype-book[]
2929
[titles]
Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
`-U<n>`::
22
`--unified=<n>`::
3-
Generate diffs with _<n>_ lines of context. Defaults to `diff.context` or 3 if the config option is unset.
3+
コンテキストの「<n>行」の diff を生成します。 デフォルトは `diff.context` 、 または構成オプションが設定されていない場合は 3 です。
44

55
`--inter-hunk-context=<n>`::
6-
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.
6+
指定の「<number>行」までの diff ハンク間のコンテキストを表示し、 それによって互いに近いハンクを融合します。 デフォルトは `diff.interHunkContext` 、 または構成オプションが設定されていない場合は 0 です。

Documentation-ja/everyday.adoco

Lines changed: 9 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,9 @@
1+
Everyday Git With 20 Commands Or So
2+
===================================
3+
4+
This document has been moved to linkgit:giteveryday[7].
5+
6+
Please let the owners of the referring site know so that they can update the
7+
link you clicked to get here.
8+
9+
Thanks.
Lines changed: 18 additions & 18 deletions
Original file line numberDiff line numberDiff line change
@@ -1,55 +1,55 @@
11
`<pattern>...`::
2-
If one or more _<pattern>_ parameters are given, only refs are shown that match against at least one pattern, either using `fnmatch`(3) or literally, in the latter case matching completely or from the beginning up to a slash.
2+
1つ以上のパターン(<pattern>)が指定されている場合、 少なくとも1つのパターンに一致する参照のみが表示されます。 `fnmatch`(3) を使用するか、 文字通り(lietrally)に書くかです。 文字通りに書いた場合、 完全に一致するか、 先頭からスラッシュ(`/`)まで一致するかです。
33

44
`--stdin`::
5-
The list of patterns is read from standard input instead of from the argument list.
5+
パターンのリストは引数リストからではなく標準入力から読み取られます。
66

77
`--count=<count>`::
8-
Stop after showing _<count>_ refs.
8+
<count> 個の参照を表示して停止(stop)します。
99

1010
`--sort=<key>`::
11-
Sort on the field name _<key>_. Prefix `-` to sort in descending order of the value. When unspecified, `refname` is used. You may use the `--sort=<key>` option multiple times, in which case the last key becomes the primary key.
11+
並べ替えるフィールド名を <key> とします。 プレフィックス `-` を使用すると、 値の降順で並べ替えます。 並べ替えるフィールド名を指定しない場合 `refname` が使用されます。 `--sort=<key>` オプションは複数回使用できます。 その場合、 最後のキーが主キー(primary key)になります。
1212

1313
`--format[=<format>]`::
14-
A string that interpolates `%(fieldname)` from a ref being shown and the object it points at. In addition, the string literal `%%` renders as `%` and `%xx` - where `xx` are hex digits - renders as the character with hex code `xx`. For example, `%00` interpolates to `\0` (_NUL_), `%09` to `\t` (_TAB_), and `%0a` to `\n` (_LF_).
14+
表示されている参照とそれが指すオブジェクトを `%(フィールド名)` によって差し込みする書式文字列。 更に、 リテラル文字列の `%%` `%` とレンダリングされ、 `%xx` は16進数 xx の値のキャラクター・コードをレンダリングします。 たとえば `%00` `\0`(NUL)、 `%09` `\t`(TAB)、 `%0a` `\n`(LF)を差し込みます。
1515

16-
When unspecified, _<format>_ defaults to `%(objectname) SPC %(objecttype) TAB %(refname)`.
16+
指定無しの場合、 <format> のデフォルトは `%(objectname) SPC %(objecttype) TAB %(refname)` です。
1717

1818
`--color[=<when>]`::
19-
Respect any colors specified in the `--format` option. The _<when__ field must be one of `always`, `never`, or `auto` (if `<when>` is absent, behave as if `always` was given).
19+
`--format` オプションで指定された色を尊重します。 <when> フィールドは `always` または `never` または `auto` のいずれかでなければなりません(<when> の指定が無い場合は、 `always` が指定されたかのように動作します)。
2020

2121
`--shell`::
2222
`--perl`::
2323
`--python`::
2424
`--tcl`::
25-
If given, strings that substitute `%(fieldname)` placeholders are quoted as string literals suitable for the specified host language. This is meant to produce a scriptlet that can directly be "eval"ed.
25+
指定した場合、 `%(fieldname)` プレースホルダーを置き換える文字列は、指定のホストプログラム言語に適した文字列リテラルとしてクォートします。これは、直接「評価」(eval)できるスクリプトレットを作成することを目的としています。
2626

2727
`--points-at=<object>`::
28-
Only list refs which points at the given object.
28+
指定のオブジェクトを指す参照のみをリストします。
2929

3030
`--merged[=<object>]`::
31-
Only list refs whose tips are reachable from the specified commit (`HEAD` if not specified).
31+
指定のコミット(指定されていない場合は `HEAD`)から先端に到達できる参照のみをリストします。
3232

3333
`--no-merged[=<object>]`::
34-
Only list refs whose tips are not reachable from _<object>_(`HEAD` if not specified).
34+
<object> (指定されていない場合は `HEAD`)から先端に到達でき無い参照のみをリストします。
3535

3636
`--contains[=<object>]`::
37-
Only list refs which contain _<object>_(`HEAD` if not specified).
37+
<object> (指定されていない場合は `HEAD`)を含む参照のみをリストします。
3838

3939
`--no-contains[=<object>]`::
40-
Only list refs which don't contain _<object>_ (`HEAD` if not specified).
40+
<object> (指定されていない場合は `HEAD`)を含ま無い参照のみをリストします。
4141

4242
`--ignore-case`::
43-
Sorting and filtering refs are case insensitive.
43+
参照の並べ替え(sort)とフィルタリングでは英大文字小文字を区別しません。
4444

4545
`--omit-empty`::
46-
Do not print a newline after formatted refs where the format expands to the empty string.
46+
フォーマットが空の文字列に展開されるフォーマット済み参照の後に改行を出力しないでください。
4747

4848
`--exclude=<excluded-pattern>`::
49-
If one or more `--exclude` options are given, only refs which do not match any _<excluded-pattern>_ parameters are shown. Matching is done using the same rules as _<pattern>_ above.
49+
1つ以上の `--exclude` オプションが与えられている場合、 与えられた <excluded-pattern> パラメーター達とマッチし無い参照のみが表示されます。 マッチングは、 上記 の `<pattern>` と同じルールを使用して行われます。
5050

5151
`--include-root-refs`::
52-
List root refs (`HEAD` and pseudorefs) apart from regular refs.
52+
通常の参照以外のルート参照(root refs)(`HEAD` と疑似参照)をリストします。
5353

5454
`--start-after=<marker>`::
55-
Allows paginating the output by skipping references up to and including the specified marker. When paging, it should be noted that references may be deleted, modified or added between invocations. Output will only yield those references which follow the marker lexicographically. Output begins from the first reference that would come after the marker alphabetically. Cannot be used with `--sort=<key>` or `--stdin` options, or the _<pattern>_ argument(s) to limit the refs.
55+
出力のページネーションを可能にし、 指定されたマーカー(<marker>)(マーカー自身も含めて)までの参照をスキップします。 ページングを行う際、 参照は本コマンド実行中に削除または変更または追加される可能性があることに注意してください。 出力には、マーカーの辞書順(lexicographically)で後に続く参照のみが含まれます。 出力は、 マーカーよりアルファベット順(alphabetically)で次に来る最初の参照から始まります。 `--sort=<key>` オプションや `--stdin` オプション、 または参照を制限するための <pattern> 引数と併用することはできません。

Documentation-ja/git-add.html

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -860,15 +860,15 @@ <h2 id="_options">OPTIONS</h2>
860860
</dt>
861861
<dd>
862862
<p>
863-
Generate diffs with <em>&lt;n&gt;</em> lines of context. Defaults to <code>diff.context</code> or 3 if the config option is unset.
863+
コンテキストの「&lt;n&gt;行」の diff を生成します。 デフォルトは <code>diff.context</code> 、 または構成オプションが設定されていない場合は 3 です。
864864
</p>
865865
</dd>
866866
<dt class="hdlist1">
867867
<code>--inter-hunk-context=</code><em>&lt;n&gt;</em>
868868
</dt>
869869
<dd>
870870
<p>
871-
Show the context between diff hunks, up to the specified <em>&lt;number&gt;</em> of lines, thereby fusing hunks that are close to each other. Defaults to <code>diff.interHunkContext</code> or 0 if the config option is unset.
871+
指定の「&lt;number&gt;行」までの diff ハンク間のコンテキストを表示し、 それによって互いに近いハンクを融合します。 デフォルトは <code>diff.interHunkContext</code> 、 または構成オプションが設定されていない場合は 0 です。
872872
</p>
873873
</dd>
874874
<dt class="hdlist1">

Documentation-ja/git-annotate.html

Lines changed: 5 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -800,28 +800,28 @@ <h2 id="_options">OPTIONS</h2>
800800
<em>&lt;start&gt;</em><code>,</code><em>&lt;end&gt;</em> で指定の行範囲のみ、または正規表現関数名 <em>&lt;funcname&gt;</em> で指定の行範囲のみに注釈を付けます。複数回指定できます。範囲が重複するのは許されます。
801801
</p>
802802
<div class="paragraph"><p><em>&lt;start&gt;</em><em>&lt;end&gt;</em> はオプションです。 <code>-L</code> <em>&lt;start&gt;</em> または <code>-L</code> <em>&lt;start&gt;</em><code>,</code><em>&lt;start&gt;</em> からファイルの終わりまでの範囲です。 <code>-L</code> <code>,</code><em>&lt;end&gt;</em> は、ファイルの先頭から <em>&lt;end&gt;</em> までの範囲です。</p></div>
803-
<div class="paragraph"><p><em>&lt;start&gt;</em> and <em>&lt;end&gt;</em> can take one of these forms:</p></div>
803+
<div class="paragraph"><p><em>&lt;start&gt;</em> <em>&lt;end&gt;</em> は、以下のいずれかの形式です:</p></div>
804804
<div class="ulist"><ul>
805805
<li>
806806
<p>
807807
<em>&lt;number&gt;</em>
808808
</p>
809-
<div class="paragraph"><p>If <em>&lt;start&gt;</em> or <em>&lt;end&gt;</em> is a number, it specifies an absolute line number (lines count from 1).</p></div>
809+
<div class="paragraph"><p><em>&lt;start&gt;</em> または <em>&lt;end&gt;</em> が数値(number)の場合、 絶対行番号を指定します(行は1から数えます)。</p></div>
810810
</li>
811811
<li>
812812
<p>
813813
<code>/</code><em>&lt;regex&gt;</em><code>/</code>
814814
</p>
815-
<div class="paragraph"><p>This form will use the first line matching the given POSIX <em>&lt;regex&gt;</em>. If <em>&lt;start&gt;</em> is a regex, it will search from the end of the previous <code>-L</code> range, if any, otherwise from the start of file. If <em>&lt;start&gt;</em> is <code>^/</code><em>&lt;regex&gt;</em><code>/</code>, it will search from the start of file. If <em>&lt;end&gt;</em> is a regex, it will search starting at the line given by <em>&lt;start&gt;</em>.</p></div>
815+
<div class="paragraph"><p>この形式は、 指定のPOSIX正規表現(<em>&lt;regex&gt;</em>)にマッチする最初の行を使用します。 <em>&lt;start&gt;</em> が正規表現の場合、 前の <code>-L</code> 範囲の末尾から検索します。 それ以外の場合は、 ファイルの先頭から検索します。 <em>&lt;start&gt;</em> <code>^/</code><em>&lt;regex&gt;</em><code>/</code> の場合、 ファイルの先頭から検索します。 <em>&lt;end&gt;</em> が正規表現の場合、 <em>&lt;start&gt;</em> で指定された行から検索開始します。</p></div>
816816
</li>
817817
<li>
818818
<p>
819819
<code>+</code><em>&lt;offset&gt;</em> or <code>-</code><em>&lt;offset&gt;</em>
820820
</p>
821-
<div class="paragraph"><p>This is only valid for <em>&lt;end&gt;</em> and will specify a number of lines before or after the line given by <em>&lt;start&gt;</em>.</p></div>
821+
<div class="paragraph"><p>これは <em>&lt;end&gt;</em> に対してのみ有効で、 <em>&lt;start&gt;</em> で指定された行の前後の行数を指定します。</p></div>
822822
</li>
823823
</ul></div>
824-
<div class="paragraph"><p>If <code>:</code><em>&lt;funcname&gt;</em> is given in place of <em>&lt;start&gt;</em> and <em>&lt;end&gt;</em>, it is a regular expression that denotes the range from the first funcname line that matches <em>&lt;funcname&gt;</em>, up to the next funcname line. <code>:</code><em>&lt;funcname&gt;</em> searches from the end of the previous <code>-L</code> range, if any, otherwise from the start of file. <code>^:</code><em>&lt;funcname&gt;</em> searches from the start of file. The function names are determined in the same way as <code>git</code> <code>diff</code> works out patch hunk headers (see <em>Defining a custom hunk-header</em> in <a href="gitattributes.html">gitattributes(5)</a>).</p></div>
824+
<div class="paragraph"><p><em>&lt;start&gt;</em> <em>&lt;end&gt;</em> の代わりに :&lt;funcname&gt; が指定されている場合、これは <em>&lt;funcname&gt;</em> に一致する最初の関数名行から次の関数名行までの範囲を示す正規表現です。 :&lt;funcname&gt; は、前の <code>-L</code> 範囲の末尾から検索します。 それ以外の場合は、 ファイルの先頭から検索します。 <code>^:</code><em>&lt;funcname&gt;</em> はファイルの先頭から検索します。関数名は、 <code>git</code> <code>diff</code> がパッチ・ハンク・ヘッダーを処理するのと同じ方法で決定されます(<a href="gitattributes.html">gitattributes(5)</a> の「Defining a custom hunk-header」参照)。</p></div>
825825
</dd>
826826
<dt class="hdlist1">
827827
<code>-l</code>

Documentation-ja/git-blame.html

Lines changed: 5 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -813,28 +813,28 @@ <h2 id="_options">OPTIONS</h2>
813813
<em>&lt;start&gt;</em><code>,</code><em>&lt;end&gt;</em> で指定の行範囲のみ、または正規表現関数名 <em>&lt;funcname&gt;</em> で指定の行範囲のみに注釈を付けます。複数回指定できます。範囲が重複するのは許されます。
814814
</p>
815815
<div class="paragraph"><p><em>&lt;start&gt;</em><em>&lt;end&gt;</em> はオプションです。 <code>-L</code> <em>&lt;start&gt;</em> または <code>-L</code> <em>&lt;start&gt;</em><code>,</code><em>&lt;start&gt;</em> からファイルの終わりまでの範囲です。 <code>-L</code> <code>,</code><em>&lt;end&gt;</em> は、ファイルの先頭から <em>&lt;end&gt;</em> までの範囲です。</p></div>
816-
<div class="paragraph"><p><em>&lt;start&gt;</em> and <em>&lt;end&gt;</em> can take one of these forms:</p></div>
816+
<div class="paragraph"><p><em>&lt;start&gt;</em> <em>&lt;end&gt;</em> は、以下のいずれかの形式です:</p></div>
817817
<div class="ulist"><ul>
818818
<li>
819819
<p>
820820
<em>&lt;number&gt;</em>
821821
</p>
822-
<div class="paragraph"><p>If <em>&lt;start&gt;</em> or <em>&lt;end&gt;</em> is a number, it specifies an absolute line number (lines count from 1).</p></div>
822+
<div class="paragraph"><p><em>&lt;start&gt;</em> または <em>&lt;end&gt;</em> が数値(number)の場合、 絶対行番号を指定します(行は1から数えます)。</p></div>
823823
</li>
824824
<li>
825825
<p>
826826
<code>/</code><em>&lt;regex&gt;</em><code>/</code>
827827
</p>
828-
<div class="paragraph"><p>This form will use the first line matching the given POSIX <em>&lt;regex&gt;</em>. If <em>&lt;start&gt;</em> is a regex, it will search from the end of the previous <code>-L</code> range, if any, otherwise from the start of file. If <em>&lt;start&gt;</em> is <code>^/</code><em>&lt;regex&gt;</em><code>/</code>, it will search from the start of file. If <em>&lt;end&gt;</em> is a regex, it will search starting at the line given by <em>&lt;start&gt;</em>.</p></div>
828+
<div class="paragraph"><p>この形式は、 指定のPOSIX正規表現(<em>&lt;regex&gt;</em>)にマッチする最初の行を使用します。 <em>&lt;start&gt;</em> が正規表現の場合、 前の <code>-L</code> 範囲の末尾から検索します。 それ以外の場合は、 ファイルの先頭から検索します。 <em>&lt;start&gt;</em> <code>^/</code><em>&lt;regex&gt;</em><code>/</code> の場合、 ファイルの先頭から検索します。 <em>&lt;end&gt;</em> が正規表現の場合、 <em>&lt;start&gt;</em> で指定された行から検索開始します。</p></div>
829829
</li>
830830
<li>
831831
<p>
832832
<code>+</code><em>&lt;offset&gt;</em> or <code>-</code><em>&lt;offset&gt;</em>
833833
</p>
834-
<div class="paragraph"><p>This is only valid for <em>&lt;end&gt;</em> and will specify a number of lines before or after the line given by <em>&lt;start&gt;</em>.</p></div>
834+
<div class="paragraph"><p>これは <em>&lt;end&gt;</em> に対してのみ有効で、 <em>&lt;start&gt;</em> で指定された行の前後の行数を指定します。</p></div>
835835
</li>
836836
</ul></div>
837-
<div class="paragraph"><p>If <code>:</code><em>&lt;funcname&gt;</em> is given in place of <em>&lt;start&gt;</em> and <em>&lt;end&gt;</em>, it is a regular expression that denotes the range from the first funcname line that matches <em>&lt;funcname&gt;</em>, up to the next funcname line. <code>:</code><em>&lt;funcname&gt;</em> searches from the end of the previous <code>-L</code> range, if any, otherwise from the start of file. <code>^:</code><em>&lt;funcname&gt;</em> searches from the start of file. The function names are determined in the same way as <code>git</code> <code>diff</code> works out patch hunk headers (see <em>Defining a custom hunk-header</em> in <a href="gitattributes.html">gitattributes(5)</a>).</p></div>
837+
<div class="paragraph"><p><em>&lt;start&gt;</em> <em>&lt;end&gt;</em> の代わりに :&lt;funcname&gt; が指定されている場合、これは <em>&lt;funcname&gt;</em> に一致する最初の関数名行から次の関数名行までの範囲を示す正規表現です。 :&lt;funcname&gt; は、前の <code>-L</code> 範囲の末尾から検索します。 それ以外の場合は、 ファイルの先頭から検索します。 <code>^:</code><em>&lt;funcname&gt;</em> はファイルの先頭から検索します。関数名は、 <code>git</code> <code>diff</code> がパッチ・ハンク・ヘッダーを処理するのと同じ方法で決定されます(<a href="gitattributes.html">gitattributes(5)</a> の「Defining a custom hunk-header」参照)。</p></div>
838838
</dd>
839839
<dt class="hdlist1">
840840
<code>-l</code>

0 commit comments

Comments
 (0)