ed1d730a0c54d8486028cf3dd9f43fbbfcb93fb4
[git.git] / man1 / git-update-ref.1
1 .\"Generated by db2man.xsl. Don't modify this, modify the source.
2 .de Sh \" Subsection
3 .br
4 .if t .Sp
5 .ne 5
6 .PP
7 \fB\\$1\fR
8 .PP
9 ..
10 .de Sp \" Vertical space (when we can't use .PP)
11 .if t .sp .5v
12 .if n .sp
13 ..
14 .de Ip \" List item
15 .br
16 .ie \\n(.$>=3 .ne \\$3
17 .el .ne 3
18 .IP "\\$1" \\$2
19 ..
20 .TH "GIT-UPDATE-REF" 1 "" "" ""
21 .SH NAME
22 git-update-ref \- update the object name stored in a ref safely
23 .SH "SYNOPSIS"
24
25
26 git\-update\-ref <ref> <newvalue> [<oldvalue>]
27
28 .SH "DESCRIPTION"
29
30
31 Given two arguments, stores the <newvalue> in the <ref>, possibly dereferencing the symbolic refs\&. E\&.g\&. git\-update\-ref HEAD <newvalue> updates the current branch head to the new object\&.
32
33
34 Given three arguments, stores the <newvalue> in the <ref>, possibly dereferencing the symbolic refs, after verifying that the current value of the <ref> matches <oldvalue>\&. E\&.g\&. git\-update\-ref refs/heads/master <newvalue> <oldvalue> updates the master branch head to <newvalue> only if its current value is <oldvalue>\&.
35
36
37 It also allows a "ref" file to be a symbolic pointer to another ref file by starting with the four\-byte header sequence of "ref:"\&.
38
39
40 More importantly, it allows the update of a ref file to follow these symbolic pointers, whether they are symlinks or these "regular file symbolic refs"\&. It follows real symlinks only if they start with "refs/": otherwise it will just try to read them and update them as a regular file (i\&.e\&. it will allow the filesystem to follow them, but will overwrite such a symlink to somewhere else with a regular filename)\&.
41
42
43 In general, using
44
45 .nf
46 git\-update\-ref HEAD "$head"
47 .fi
48
49
50 should be a _lot_ safer than doing
51
52 .nf
53 echo "$head" > "$GIT_DIR/HEAD"
54 .fi
55
56
57 both from a symlink following standpoint and an error checking standpoint\&. The "refs/" rule for symlinks means that symlinks that point to "outside" the tree are safe: they'll be followed for reading but not for writing (so we'll never write through a ref symlink to some other tree, if you have copied a whole archive by creating a symlink tree)\&.
58
59 .SH "AUTHOR"
60
61
62 Written by Linus Torvalds <torvalds@osdl\&.org>\&.
63
64 .SH "GIT"
65
66
67 Part of the \fBgit\fR(7) suite
68