[PATCH] Rename git-repo-config to git-config.
[git.git] / Documentation / git-reflog.txt
blob11388658964b2c8acec5a2e9cd070fce6b177bd8
1 git-reflog(1)
2 =============
4 NAME
5 ----
6 git-reflog - Manage reflog information
9 SYNOPSIS
10 --------
11 [verse]
12 'git-reflog' expire [--dry-run] [--stale-fix]
13         [--expire=<time>] [--expire-unreachable=<time>] [--all] <refs>...
16 DESCRIPTION
17 -----------
19 Reflog is a mechanism to record when the tip of branches are
20 updated.  This command is to manage the information recorded in it.
22 The subcommand "expire" is used to prune older reflog entries.
23 Entries older than `expire` time, or entries older than
24 `expire-unreachable` time and are not reachable from the current
25 tip, are removed from the reflog.  This is typically not used
26 directly by the end users -- instead, see gitlink:git-gc[1].
30 OPTIONS
31 -------
33 --expire=<time>::
34         Entries older than this time are pruned.  Without the
35         option it is taken from configuration `gc.reflogExpire`,
36         which in turn defaults to 90 days.
38 --expire-unreachable=<time>::
39         Entries older than this time and are not reachable from
40         the current tip of the branch are pruned.  Without the
41         option it is taken from configuration
42         `gc.reflogExpireUnreachable`, which in turn defaults to
43         30 days.
45 --all::
46         Instead of listing <refs> explicitly, prune all refs.
48 Author
49 ------
50 Written by Junio C Hamano <junkio@cox.net>
52 Documentation
53 --------------
54 Documentation by Junio C Hamano and the git-list <git@vger.kernel.org>.
56 GIT
57 ---
58 Part of the gitlink:git[7] suite