Git 2.0.1
[git.git] / Documentation / git-replace.txt
blob0a02f70657776bc5d862add34f466b4fe98f6e35
1 git-replace(1)
2 ==============
4 NAME
5 ----
6 git-replace - Create, list, delete refs to replace objects
8 SYNOPSIS
9 --------
10 [verse]
11 'git replace' [-f] <object> <replacement>
12 'git replace' -d <object>...
13 'git replace' [--format=<format>] [-l [<pattern>]]
15 DESCRIPTION
16 -----------
17 Adds a 'replace' reference in `refs/replace/` namespace.
19 The name of the 'replace' reference is the SHA-1 of the object that is
20 replaced. The content of the 'replace' reference is the SHA-1 of the
21 replacement object.
23 The replaced object and the replacement object must be of the same type.
24 This restriction can be bypassed using `-f`.
26 Unless `-f` is given, the 'replace' reference must not yet exist.
28 There is no other restriction on the replaced and replacement objects.
29 Merge commits can be replaced by non-merge commits and vice versa.
31 Replacement references will be used by default by all Git commands
32 except those doing reachability traversal (prune, pack transfer and
33 fsck).
35 It is possible to disable use of replacement references for any
36 command using the `--no-replace-objects` option just after 'git'.
38 For example if commit 'foo' has been replaced by commit 'bar':
40 ------------------------------------------------
41 $ git --no-replace-objects cat-file commit foo
42 ------------------------------------------------
44 shows information about commit 'foo', while:
46 ------------------------------------------------
47 $ git cat-file commit foo
48 ------------------------------------------------
50 shows information about commit 'bar'.
52 The 'GIT_NO_REPLACE_OBJECTS' environment variable can be set to
53 achieve the same effect as the `--no-replace-objects` option.
55 OPTIONS
56 -------
57 -f::
58 --force::
59         If an existing replace ref for the same object exists, it will
60         be overwritten (instead of failing).
62 -d::
63 --delete::
64         Delete existing replace refs for the given objects.
66 -l <pattern>::
67 --list <pattern>::
68         List replace refs for objects that match the given pattern (or
69         all if no pattern is given).
70         Typing "git replace" without arguments, also lists all replace
71         refs.
73 --format=<format>::
74         When listing, use the specified <format>, which can be one of
75         'short', 'medium' and 'long'. When omitted, the format
76         defaults to 'short'.
78 FORMATS
79 -------
81 The following format are available:
83 * 'short':
84         <replaced sha1>
85 * 'medium':
86         <replaced sha1> -> <replacement sha1>
87 * 'long':
88         <replaced sha1> (<replaced type>) -> <replacement sha1> (<replacement type>)
90 CREATING REPLACEMENT OBJECTS
91 ----------------------------
93 linkgit:git-filter-branch[1], linkgit:git-hash-object[1] and
94 linkgit:git-rebase[1], among other git commands, can be used to create
95 replacement objects from existing objects.
97 If you want to replace many blobs, trees or commits that are part of a
98 string of commits, you may just want to create a replacement string of
99 commits and then only replace the commit at the tip of the target
100 string of commits with the commit at the tip of the replacement string
101 of commits.
103 BUGS
104 ----
105 Comparing blobs or trees that have been replaced with those that
106 replace them will not work properly. And using `git reset --hard` to
107 go back to a replaced commit will move the branch to the replacement
108 commit instead of the replaced commit.
110 There may be other problems when using 'git rev-list' related to
111 pending objects.
113 SEE ALSO
114 --------
115 linkgit:git-hash-object[1]
116 linkgit:git-filter-branch[1]
117 linkgit:git-rebase[1]
118 linkgit:git-tag[1]
119 linkgit:git-branch[1]
120 linkgit:git[1]
124 Part of the linkgit:git[1] suite