2 .\" Title: git-check-ref-format
3 .\" Author: [FIXME: author] [see http://www.docbook.org/tdg5/en/html/author]
4 .\" Generator: DocBook XSL Stylesheets v1.79.2 <http://docbook.sf.net/>
7 .\" Source: Git 2.47.0.rc0.18.ge9356ba3ea
10 .TH "GIT\-CHECK\-REF\-FORMAT" "1" "2024-09-30" "Git 2\&.47\&.0\&.rc0\&.18\&.ge" "Git Manual"
11 .\" -----------------------------------------------------------------
12 .\" * Define some portability stuff
13 .\" -----------------------------------------------------------------
14 .\" ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
15 .\" http://bugs.debian.org/507673
16 .\" http://lists.gnu.org/archive/html/groff/2009-02/msg00013.html
17 .\" ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
20 .\" -----------------------------------------------------------------
21 .\" * set default formatting
22 .\" -----------------------------------------------------------------
23 .\" disable hyphenation
25 .\" disable justification (adjust text to left margin only)
27 .\" -----------------------------------------------------------------
28 .\" * MAIN CONTENT STARTS HERE *
29 .\" -----------------------------------------------------------------
31 git-check-ref-format \- Ensures that a reference name is well formed
35 \fIgit check\-ref\-format\fR [\-\-normalize]
36 [\-\-[no\-]allow\-onelevel] [\-\-refspec\-pattern]
38 \fIgit check\-ref\-format\fR \-\-branch <branchname\-shorthand>
42 Checks if a given \fIrefname\fR is acceptable, and exits with a non\-zero status if it is not\&.
44 A reference is used in Git to specify branches and tags\&. A branch head is stored in the \fBrefs/heads\fR hierarchy, while a tag is stored in the \fBrefs/tags\fR hierarchy of the ref namespace (typically in \fB$GIT_DIR/refs/heads\fR and \fB$GIT_DIR/refs/tags\fR directories or, as entries in file \fB$GIT_DIR/packed\-refs\fR if refs are packed by \fBgit gc\fR)\&.
46 Git imposes the following rules on how references are named:
56 They can include slash
58 for hierarchical (directory) grouping, but no slash\-separated component can begin with a dot
60 or end with the sequence
72 They must contain at least one
73 \fB/\fR\&. This enforces the presence of a category like
76 etc\&. but the actual names are not restricted\&. If the
77 \fB\-\-allow\-onelevel\fR
78 option is used, this rule is waived\&.
89 They cannot have two consecutive dots
102 They cannot have ASCII control characters (i\&.e\&. bytes whose values are lower than \e040, or \e177
103 \fBDEL\fR), space, tilde
118 They cannot have question\-mark
120 \fB*\fR, or open bracket
123 \fB\-\-refspec\-pattern\fR
124 option below for an exception to this rule\&.
135 They cannot begin or end with a slash
137 or contain multiple consecutive slashes (see the
139 option below for an exception to this rule)\&.
150 They cannot end with a dot
162 They cannot contain a sequence
174 They cannot be the single character
186 They cannot contain a
190 These rules make it easy for shell script based tools to parse reference names, pathname expansion by the shell when a reference name is used unquoted (by mistake), and also avoid ambiguities in certain reference name expressions (see \fBgitrevisions\fR(7)):
203 \fBref1\&.\&.ref2\fR, and in some contexts this notation means
223 are used to introduce the postfix
242 to mean "use srcref\(cqs value and store it in dstref" in fetch and push operations\&. It may also be used to select a specific object such as with \*(Aqgit cat\-file\*(Aq: "git cat\-file blob v1\&.3\&.3:refs\&.c"\&.
255 is used as a notation to access a reflog entry\&.
258 With the \fB\-\-branch\fR option, the command takes a name and checks if it can be used as a valid branch name (e\&.g\&. when creating a new branch)\&. But be cautious when using the previous checkout syntax that may refer to a detached HEAD state\&. The rule \fBgit check\-ref\-format \-\-branch $name\fR implements may be stricter than what \fBgit check\-ref\-format refs/heads/$name\fR says (e\&.g\&. a dash may appear at the beginning of a ref component, but it is explicitly forbidden at the beginning of a branch name)\&. When run with the \fB\-\-branch\fR option in a repository, the input is first expanded for the \(lqprevious checkout syntax\(rq \fB@{\-n}\fR\&. For example, \fB@{\-1}\fR is a way to refer the last thing that was checked out using "git switch" or "git checkout" operation\&. This option should be used by porcelains to accept this syntax anywhere a branch name is expected, so they can act as if you typed the branch name\&. As an exception note that, the \(lqprevious checkout operation\(rq might result in a commit object name when the N\-th last thing checked out was not a branch\&.
261 \-\-[no\-]allow\-onelevel
263 Controls whether one\-level refnames are accepted (i\&.e\&., refnames that do not contain multiple
264 \fB/\fR\-separated components)\&. The default is
265 \fB\-\-no\-allow\-onelevel\fR\&.
270 Interpret <refname> as a reference name pattern for a refspec (as used with remote repositories)\&. If this option is enabled, <refname> is allowed to contain a single
272 in the refspec (e\&.g\&.,
277 \fBfoo/bar*/baz*\fR)\&.
284 by removing any leading slash (\fB/\fR) characters and collapsing runs of adjacent slashes between name components into a single slash\&. If the normalized refname is valid then print it to standard output and exit with a status of 0, otherwise exit with a non\-zero status\&. (\fB\-\-print\fR
285 is a deprecated way to spell
286 \fB\-\-normalize\fR\&.)
298 Print the name of the previous thing checked out:
304 $ git check\-ref\-format \-\-branch @{\-1}
319 Determine the reference name to use for a new branch:
325 $ ref=$(git check\-ref\-format \-\-normalize "refs/heads/$newbranch")||
326 { echo "we do not like \*(Aq$newbranch\*(Aq as a branch name\&." >&2 ; exit 1 ; }
334 Part of the \fBgit\fR(1) suite