git reflog

master
svkalinin 2022-10-19 09:39:55 +03:00
parent 400b41aa1e
commit 9d8ba896f0
1 changed files with 9 additions and 0 deletions

View File

@ -137,6 +137,15 @@ namespace eval Git {
proc Merge {} {
global cfgVariables activeProject
}
proc Reflog {} {
global cfgVariables activeProject
set cmd exec
lappend cmd "$cfgVariables(gitCommand)"
lappend cmd "reflog"
lappend cmd "--"
lappend cmd "$activeProject"
}
proc ListBoxPress {w} {
set fileName [$w.body.lBox get [$w.body.lBox curselection]]