diff options
author | Johannes Schindelin <Johannes.Schindelin@gmx.de> | 2007-10-17 02:50:45 +0100 |
---|---|---|
committer | Shawn O. Pearce <spearce@spearce.org> | 2007-10-17 02:54:51 -0400 |
commit | 552cecc21447efe9d5f9a86d55b5e428d56a0c53 (patch) | |
tree | c6dd9228628bd4db04a50539eee64a18f37c56b5 /Documentation/git-reflog.txt | |
parent | 207f1a75e7e4d14286aeed107af7c56dc811797b (diff) | |
download | git-552cecc21447efe9d5f9a86d55b5e428d56a0c53.tar.gz git-552cecc21447efe9d5f9a86d55b5e428d56a0c53.tar.xz |
Teach "git reflog" a subcommand to delete single entries
This commit implements the "delete" subcommand:
git reflog delete master@{2}
will delete the second reflog entry of the "master" branch.
With this, it should be easy to implement "git stash pop" everybody
seems to want these days.
Signed-off-by: Johannes Schindelin <johannes.schindelin@gmx.de>
Signed-off-by: Shawn O. Pearce <spearce@spearce.org>
Diffstat (limited to 'Documentation/git-reflog.txt')
-rw-r--r-- | Documentation/git-reflog.txt | 5 |
1 files changed, 5 insertions, 0 deletions
diff --git a/Documentation/git-reflog.txt b/Documentation/git-reflog.txt index 5c7316ceb..a0c7ceead 100644 --- a/Documentation/git-reflog.txt +++ b/Documentation/git-reflog.txt @@ -19,6 +19,8 @@ depending on the subcommand: git reflog expire [--dry-run] [--stale-fix] [--verbose] [--expire=<time>] [--expire-unreachable=<time>] [--all] <refs>... +git reflog delete ref@\{specifier\}... + git reflog [show] [log-options] Reflog is a mechanism to record when the tip of branches are @@ -36,6 +38,9 @@ subcommands) will take all the normal log options, and show the log of It is basically an alias for 'git log -g --abbrev-commit --pretty=oneline', see gitlink:git-log[1]. +To delete single entries from the reflog, use the subcommand "delete" +and specify the _exact_ entry (e.g. ``git reflog delete master@\{2\}''). + OPTIONS ------- |