Code

a0c7ceead2174eb7d9498f1575ee0df4065da433
[git.git] / Documentation / git-reflog.txt
1 git-reflog(1)
2 =============
4 NAME
5 ----
6 git-reflog - Manage reflog information
9 SYNOPSIS
10 --------
11 'git reflog' <subcommand> <options>
13 DESCRIPTION
14 -----------
15 The command takes various subcommands, and different options
16 depending on the subcommand:
18 [verse]
19 git reflog expire [--dry-run] [--stale-fix] [--verbose]
20         [--expire=<time>] [--expire-unreachable=<time>] [--all] <refs>...
22 git reflog delete ref@\{specifier\}...
24 git reflog [show] [log-options]
26 Reflog is a mechanism to record when the tip of branches are
27 updated.  This command is to manage the information recorded in it.
29 The subcommand "expire" is used to prune older reflog entries.
30 Entries older than `expire` time, or entries older than
31 `expire-unreachable` time and are not reachable from the current
32 tip, are removed from the reflog.  This is typically not used
33 directly by the end users -- instead, see gitlink:git-gc[1].
35 The subcommand "show" (which is also the default, in the absence of any
36 subcommands) will take all the normal log options, and show the log of
37 `HEAD`, which will cover all recent actions, including branch switches.
38 It is basically an alias for 'git log -g --abbrev-commit
39 --pretty=oneline', see gitlink:git-log[1].
41 To delete single entries from the reflog, use the subcommand "delete"
42 and specify the _exact_ entry (e.g. ``git reflog delete master@\{2\}'').
45 OPTIONS
46 -------
48 --stale-fix::
49         This revamps the logic -- the definition of "broken commit"
50         becomes: a commit that is not reachable from any of the refs and
51         there is a missing object among the commit, tree, or blob
52         objects reachable from it that is not reachable from any of the
53         refs.
54 +
55 This computation involves traversing all the reachable objects, i.e. it
56 has the same cost as 'git prune'.  Fortunately, once this is run, we
57 should not have to ever worry about missing objects, because the current
58 prune and pack-objects know about reflogs and protect objects referred by
59 them.
61 --expire=<time>::
62         Entries older than this time are pruned.  Without the
63         option it is taken from configuration `gc.reflogExpire`,
64         which in turn defaults to 90 days.
66 --expire-unreachable=<time>::
67         Entries older than this time and are not reachable from
68         the current tip of the branch are pruned.  Without the
69         option it is taken from configuration
70         `gc.reflogExpireUnreachable`, which in turn defaults to
71         30 days.
73 --all::
74         Instead of listing <refs> explicitly, prune all refs.
76 --verbose::
77         Print extra information on screen.
79 Author
80 ------
81 Written by Junio C Hamano <junkio@cox.net>
83 Documentation
84 --------------
85 Documentation by Junio C Hamano and the git-list <git@vger.kernel.org>.
87 GIT
88 ---
89 Part of the gitlink:git[7] suite