git-gui: allow reverting selected lines
Just like the user can select lines to stage or unstage, add the ability to revert selected lines. Signed-off-by: Pratyush Yadav <me@yadavpratyush.com>
This commit is contained in:
parent
5ab72271e1
commit
5f0a516de9
25
git-gui.sh
25
git-gui.sh
@ -3587,10 +3587,16 @@ set ui_diff_applyhunk [$ctxm index last]
|
|||||||
lappend diff_actions [list $ctxm entryconf $ui_diff_applyhunk -state]
|
lappend diff_actions [list $ctxm entryconf $ui_diff_applyhunk -state]
|
||||||
$ctxm add command \
|
$ctxm add command \
|
||||||
-label [mc "Apply/Reverse Line"] \
|
-label [mc "Apply/Reverse Line"] \
|
||||||
-command {apply_range_or_line $cursorX $cursorY; do_rescan}
|
-command {apply_or_revert_range_or_line $cursorX $cursorY 0; do_rescan}
|
||||||
set ui_diff_applyline [$ctxm index last]
|
set ui_diff_applyline [$ctxm index last]
|
||||||
lappend diff_actions [list $ctxm entryconf $ui_diff_applyline -state]
|
lappend diff_actions [list $ctxm entryconf $ui_diff_applyline -state]
|
||||||
$ctxm add separator
|
$ctxm add separator
|
||||||
|
$ctxm add command \
|
||||||
|
-label [mc "Revert Line"] \
|
||||||
|
-command {apply_or_revert_range_or_line $cursorX $cursorY 1; do_rescan}
|
||||||
|
set ui_diff_revertline [$ctxm index last]
|
||||||
|
lappend diff_actions [list $ctxm entryconf $ui_diff_revertline -state]
|
||||||
|
$ctxm add separator
|
||||||
$ctxm add command \
|
$ctxm add command \
|
||||||
-label [mc "Show Less Context"] \
|
-label [mc "Show Less Context"] \
|
||||||
-command show_less_context
|
-command show_less_context
|
||||||
@ -3687,15 +3693,19 @@ proc popup_diff_menu {ctxm ctxmmg ctxmsm x y X Y} {
|
|||||||
set l [mc "Unstage Hunk From Commit"]
|
set l [mc "Unstage Hunk From Commit"]
|
||||||
if {$has_range} {
|
if {$has_range} {
|
||||||
set t [mc "Unstage Lines From Commit"]
|
set t [mc "Unstage Lines From Commit"]
|
||||||
|
set r [mc "Revert Lines"]
|
||||||
} else {
|
} else {
|
||||||
set t [mc "Unstage Line From Commit"]
|
set t [mc "Unstage Line From Commit"]
|
||||||
|
set r [mc "Revert Line"]
|
||||||
}
|
}
|
||||||
} else {
|
} else {
|
||||||
set l [mc "Stage Hunk For Commit"]
|
set l [mc "Stage Hunk For Commit"]
|
||||||
if {$has_range} {
|
if {$has_range} {
|
||||||
set t [mc "Stage Lines For Commit"]
|
set t [mc "Stage Lines For Commit"]
|
||||||
|
set r [mc "Revert Lines"]
|
||||||
} else {
|
} else {
|
||||||
set t [mc "Stage Line For Commit"]
|
set t [mc "Stage Line For Commit"]
|
||||||
|
set r [mc "Revert Line"]
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
if {$::is_3way_diff
|
if {$::is_3way_diff
|
||||||
@ -3706,11 +3716,24 @@ proc popup_diff_menu {ctxm ctxmmg ctxmsm x y X Y} {
|
|||||||
|| [string match {T?} $state]
|
|| [string match {T?} $state]
|
||||||
|| [has_textconv $current_diff_path]} {
|
|| [has_textconv $current_diff_path]} {
|
||||||
set s disabled
|
set s disabled
|
||||||
|
set revert_state disabled
|
||||||
} else {
|
} else {
|
||||||
set s normal
|
set s normal
|
||||||
|
|
||||||
|
# Only allow reverting changes in the working tree. If
|
||||||
|
# the user wants to revert changes in the index, they
|
||||||
|
# need to unstage those first.
|
||||||
|
if {$::ui_workdir eq $::current_diff_side} {
|
||||||
|
set revert_state normal
|
||||||
|
} else {
|
||||||
|
set revert_state disabled
|
||||||
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
$ctxm entryconf $::ui_diff_applyhunk -state $s -label $l
|
$ctxm entryconf $::ui_diff_applyhunk -state $s -label $l
|
||||||
$ctxm entryconf $::ui_diff_applyline -state $s -label $t
|
$ctxm entryconf $::ui_diff_applyline -state $s -label $t
|
||||||
|
$ctxm entryconf $::ui_diff_revertline -state $revert_state \
|
||||||
|
-label $r
|
||||||
tk_popup $ctxm $X $Y
|
tk_popup $ctxm $X $Y
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
20
lib/diff.tcl
20
lib/diff.tcl
@ -55,7 +55,7 @@ proc reshow_diff {{after {}}} {
|
|||||||
|
|
||||||
proc force_diff_encoding {enc} {
|
proc force_diff_encoding {enc} {
|
||||||
global current_diff_path
|
global current_diff_path
|
||||||
|
|
||||||
if {$current_diff_path ne {}} {
|
if {$current_diff_path ne {}} {
|
||||||
force_path_encoding $current_diff_path $enc
|
force_path_encoding $current_diff_path $enc
|
||||||
reshow_diff
|
reshow_diff
|
||||||
@ -640,7 +640,7 @@ proc apply_hunk {x y} {
|
|||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
proc apply_range_or_line {x y} {
|
proc apply_or_revert_range_or_line {x y revert} {
|
||||||
global current_diff_path current_diff_header current_diff_side
|
global current_diff_path current_diff_header current_diff_side
|
||||||
global ui_diff ui_index file_states
|
global ui_diff ui_index file_states
|
||||||
|
|
||||||
@ -660,19 +660,27 @@ proc apply_range_or_line {x y} {
|
|||||||
if {$current_diff_path eq {} || $current_diff_header eq {}} return
|
if {$current_diff_path eq {} || $current_diff_header eq {}} return
|
||||||
if {![lock_index apply_hunk]} return
|
if {![lock_index apply_hunk]} return
|
||||||
|
|
||||||
set apply_cmd {apply --cached --whitespace=nowarn}
|
set apply_cmd {apply --whitespace=nowarn}
|
||||||
set mi [lindex $file_states($current_diff_path) 0]
|
set mi [lindex $file_states($current_diff_path) 0]
|
||||||
if {$current_diff_side eq $ui_index} {
|
if {$current_diff_side eq $ui_index} {
|
||||||
set failed_msg [mc "Failed to unstage selected line."]
|
set failed_msg [mc "Failed to unstage selected line."]
|
||||||
set to_context {+}
|
set to_context {+}
|
||||||
lappend apply_cmd --reverse
|
lappend apply_cmd --reverse --cached
|
||||||
if {[string index $mi 0] ne {M}} {
|
if {[string index $mi 0] ne {M}} {
|
||||||
unlock_index
|
unlock_index
|
||||||
return
|
return
|
||||||
}
|
}
|
||||||
} else {
|
} else {
|
||||||
set failed_msg [mc "Failed to stage selected line."]
|
if {$revert} {
|
||||||
set to_context {-}
|
set failed_msg [mc "Failed to revert selected line."]
|
||||||
|
set to_context {+}
|
||||||
|
lappend apply_cmd --reverse
|
||||||
|
} else {
|
||||||
|
set failed_msg [mc "Failed to stage selected line."]
|
||||||
|
set to_context {-}
|
||||||
|
lappend apply_cmd --cached
|
||||||
|
}
|
||||||
|
|
||||||
if {[string index $mi 1] ne {M}} {
|
if {[string index $mi 1] ne {M}} {
|
||||||
unlock_index
|
unlock_index
|
||||||
return
|
return
|
||||||
|
Loading…
Reference in New Issue
Block a user