Autogenerated manpages for v2.44.0-591-g8f758
[git-manpages.git] / man1 / git-reflog.1
blob0237d77eb703772f5c870e8a8aee402f6fee3dc5
1 '\" t
2 .\"     Title: git-reflog
3 .\"    Author: [FIXME: author] [see http://www.docbook.org/tdg5/en/html/author]
4 .\" Generator: DocBook XSL Stylesheets vsnapshot <http://docbook.sf.net/>
5 .\"      Date: 2024-04-12
6 .\"    Manual: Git Manual
7 .\"    Source: Git 2.44.0.591.g8f7582d995
8 .\"  Language: English
9 .\"
10 .TH "GIT\-REFLOG" "1" "2024\-04\-12" "Git 2\&.44\&.0\&.591\&.g8f7582" "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 .\" ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
18 .ie \n(.g .ds Aq \(aq
19 .el       .ds Aq '
20 .\" -----------------------------------------------------------------
21 .\" * set default formatting
22 .\" -----------------------------------------------------------------
23 .\" disable hyphenation
24 .nh
25 .\" disable justification (adjust text to left margin only)
26 .ad l
27 .\" -----------------------------------------------------------------
28 .\" * MAIN CONTENT STARTS HERE *
29 .\" -----------------------------------------------------------------
30 .SH "NAME"
31 git-reflog \- Manage reflog information
32 .SH "SYNOPSIS"
33 .sp
34 .nf
35 \fIgit reflog\fR [show] [<log\-options>] [<ref>]
36 \fIgit reflog list\fR
37 \fIgit reflog expire\fR [\-\-expire=<time>] [\-\-expire\-unreachable=<time>]
38         [\-\-rewrite] [\-\-updateref] [\-\-stale\-fix]
39         [\-\-dry\-run | \-n] [\-\-verbose] [\-\-all [\-\-single\-worktree] | <refs>\&...]
40 \fIgit reflog delete\fR [\-\-rewrite] [\-\-updateref]
41         [\-\-dry\-run | \-n] [\-\-verbose] <ref>@{<specifier>}\&...
42 \fIgit reflog exists\fR <ref>
43 .fi
44 .sp
45 .SH "DESCRIPTION"
46 .sp
47 This command manages the information recorded in the reflogs\&.
48 .sp
49 Reference logs, or "reflogs", record when the tips of branches and other references were updated in the local repository\&. Reflogs are useful in various Git commands, to specify the old value of a reference\&. For example, \fBHEAD@{2}\fR means "where HEAD used to be two moves ago", \fBmaster@{one\&.week\&.ago}\fR means "where master used to point to one week ago in this local repository", and so on\&. See \fBgitrevisions\fR(7) for more details\&.
50 .sp
51 The command takes various subcommands, and different options depending on the subcommand:
52 .sp
53 The "show" subcommand (which is also the default, in the absence of any subcommands) shows the log of the reference provided in the command\-line (or \fBHEAD\fR, by default)\&. The reflog covers all recent actions, and in addition the \fBHEAD\fR reflog records branch switching\&. \fBgit reflog show\fR is an alias for \fBgit log \-g \-\-abbrev\-commit \-\-pretty=oneline\fR; see \fBgit-log\fR(1) for more information\&.
54 .sp
55 The "list" subcommand lists all refs which have a corresponding reflog\&.
56 .sp
57 The "expire" subcommand prunes older reflog entries\&. Entries older than \fBexpire\fR time, or entries older than \fBexpire\-unreachable\fR time and not reachable from the current tip, are removed from the reflog\&. This is typically not used directly by end users \(em instead, see \fBgit-gc\fR(1)\&.
58 .sp
59 The "delete" subcommand deletes single entries from the reflog\&. Its argument must be an \fIexact\fR entry (e\&.g\&. "\fBgit reflog delete master@{2}\fR")\&. This subcommand is also typically not used directly by end users\&.
60 .sp
61 The "exists" subcommand checks whether a ref has a reflog\&. It exits with zero status if the reflog exists, and non\-zero status if it does not\&.
62 .SH "OPTIONS"
63 .SS "Options for \fBshow\fR"
64 .sp
65 \fBgit reflog show\fR accepts any of the options accepted by \fBgit log\fR\&.
66 .SS "Options for \fBexpire\fR"
67 .PP
68 \-\-all
69 .RS 4
70 Process the reflogs of all references\&.
71 .RE
72 .PP
73 \-\-single\-worktree
74 .RS 4
75 By default when
76 \fB\-\-all\fR
77 is specified, reflogs from all working trees are processed\&. This option limits the processing to reflogs from the current working tree only\&.
78 .RE
79 .PP
80 \-\-expire=<time>
81 .RS 4
82 Prune entries older than the specified time\&. If this option is not specified, the expiration time is taken from the configuration setting
83 \fBgc\&.reflogExpire\fR, which in turn defaults to 90 days\&.
84 \fB\-\-expire=all\fR
85 prunes entries regardless of their age;
86 \fB\-\-expire=never\fR
87 turns off pruning of reachable entries (but see
88 \fB\-\-expire\-unreachable\fR)\&.
89 .RE
90 .PP
91 \-\-expire\-unreachable=<time>
92 .RS 4
93 Prune entries older than
94 \fB<time>\fR
95 that are not reachable from the current tip of the branch\&. If this option is not specified, the expiration time is taken from the configuration setting
96 \fBgc\&.reflogExpireUnreachable\fR, which in turn defaults to 30 days\&.
97 \fB\-\-expire\-unreachable=all\fR
98 prunes unreachable entries regardless of their age;
99 \fB\-\-expire\-unreachable=never\fR
100 turns off early pruning of unreachable entries (but see
101 \fB\-\-expire\fR)\&.
104 \-\-updateref
105 .RS 4
106 Update the reference to the value of the top reflog entry (i\&.e\&. <ref>@{0}) if the previous top entry was pruned\&. (This option is ignored for symbolic references\&.)
109 \-\-rewrite
110 .RS 4
111 If a reflog entry\(cqs predecessor is pruned, adjust its "old" SHA\-1 to be equal to the "new" SHA\-1 field of the entry that now precedes it\&.
114 \-\-stale\-fix
115 .RS 4
116 Prune any reflog entries that point to "broken commits"\&. A broken commit is a commit that is not reachable from any of the reference tips and that refers, directly or indirectly, to a missing commit, tree, or blob object\&.
118 This computation involves traversing all the reachable objects, i\&.e\&. it has the same cost as
119 \fIgit prune\fR\&. It is primarily intended to fix corruption caused by garbage collecting using older versions of Git, which didn\(cqt protect objects referred to by reflogs\&.
122 \-n, \-\-dry\-run
123 .RS 4
124 Do not actually prune any entries; just show what would have been pruned\&.
127 \-\-verbose
128 .RS 4
129 Print extra information on screen\&.
131 .SS "Options for \fBdelete\fR"
133 \fBgit reflog delete\fR accepts options \fB\-\-updateref\fR, \fB\-\-rewrite\fR, \fB\-n\fR, \fB\-\-dry\-run\fR, and \fB\-\-verbose\fR, with the same meanings as when they are used with \fBexpire\fR\&.
134 .SH "GIT"
136 Part of the \fBgit\fR(1) suite