SYNOPSIS
'git replace' [-f] <object> <replacement>
'git replace' [-f] --edit <object>
'git replace' [-f] --graft <commit> [<parent>...]
'git replace' [-f] --convert-graft-file
'git replace' -d <object>...
'git replace' [--format=<format>] [-l [<pattern>]]
DESCRIPTION
refs/replace/
名前空間に replace
参照を追加します。
replace
参照の名前は、置き換えられるオブジェクトのSHA-1です。 replace
参照の内容は、置き換えるオブジェクトのSHA-1です。
置き換えられるオブジェクトと置き換えるオブジェクトは同じタイプである必要があります。 この制限は、 -f
を使用して迂回(bypass)できます。
-f
が指定されていない限り、 replace
参照はまだ存在していてはなりません。
置換されるオブジェクトと置換するオブジェクトに他の制限はありません。マージコミットは非マージコミットに置き換えることができ、その逆も可能です。
置換する参照は、デフォルトでは、到達可能性トラバーサル(剪定(prune)とパックと転送とfsck)実行するコマンドを除くすべてのGitコマンドで使用されます。
It is possible to disable the use of replacement references for any command using the --no-replace-objects
option just after git.
たとえば、 コミット foo
がコミット bar
に置き換えられた場合:
$ git --no-replace-objects cat-file commit foo
上記は、コミット foo
に関する情報を表示します。
$ git cat-file commit foo
これはコミット bar
に関する情報を表示します。
GIT_NO_REPLACE_OBJECTS
環境変数は、 --no-replace-objects
オプションと同じ効果を達成するように設定できます。
OPTIONS
-
-f
-
--force
-
If an existing replace ref for the same object exists, it will be overwritten (instead of failing).
-
-d
-
--delete
-
Delete existing replace refs for the given objects.
-
--edit
<object> -
Edit an object’s content interactively. The existing content for <object> is pretty-printed into a temporary file, an editor is launched on the file, and the result is parsed to create a new object of the same type as <object>. A replacement ref is then created to replace <object> with the newly created object. See git-var(1) for details about how the editor will be chosen.
-
--raw
-
When editing, provide the raw object contents rather than pretty-printed ones. Currently this only affects trees, which will be shown in their binary form. This is harder to work with, but can help when repairing a tree that is so corrupted it cannot be pretty-printed. Note that you may need to configure your editor to cleanly read and write binary data.
-
--graft
<commit> [<parent>...] -
Create a graft commit. A new commit is created with the same content as <commit> except that its parents will be [<parent>…] instead of <commit>'s parents. A replacement ref is then created to replace <commit> with the newly created commit. Use
--convert-graft-file
to convert a$GIT_DIR/info/grafts
file and use replace refs instead. -
--convert-graft-file
-
Creates graft commits for all entries in
$GIT_DIR/info/grafts
and deletes that file upon success. The purpose is to help users with transitioning off of the now-deprecated graft file. -
-l
<pattern> -
--list
<pattern> -
List replace refs for objects that match the given pattern (or all if no pattern is given). Typing "git replace" without arguments, also lists all replace refs.
-
--format=
<format> -
When listing, use the specified <format>, which can be one of short, medium and long. When omitted, the format defaults to short.
FORMATS
The following formats are available:
-
short
: <replaced-sha1> -
medium
: <replaced-sha1> → <replacement-sha1> -
long
: <replaced-sha1> (<replaced-type>) → <replacement-sha1> (<replacement-type>)
CREATING REPLACEMENT OBJECTS
git-hash-object(1) と git-rebase(1) と git-filter-repo は、他のgitコマンドの中でも特に 既存のオブジェクトから置換オブジェクトを作成するために使用されます。 --edit
オプションを git replace と一緒に使用して、既存のオブジェクトを編集することで置換オブジェクトを作成することもできます。
コミットの文字列の一部である多くの、ブロブまたはツリーまたはコミットを置き換える場合は、コミットの置換文字列を作成してから、コミットのターゲット文字列の先端にあるコミットのみを、コミットの置換文字列の先端にあるコミットに置き換えることができます。
BUGS
置き換えられたブロブまたはツリーをそれらを置き換えるものと比較すると、正しく機能しません。 また、 git
reset
--hard
を使用して置換されたコミットに戻ると、ブランチは置換されたコミットではなく置換されたコミットに移動します。
保留中のオブジェクトに関連する「git rev-list」を使用すると、他の問題が発生する可能性があります。
SEE ALSO
GIT
Part of the git(1) suite