SYNOPSIS
gitpatch-id
[--stable
|--unstable
|--verbatim
]
DESCRIPTION
標準入力からパッチを読み取り、そのパッチIDを計算します。
「パッチID」は、パッチに関連付けられたファイル差分のSHA-1の合計に過ぎず、行番号は無視されます。そのため、「適度に安定」していますが、同時に適度に一意です。つまり、同じ「パッチID」を持つ2つのパッチは、ほぼ同じものであることが保証されています。
このコマンドの主な利用シーンは、 重複している可能性のあるコミットを探すことです。
git
diff-tree
出力を処理する場合、パッチの前にコミットのオブジェクト名が付いているという事実を利用して、2つの40バイトの16進文字列を出力します。最初の文字列はパッチIDで、2番目の文字列はコミットIDです。これを使用して、パッチIDからコミットIDへのマッピングを作成できます。
OPTIONS
-
--verbatim
-
Calculate the patch-id of the input as it is given, do not strip any whitespace.
This is the default if patchid.verbatim is true.
-
--stable
-
Use a "stable" sum of hashes as the patch ID. With this option:
-
Reordering file diffs that make up a patch does not affect the ID. In particular, two patches produced by comparing the same two trees with two different settings for "-O<orderfile>" result in the same patch ID signature, thereby allowing the computed result to be used as a key to index some meta-information about the change between the two trees;
-
結果として、 "-O<orderfile>" を使用せずに取得されたdiff出力で使用された場合でも、 git 1.9 以前で生成された値、または「unstable」ハッシュ(以下
--unstable
を参照)が構成されたときに生成された値とは異なります。これにより、そのような「不安定な」または過去のパッチIDを格納している既存のデータベースが使用できなくなります。 -
パッチ内の空白(whitespace)はすべて無視され、 ID には影響しません。
patchid.stable が true に設定されている場合は、こちらがデフォルトになります。
-
-
--unstable
-
Use an "unstable" hash as the patch ID. With this option, the result produced is compatible with the patch-id value produced by git 1.9 and older and whitespace is ignored. Users with pre-existing databases storing patch-ids produced by git 1.9 and older (who do not deal with reordered patches) may want to use this option.
This is the default.
GIT
Part of the git(1) suite