Skip to main content
aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorKonrad Kügler2014-04-06 10:00:36 +0000
committerKonrad Kügler2014-04-06 15:29:38 +0000
commit812ba9ec89267899d0b8e505f500ecb937c60ef2 (patch)
treef94012172ec1a906ed59997b95b09c28d0fbf939 /org.eclipse.egit.ui/plugin.xml
parent26a2694bcb655b0fcd34dfa30149b3add4d4ad9e (diff)
downloadegit-812ba9ec89267899d0b8e505f500ecb937c60ef2.tar.gz
egit-812ba9ec89267899d0b8e505f500ecb937c60ef2.tar.xz
egit-812ba9ec89267899d0b8e505f500ecb937c60ef2.zip
[reflogView] Offer to reset to a reflog entry via the context menu
Bug: 431471 Change-Id: Iaead94752d7a69cd4430447f5d1e78b40ba613ba Signed-off-by: Konrad Kügler <swamblumat-eclipsebugs@yahoo.de>
Diffstat (limited to 'org.eclipse.egit.ui/plugin.xml')
-rw-r--r--org.eclipse.egit.ui/plugin.xml18
1 files changed, 18 insertions, 0 deletions
diff --git a/org.eclipse.egit.ui/plugin.xml b/org.eclipse.egit.ui/plugin.xml
index e9f5145c6e..98934df432 100644
--- a/org.eclipse.egit.ui/plugin.xml
+++ b/org.eclipse.egit.ui/plugin.xml
@@ -972,6 +972,24 @@
</and>
</activeWhen>
</handler>
+ <handler
+ commandId="org.eclipse.egit.ui.history.Reset">
+ <class
+ class="org.eclipse.egit.ui.internal.reflog.command.ResetHandler">
+ </class>
+ <activeWhen>
+ <and>
+ <count
+ value="1">
+ </count>
+ <iterate>
+ <adapt
+ type="org.eclipse.jgit.lib.ReflogEntry">
+ </adapt>
+ </iterate>
+ </and>
+ </activeWhen>
+ </handler>
<handler
commandId="org.eclipse.egit.ui.team.Commit">
<class

Back to the top