6 git-reflog - Manage reflog information
11 'git reflog' <subcommand> <options>
15 The command takes various subcommands, and different options
16 depending on the subcommand:
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\}'').
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
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
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
74 Instead of listing <refs> explicitly, prune all refs.
77 Print extra information on screen.
81 Written by Junio C Hamano <junkio@cox.net>
85 Documentation by Junio C Hamano and the git-list <git@vger.kernel.org>.
89 Part of the gitlink:git[7] suite