]> git.ipfire.org Git - thirdparty/git.git/blame - Documentation/git-update-ref.txt
Merge branch 'dk/raise-core-deltabasecachelimit'
[thirdparty/git.git] / Documentation / git-update-ref.txt
CommitLineData
12905637
JH
1git-update-ref(1)
2=================
3
4NAME
5----
c3f0baac 6git-update-ref - Update the object name stored in a ref safely
12905637
JH
7
8SYNOPSIS
9--------
7791a1d9 10[verse]
c750ba95 11'git update-ref' [-m <reason>] (-d <ref> [<oldvalue>] | [--no-deref] <ref> <newvalue> [<oldvalue>] | --stdin [-z])
12905637
JH
12
13DESCRIPTION
14-----------
15Given two arguments, stores the <newvalue> in the <ref>, possibly
b1889c36 16dereferencing the symbolic refs. E.g. `git update-ref HEAD
12905637
JH
17<newvalue>` updates the current branch head to the new object.
18
19Given three arguments, stores the <newvalue> in the <ref>,
20possibly dereferencing the symbolic refs, after verifying that
21the current value of the <ref> matches <oldvalue>.
b1889c36 22E.g. `git update-ref refs/heads/master <newvalue> <oldvalue>`
12905637 23updates the master branch head to <newvalue> only if its current
ac5409e4
JH
24value is <oldvalue>. You can specify 40 "0" or an empty string
25as <oldvalue> to make sure that the ref you are creating does
26not exist.
12905637
JH
27
28It also allows a "ref" file to be a symbolic pointer to another
29ref file by starting with the four-byte header sequence of
30"ref:".
31
32More importantly, it allows the update of a ref file to follow
33these symbolic pointers, whether they are symlinks or these
34"regular file symbolic refs". It follows *real* symlinks only
35if they start with "refs/": otherwise it will just try to read
36them and update them as a regular file (i.e. it will allow the
37filesystem to follow them, but will overwrite such a symlink to
38somewhere else with a regular filename).
39
68db31cc
SV
40If --no-deref is given, <ref> itself is overwritten, rather than
41the result of following the symbolic pointers.
42
12905637
JH
43In general, using
44
b1889c36 45 git update-ref HEAD "$head"
12905637
JH
46
47should be a _lot_ safer than doing
48
49 echo "$head" > "$GIT_DIR/HEAD"
50
51both from a symlink following standpoint *and* an error checking
52standpoint. The "refs/" rule for symlinks means that symlinks
53that point to "outside" the tree are safe: they'll be followed
54for reading but not for writing (so we'll never write through a
55ref symlink to some other tree, if you have copied a whole
56archive by creating a symlink tree).
57
ac5409e4
JH
58With `-d` flag, it deletes the named <ref> after verifying it
59still contains <oldvalue>.
60
c750ba95
BK
61With `--stdin`, update-ref reads instructions from standard input and
62performs all modifications together. Specify commands of the form:
63
64 update SP <ref> SP <newvalue> [SP <oldvalue>] LF
65 create SP <ref> SP <newvalue> LF
66 delete SP <ref> [SP <oldvalue>] LF
67 verify SP <ref> [SP <oldvalue>] LF
68 option SP <opt> LF
69
70Quote fields containing whitespace as if they were strings in C source
1fbd5049
MH
71code; i.e., surrounded by double-quotes and with backslash escapes.
72Use 40 "0" characters or the empty string to specify a zero value. To
73specify a missing value, omit the value and its preceding SP entirely.
74
75Alternatively, use `-z` to specify in NUL-terminated format, without
76quoting:
c750ba95
BK
77
78 update SP <ref> NUL <newvalue> NUL [<oldvalue>] NUL
79 create SP <ref> NUL <newvalue> NUL
80 delete SP <ref> NUL [<oldvalue>] NUL
81 verify SP <ref> NUL [<oldvalue>] NUL
82 option SP <opt> NUL
83
1fbd5049
MH
84In this format, use 40 "0" to specify a zero value, and use the empty
85string to specify a missing value.
86
87In either format, values can be specified in any form that Git
88recognizes as an object name. Commands in any other format or a
89repeated <ref> produce an error. Command meanings are:
c750ba95
BK
90
91update::
92 Set <ref> to <newvalue> after verifying <oldvalue>, if given.
93 Specify a zero <newvalue> to ensure the ref does not exist
94 after the update and/or a zero <oldvalue> to make sure the
95 ref does not exist before the update.
96
97create::
98 Create <ref> with <newvalue> after verifying it does not
99 exist. The given <newvalue> may not be zero.
100
101delete::
102 Delete <ref> after verifying it exists with <oldvalue>, if
103 given. If given, <oldvalue> may not be zero.
104
105verify::
106 Verify <ref> against <oldvalue> but do not change it. If
107 <oldvalue> zero or missing, the ref must not exist.
108
109option::
110 Modify behavior of the next command naming a <ref>.
111 The only valid option is `no-deref` to avoid dereferencing
112 a symbolic ref.
113
c750ba95
BK
114If all <ref>s can be locked with matching <oldvalue>s
115simultaneously, all modifications are performed. Otherwise, no
116modifications are performed. Note that while each individual
117<ref> is updated or deleted atomically, a concurrent reader may
118still see a subset of the modifications.
ac5409e4 119
6de08ae6
SP
120Logging Updates
121---------------
cd8e3711
BW
122If config parameter "core.logAllRefUpdates" is true and the ref is one under
123"refs/heads/", "refs/remotes/", "refs/notes/", or the symbolic ref HEAD; or
124the file "$GIT_DIR/logs/<ref>" exists then `git update-ref` will append
6de08ae6
SP
125a line to the log file "$GIT_DIR/logs/<ref>" (dereferencing all
126symbolic refs before creating the log name) describing the change
127in ref value. Log lines are formatted as:
128
129 . oldsha1 SP newsha1 SP committer LF
130+
131Where "oldsha1" is the 40 character hexadecimal value previously
132stored in <ref>, "newsha1" is the 40 character hexadecimal value of
133<newvalue> and "committer" is the committer's name, email address
48a8c26c 134and date in the standard Git committer ident format.
6de08ae6
SP
135
136Optionally with -m:
137
138 . oldsha1 SP newsha1 SP committer TAB message LF
139+
140Where all fields are as described above and "message" is the
141value supplied to the -m option.
142
143An update will fail (without changing <ref>) if the current user is
144unable to create a new log file, append to the existing log file
145or does not have committer information available.
146
12905637
JH
147GIT
148---
9e1f0a85 149Part of the linkgit:git[1] suite