2 # Tcl ignores the next line -*- tcl -*- \
3 if test "z$*" = zversion \
4 ||
test "z$*" = z--version
; \
6 echo 'git-gui version @@GITGUI_VERSION@@'; \
10 exec wish
"$argv0" -- "$@"
12 set appvers
{@@GITGUI_VERSION@@
}
13 set copyright
[encoding convertfrom utf-8
{
14 Copyright ©
2006, 2007 Shawn Pearce
, et. al.
16 This program is free software
; you can redistribute it and
/or modify
17 it under the terms of the GNU General Public License as published by
18 the Free Software Foundation
; either version
2 of the License
, or
19 (at your option
) any later version.
21 This program is distributed
in the hope that it will be useful
,
22 but WITHOUT ANY WARRANTY
; without even the implied warranty of
23 MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
24 GNU General Public License
for more details.
26 You should have received a copy of the GNU General Public License
27 along with this program
; if not
, write to the Free Software
28 Foundation
, Inc.
, 59 Temple Place
, Suite
330, Boston
, MA
02111-1307 USA
}]
30 ######################################################################
32 ## Tcl/Tk sanity check
34 if {[catch
{package require Tcl
8.4} err
]
35 ||
[catch
{package require Tk
8.4} err
]
41 -title "git-gui: fatal error" \
46 catch
{rename send
{}} ; # What an evil concept...
48 ######################################################################
52 set oguilib
{@@GITGUI_LIBDIR@@
}
53 set oguirel
{@@GITGUI_RELATIVE@@
}
54 if {$oguirel eq
{1}} {
55 set oguilib
[file dirname [file normalize
$argv0]]
56 if {[file tail $oguilib] eq
{git-core
}} {
57 set oguilib
[file dirname $oguilib]
59 set oguilib
[file dirname $oguilib]
60 set oguilib
[file join $oguilib share git-gui lib
]
61 set oguimsg
[file join $oguilib msgs
]
62 } elseif
{[string match @@
* $oguirel]} {
63 set oguilib
[file join [file dirname [file normalize
$argv0]] lib
]
64 set oguimsg
[file join [file dirname [file normalize
$argv0]] po
]
66 set oguimsg
[file join $oguilib msgs
]
70 ######################################################################
72 ## enable verbose loading?
74 if {![catch
{set _verbose
$env(GITGUI_VERBOSE
)}]} {
76 rename auto_load real__auto_load
77 proc auto_load
{name args
} {
78 puts stderr
"auto_load $name"
79 return [uplevel
1 real__auto_load
$name $args]
81 rename
source real__source
83 puts stderr
"source $name"
84 uplevel
1 real__source
$name
88 ######################################################################
90 ## Internationalization (i18n) through msgcat and gettext. See
91 ## http://www.gnu.org/software/gettext/manual/html_node/Tcl.html
93 package require msgcat
96 set cmk
[string first @@
$fmt]
98 return [string range
$fmt 0 [expr {$cmk - 1}]]
103 proc mc
{en_fmt args
} {
104 set fmt [_mc_trim
[::msgcat
::mc
$en_fmt]]
105 if {[catch
{set msg
[eval [list format
$fmt] $args]} err
]} {
106 set msg
[eval [list format
[_mc_trim
$en_fmt]] $args]
112 return [join $args {}]
115 ::msgcat
::mcload
$oguimsg
118 ######################################################################
122 set _appname
{Git Gui
}
132 set _trace
[lsearch
-exact $argv --trace]
134 set argv
[lreplace
$argv $_trace $_trace]
150 return [eval [list
file join $_gitdir] $args]
153 proc gitexec
{args
} {
155 if {$_gitexec eq
{}} {
156 if {[catch
{set _gitexec
[git
--exec-path]} err
]} {
157 error
"Git not installed?\n\n$err"
160 set _gitexec
[exec cygpath \
165 set _gitexec
[file normalize
$_gitexec]
171 return [eval [list
file join $_gitexec] $args]
174 proc githtmldir
{args
} {
176 if {$_githtmldir eq
{}} {
177 if {[catch
{set _githtmldir
[git
--html-path]}]} {
178 # Git not installed or option not yet supported
182 set _githtmldir
[exec cygpath \
187 set _githtmldir
[file normalize
$_githtmldir]
193 return [eval [list
file join $_githtmldir] $args]
201 if {[tk windowingsystem
] eq
{aqua
}} {
208 if {$
::tcl_platform
(platform
) eq
{windows
}} {
216 if {$_iscygwin eq
{}} {
217 if {$
::tcl_platform
(platform
) eq
{windows
}} {
218 if {[catch
{set p
[exec cygpath
--windir]} err
]} {
230 proc is_enabled
{option
} {
231 global enabled_options
232 if {[catch
{set on
$enabled_options($option)}]} {return 0}
236 proc enable_option
{option
} {
237 global enabled_options
238 set enabled_options
($option) 1
241 proc disable_option
{option
} {
242 global enabled_options
243 set enabled_options
($option) 0
246 ######################################################################
250 proc is_many_config
{name
} {
251 switch
-glob -- $name {
261 proc is_config_true
{name
} {
263 if {[catch
{set v
$repo_config($name)}]} {
265 } elseif
{$v eq
{true
} ||
$v eq
{1} ||
$v eq
{yes}} {
272 proc is_config_false
{name
} {
274 if {[catch
{set v
$repo_config($name)}]} {
276 } elseif
{$v eq
{false
} ||
$v eq
{0} ||
$v eq
{no
}} {
283 proc get_config
{name
} {
285 if {[catch
{set v
$repo_config($name)}]} {
297 if {$_isbare eq
{}} {
299 set _bare
[git rev-parse
--is-bare-repository]
301 true
{ set _isbare
1 }
302 false
{ set _isbare
0}
306 if {[is_config_true core.bare
]
307 ||
($_gitworktree eq
{}
308 && [lindex
[file split $_gitdir] end
] ne
{.git
})} {
318 ######################################################################
322 proc _trace_exec
{cmd
} {
323 if {!$
::_trace
} return
329 if {[regexp
{[ \t\r\n'"$?*]} $v]} {
337 #'" fix poor old emacs font-lock mode
339 proc _git_cmd {name} {
342 if {[catch {set v $_git_cmd_path($name)}]} {
346 --exec-path { return [list $::_git $name] }
349 set p [gitexec git-$name$::_search_exe]
350 if {[file exists $p]} {
352 } elseif {[is_Windows] && [file exists [gitexec git-$name]]} {
353 # Try to determine what sort of magic will make
354 # git-$name go and do its thing, because native
355 # Tcl on Windows doesn't know it.
357 set p [gitexec git-$name]
362 switch -glob -- [lindex $s 0] {
364 #!*perl { set i perl }
365 #!*python { set i python }
366 default { error "git-
$name is not supported
: $s" }
370 if {![info exists interp]} {
371 set interp [_which $i]
374 error "git-
$name requires
$i (not
in PATH
)"
376 set v [concat [list $interp] [lrange $s 1 end] [list $p]]
378 # Assume it is builtin to git somehow and we
379 # aren't actually able to see a file for it.
381 set v [list $::_git $name]
383 set _git_cmd_path($name) $v
388 proc _which {what args} {
389 global env _search_exe _search_path
391 if {$_search_path eq {}} {
392 if {[is_Cygwin] && [regexp {^(/|\.:)} $env(PATH)]} {
393 set _search_path [split [exec cygpath \
399 } elseif {[is_Windows]} {
400 set gitguidir [file dirname [info script]]
401 regsub -all ";" $gitguidir "\\;" gitguidir
402 set env(PATH) "$gitguidir;$env(PATH
)"
403 set _search_path [split $env(PATH) {;}]
406 set _search_path [split $env(PATH) :]
411 if {[is_Windows] && [lsearch -exact $args -script] >= 0} {
414 set suffix $_search_exe
417 foreach p $_search_path {
418 set p [file join $p $what$suffix]
419 if {[file exists $p]} {
420 return [file normalize $p]
426 proc _lappend_nice {cmd_var} {
430 if {![info exists _nice]} {
431 set _nice [_which nice]
432 if {[catch {exec $_nice git version}]} {
445 switch -- [lindex $args 0] {
456 set args [lrange $args 1 end]
459 set cmdp [_git_cmd [lindex $args 0]]
460 set args [lrange $args 1 end]
462 _trace_exec [concat $opt $cmdp $args]
463 set result [eval exec $opt $cmdp $args]
465 puts stderr "< $result"
470 proc _open_stdout_stderr {cmd} {
473 set fd [open [concat [list | ] $cmd] r]
475 if { [lindex $cmd end] eq {2>@1}
476 && $err eq {can not find channel named "1"}
478 # Older versions of Tcl 8.4 don't have this 2>@1 IO
479 # redirect operator. Fallback to |& cat for those.
480 # The command was not actually started, so its safe
481 # to try to start it a second time.
483 set fd [open [concat \
485 [lrange $cmd 0 end-1] \
492 fconfigure $fd -eofchar {}
496 proc git_read {args} {
500 switch -- [lindex $args 0] {
515 set args [lrange $args 1 end]
518 set cmdp [_git_cmd [lindex $args 0]]
519 set args [lrange $args 1 end]
521 return [_open_stdout_stderr [concat $opt $cmdp $args]]
524 proc git_write {args} {
528 switch -- [lindex $args 0] {
539 set args [lrange $args 1 end]
542 set cmdp [_git_cmd [lindex $args 0]]
543 set args [lrange $args 1 end]
545 _trace_exec [concat $opt $cmdp $args]
546 return [open [concat [list | ] $opt $cmdp $args] w]
549 proc githook_read {hook_name args} {
550 set pchook [gitdir hooks $hook_name]
553 # On Windows [file executable] might lie so we need to ask
554 # the shell if the hook is executable. Yes that's annoying.
558 if {![info exists interp]} {
559 set interp [_which sh]
562 error "hook execution requires sh
(not
in PATH
)"
565 set scr {if test -x "$1";then exec "$@
";fi}
566 set sh_c [list $interp -c $scr $interp $pchook]
567 return [_open_stdout_stderr [concat $sh_c $args]]
570 if {[file executable $pchook]} {
571 return [_open_stdout_stderr [concat [list $pchook] $args]]
577 proc kill_file_process {fd} {
578 set process [pid $fd]
582 # Use a Cygwin-specific flag to allow killing
583 # native Windows processes
584 exec kill -f $process
591 proc gitattr {path attr default} {
592 if {[catch {set r [git check-attr $attr -- $path]}]} {
595 set r [join [lrange [split $r :] 2 end] :]
598 if {$r eq {unspecified}} {
605 regsub -all ' $value "'\\''" value
609 proc load_current_branch {} {
610 global current_branch is_detached
612 set fd [open [gitdir HEAD] r]
613 if {[gets $fd ref] < 1} {
618 set pfx {ref: refs/heads/}
619 set len [string length $pfx]
620 if {[string equal -length $len $pfx $ref]} {
621 # We're on a branch. It might not exist. But
622 # HEAD looks good enough to be a branch.
624 set current_branch
[string range
$ref $len end
]
627 # Assume this is a detached head.
629 set current_branch HEAD
634 auto_load tk_optionMenu
635 rename tk_optionMenu real__tkOptionMenu
636 proc tk_optionMenu
{w varName args
} {
637 set m
[eval real__tkOptionMenu
$w $varName $args]
638 $m configure
-font font_ui
639 $w configure
-font font_ui
643 proc rmsel_tag
{text
} {
645 -background [$text cget
-background] \
646 -foreground [$text cget
-foreground] \
648 $text tag conf in_sel
-background lightgray
649 bind $text <Motion
> break
655 bind .
<Visibility
> {
656 bind .
<Visibility
> {}
661 wm iconbitmap .
-default $oguilib/git-gui.ico
662 set ::tk
::AlwaysShowSelection
1
664 # Spoof an X11 display for SSH
665 if {![info exists env
(DISPLAY
)]} {
666 set env
(DISPLAY
) :9999
670 image create photo gitlogo
-width 16 -height 16
672 gitlogo put
#33CC33 -to 7 0 9 2
673 gitlogo put
#33CC33 -to 4 2 12 4
674 gitlogo put
#33CC33 -to 7 4 9 6
675 gitlogo put
#CC3333 -to 4 6 12 8
676 gitlogo put gray26
-to 4 9 6 10
677 gitlogo put gray26
-to 3 10 6 12
678 gitlogo put gray26
-to 8 9 13 11
679 gitlogo put gray26
-to 8 11 10 12
680 gitlogo put gray26
-to 11 11 13 14
681 gitlogo put gray26
-to 3 12 5 14
682 gitlogo put gray26
-to 5 13
683 gitlogo put gray26
-to 10 13
684 gitlogo put gray26
-to 4 14 12 15
685 gitlogo put gray26
-to 5 15 11 16
688 wm iconphoto .
-default gitlogo
692 ######################################################################
698 if {[lsearch
-exact [font names
] TkDefaultFont
] != -1} {
699 eval [linsert
[font actual TkDefaultFont
] 0 font configure font_ui
]
700 eval [linsert
[font actual TkFixedFont
] 0 font create font_diff
]
702 font create font_diff
-family Courier
-size 10
705 eval font configure font_ui
[font actual
[.dummy cget
-font]]
710 font create font_uiitalic
711 font create font_uibold
712 font create font_diffbold
713 font create font_diffitalic
715 foreach class
{Button Checkbutton Entry Label
716 Labelframe Listbox Message
717 Radiobutton Spinbox Text
} {
718 option add
*$class.font font_ui
721 option add
*Menu.font font_ui
722 option add
*Entry.borderWidth
1 startupFile
723 option add
*Entry.relief sunken startupFile
724 option add
*RadioButton.anchor w startupFile
728 if {[is_Windows
] ||
[is_MacOSX
]} {
729 option add
*Menu.tearOff
0
740 proc bind_button3
{w cmd
} {
741 bind $w <Any-Button-3
> $cmd
743 # Mac OS X sends Button-2 on right click through three-button mouse,
744 # or through trackpad right-clicking (two-finger touch + click).
745 bind $w <Any-Button-2
> $cmd
746 bind $w <Control-Button-1
> $cmd
750 proc apply_config
{} {
751 global repo_config font_descs
753 foreach option
$font_descs {
754 set name
[lindex
$option 0]
755 set font
[lindex
$option 1]
758 foreach
{cn cv
} $repo_config(gui.
$name) {
759 if {$cn eq
{-weight}} {
762 font configure
$font $cn $cv
765 font configure
$font -weight normal
768 error_popup
[strcat
[mc
"Invalid font specified in %s:" "gui.$name"] "\n\n$err"]
770 foreach
{cn cv
} [font configure
$font] {
771 font configure
${font}bold
$cn $cv
772 font configure
${font}italic
$cn $cv
774 font configure
${font}bold
-weight bold
775 font configure
${font}italic
-slant italic
781 if {$repo_config(gui.usettk
)} {
782 set use_ttk
[package vsatisfies
[package provide Tk
] 8.5]
785 bind [winfo class .
] <<ThemeChanged>> [list InitTheme]
791 set default_config(branch.autosetupmerge) true
792 set default_config(merge.tool) {}
793 set default_config(mergetool.keepbackup) true
794 set default_config(merge.diffstat) true
795 set default_config(merge.summary) false
796 set default_config(merge.verbosity) 2
797 set default_config(user.name) {}
798 set default_config(user.email) {}
800 set default_config(gui.encoding) [encoding system]
801 set default_config(gui.matchtrackingbranch) false
802 set default_config(gui.textconv) true
803 set default_config(gui.pruneduringfetch) false
804 set default_config(gui.trustmtime) false
805 set default_config(gui.fastcopyblame) false
806 set default_config(gui.copyblamethreshold) 40
807 set default_config(gui.blamehistoryctx) 7
808 set default_config(gui.diffcontext) 5
809 set default_config(gui.commitmsgwidth) 75
810 set default_config(gui.newbranchtemplate) {}
811 set default_config(gui.spellingdictionary) {}
812 set default_config(gui.fontui) [font configure font_ui]
813 set default_config(gui.fontdiff) [font configure font_diff]
814 # TODO: this option should be added to the git-config documentation
815 set default_config(gui.maxfilesdisplayed) 5000
816 set default_config(gui.usettk) 1
818 {fontui font_ui {mc "Main Font"}}
819 {fontdiff font_diff {mc "Diff/Console Font"}}
822 ######################################################################
826 set _git [_which git]
828 catch {wm withdraw .}
832 -title [mc "git-gui: fatal error"] \
833 -message [mc "Cannot find git in PATH."]
837 ######################################################################
841 if {[catch {set _git_version [git --version]} err]} {
842 catch {wm withdraw .}
846 -title [mc "git-gui: fatal error"] \
847 -message "Cannot determine Git version:
851 [appname] requires Git 1.5.0 or later."
854 if {![regsub {^git version } $_git_version {} _git_version]} {
855 catch {wm withdraw .}
859 -title [mc "git-gui: fatal error"] \
860 -message [strcat [mc "Cannot parse Git version string:"] "\n\n$_git_version"]
864 set _real_git_version $_git_version
865 regsub -- {[\-\.]dirty$} $_git_version {} _git_version
866 regsub {\.[0-9]+\.g[0-9a-f]+$} $_git_version {} _git_version
867 regsub {\.[a-zA-Z]+\.?[0-9]+$} $_git_version {} _git_version
868 regsub {\.GIT$} $_git_version {} _git_version
869 regsub {\.[a-zA-Z]+\.?[0-9]+$} $_git_version {} _git_version
871 if {![regexp {^[1-9]+(\.[0-9]+)+$} $_git_version]} {
872 catch {wm withdraw .}
877 -title "[appname]: warning" \
878 -message [mc "Git version cannot be determined.
880 %s claims it is version '%s'.
882 %s requires at least Git 1.5.0 or later.
884 Assume '%s' is version 1.5.0?
885 " $_git $_real_git_version [appname] $_real_git_version]] eq {yes}} {
886 set _git_version 1.5.0
891 unset _real_git_version
893 proc git-version {args} {
896 switch [llength $args] {
902 set op [lindex $args 0]
903 set vr [lindex $args 1]
904 set cm [package vcompare $_git_version $vr]
905 return [expr $cm $op 0]
909 set type [lindex $args 0]
910 set name [lindex $args 1]
911 set parm [lindex $args 2]
912 set body [lindex $args 3]
914 if {($type ne {proc} && $type ne {method})} {
915 error "Invalid arguments to git-version"
917 if {[llength $body] < 2 || [lindex $body end-1] ne {default}} {
918 error "Last arm of $type $name must be default"
921 foreach {op vr cb} [lrange $body 0 end-2] {
922 if {[git-version $op $vr]} {
923 return [uplevel [list $type $name $parm $cb]]
927 return [uplevel [list $type $name $parm [lindex $body end]]]
931 error "git-version >= x"
937 if {[git-version < 1.5]} {
938 catch {wm withdraw .}
942 -title [mc "git-gui: fatal error"] \
943 -message "[appname] requires Git 1.5.0 or later.
945 You are using [git-version]:
951 ######################################################################
953 ## configure our library
955 set idx [file join $oguilib tclIndex]
956 if {[catch {set fd [open $idx r]} err]} {
957 catch {wm withdraw .}
961 -title [mc "git-gui: fatal error"] \
965 if {[gets $fd] eq {# Autogenerated by git-gui Makefile}} {
967 while {[gets $fd n] >= 0} {
968 if {$n ne {} && ![string match #* $n]} {
980 if {[lsearch -exact $loaded $p] >= 0} continue
981 source [file join $oguilib $p]
986 set auto_path [concat [list $oguilib] $auto_path]
988 unset -nocomplain idx fd
990 ######################################################################
992 ## config file parsing
994 git-version proc _parse_config {arr_name args} {
1001 [list git_read config] \
1003 [list --null --list]]
1004 fconfigure $fd_rc -translation binary
1005 set buf [read $fd_rc]
1008 foreach line [split $buf "\0"] {
1009 if {[regexp {^([^\n]+)\n(.*)$} $line line name value]} {
1010 if {[is_many_config $name]} {
1011 lappend arr($name) $value
1013 set arr($name) $value
1022 set fd_rc [eval [list git_read config --list] $args]
1023 while {[gets $fd_rc line] >= 0} {
1024 if {[regexp {^([^=]+)=(.*)$} $line line name value]} {
1025 if {[is_many_config $name]} {
1026 lappend arr($name) $value
1028 set arr($name) $value
1037 proc load_config {include_global} {
1038 global repo_config global_config system_config default_config
1040 if {$include_global} {
1041 _parse_config system_config --system
1042 _parse_config global_config --global
1044 _parse_config repo_config
1046 foreach name [array names default_config] {
1047 if {[catch {set v $system_config($name)}]} {
1048 set system_config($name) $default_config($name)
1051 foreach name [array names system_config] {
1052 if {[catch {set v $global_config($name)}]} {
1053 set global_config($name) $system_config($name)
1055 if {[catch {set v $repo_config($name)}]} {
1056 set repo_config($name) $system_config($name)
1061 ######################################################################
1063 ## feature option selection
1065 if {[regexp {^git-(.+)$} [file tail $argv0] _junk subcommand]} {
1070 if {$subcommand eq {gui.sh}} {
1073 if {$subcommand eq {gui} && [llength $argv] > 0} {
1074 set subcommand [lindex $argv 0]
1075 set argv [lrange $argv 1 end]
1078 enable_option multicommit
1079 enable_option branch
1080 enable_option transport
1083 switch -- $subcommand {
1088 disable_option multicommit
1089 disable_option branch
1090 disable_option transport
1093 enable_option singlecommit
1094 enable_option retcode
1096 disable_option multicommit
1097 disable_option branch
1098 disable_option transport
1100 while {[llength $argv] > 0} {
1101 set a [lindex $argv 0]
1104 enable_option initialamend
1107 enable_option nocommit
1108 enable_option nocommitmsg
1111 disable_option nocommitmsg
1118 set argv [lrange $argv 1 end]
1123 ######################################################################
1125 ## execution environment
1127 set have_tk85 [expr {[package vcompare $tk_version "8.5"] >= 0}]
1129 # Suggest our implementation of askpass, if none is set
1130 if {![info exists env(SSH_ASKPASS)]} {
1131 set env(SSH_ASKPASS) [gitexec git-gui--askpass]
1134 ######################################################################
1140 set _gitdir $env(GIT_DIR)
1144 # beware that from the .git dir this sets _gitdir to .
1145 # and _prefix to the empty string
1146 set _gitdir [git rev-parse --git-dir]
1147 set _prefix [git rev-parse --show-prefix]
1151 choose_repository::pick
1155 # we expand the _gitdir when it's just a single dot (i.e. when we're being
1156 # run from the .git dir itself) lest the routines to find the worktree
1158 if {$_gitdir eq "."} {
1162 if {![file isdirectory $_gitdir] && [is_Cygwin]} {
1163 catch {set _gitdir [exec cygpath --windows $_gitdir]}
1165 if {![file isdirectory $_gitdir]} {
1166 catch {wm withdraw .}
1167 error_popup [strcat [mc "Git directory not found:"] "\n\n$_gitdir"]
1170 # _gitdir exists, so try loading the config
1173 # try to set work tree from environment, falling back to core.worktree
1174 if {[catch { set _gitworktree $env(GIT_WORK_TREE) }]} {
1175 set _gitworktree [get_config core.worktree]
1176 if {$_gitworktree eq ""} {
1177 set _gitworktree [file dirname [file normalize $_gitdir]]
1180 if {$_prefix ne {}} {
1181 if {$_gitworktree eq {}} {
1182 regsub -all {[^/]+/} $_prefix ../ cdup
1184 set cdup $_gitworktree
1186 if {[catch {cd $cdup} err]} {
1187 catch {wm withdraw .}
1188 error_popup [strcat [mc "Cannot move to top of working directory:"] "\n\n$err"]
1191 set _gitworktree [pwd]
1193 } elseif {![is_enabled bare]} {
1195 catch {wm withdraw .}
1196 error_popup [strcat [mc "Cannot use bare repository:"] "\n\n$_gitdir"]
1199 if {$_gitworktree eq {}} {
1200 set _gitworktree [file dirname $_gitdir]
1202 if {[catch {cd $_gitworktree} err]} {
1203 catch {wm withdraw .}
1204 error_popup [strcat [mc "No working directory"] " $_gitworktree:\n\n$err"]
1207 set _gitworktree [pwd]
1209 set _reponame [file split [file normalize $_gitdir]]
1210 if {[lindex $_reponame end] eq {.git}} {
1211 set _reponame [lindex $_reponame end-1]
1213 set _reponame [lindex $_reponame end]
1216 set env(GIT_DIR) $_gitdir
1217 set env(GIT_WORK_TREE) $_gitworktree
1219 ######################################################################
1223 set current_diff_path {}
1224 set current_diff_side {}
1225 set diff_actions [list]
1229 set MERGE_HEAD [list]
1232 set current_branch {}
1234 set current_diff_path {}
1236 set is_submodule_diff 0
1237 set is_conflict_diff 0
1238 set selected_commit_type new
1239 set diff_empty_count 0
1241 set nullid "0000000000000000000000000000000000000000"
1242 set nullid2 "0000000000000000000000000000000000000001"
1244 ######################################################################
1252 set disable_on_lock [list]
1253 set index_lock_type none
1255 proc lock_index {type} {
1256 global index_lock_type disable_on_lock
1258 if {$index_lock_type eq {none}} {
1259 set index_lock_type $type
1260 foreach w $disable_on_lock {
1261 uplevel #0 $w disabled
1264 } elseif {$index_lock_type eq "begin-$type"} {
1265 set index_lock_type $type
1271 proc unlock_index {} {
1272 global index_lock_type disable_on_lock
1274 set index_lock_type none
1275 foreach w $disable_on_lock {
1276 uplevel #0 $w normal
1280 ######################################################################
1284 proc repository_state {ctvar hdvar mhvar} {
1285 global current_branch
1286 upvar $ctvar ct $hdvar hd $mhvar mh
1291 if {[catch {set hd [git rev-parse --verify HEAD]}]} {
1297 set merge_head [gitdir MERGE_HEAD]
1298 if {[file exists $merge_head]} {
1300 set fd_mh [open $merge_head r]
1301 while {[gets $fd_mh line] >= 0} {
1312 global PARENT empty_tree
1314 set p [lindex $PARENT 0]
1318 if {$empty_tree eq {}} {
1319 set empty_tree [git mktree << {}]
1324 proc force_amend {} {
1325 global selected_commit_type
1326 global HEAD PARENT MERGE_HEAD commit_type
1328 repository_state newType newHEAD newMERGE_HEAD
1331 set MERGE_HEAD $newMERGE_HEAD
1332 set commit_type $newType
1334 set selected_commit_type amend
1335 do_select_commit_type
1338 proc rescan {after {honor_trustmtime 1}} {
1339 global HEAD PARENT MERGE_HEAD commit_type
1340 global ui_index ui_workdir ui_comm
1341 global rescan_active file_states
1344 if {$rescan_active > 0 || ![lock_index read]} return
1346 repository_state newType newHEAD newMERGE_HEAD
1347 if {[string match amend* $commit_type]
1348 && $newType eq {normal}
1349 && $newHEAD eq $HEAD} {
1353 set MERGE_HEAD $newMERGE_HEAD
1354 set commit_type $newType
1357 array unset file_states
1359 if {!$::GITGUI_BCK_exists &&
1360 (![$ui_comm edit modified]
1361 || [string trim [$ui_comm get 0.0 end]] eq {})} {
1362 if {[string match amend* $commit_type]} {
1363 } elseif {[load_message GITGUI_MSG]} {
1364 } elseif {[run_prepare_commit_msg_hook]} {
1365 } elseif {[load_message MERGE_MSG]} {
1366 } elseif {[load_message SQUASH_MSG]} {
1369 $ui_comm edit modified false
1372 if {$honor_trustmtime && $repo_config(gui.trustmtime) eq {true}} {
1373 rescan_stage2 {} $after
1376 ui_status [mc "Refreshing file status..."]
1377 set fd_rf [git_read update-index \
1383 fconfigure $fd_rf -blocking 0 -translation binary
1384 fileevent $fd_rf readable \
1385 [list rescan_stage2 $fd_rf $after]
1390 set is_git_info_exclude {}
1391 proc have_info_exclude {} {
1392 global is_git_info_exclude
1394 if {$is_git_info_exclude eq {}} {
1395 if {[catch {exec test -f [gitdir info exclude]}]} {
1396 set is_git_info_exclude 0
1398 set is_git_info_exclude 1
1401 return $is_git_info_exclude
1404 proc have_info_exclude {} {
1405 return [file readable [gitdir info exclude]]
1409 proc rescan_stage2 {fd after} {
1410 global rescan_active buf_rdi buf_rdf buf_rlo
1414 if {![eof $fd]} return
1418 set ls_others [list --exclude-per-directory=.gitignore]
1419 if {[have_info_exclude]} {
1420 lappend ls_others "--exclude-from=[gitdir info exclude]"
1422 set user_exclude [get_config core.excludesfile]
1423 if {$user_exclude ne {} && [file readable $user_exclude]} {
1424 lappend ls_others "--exclude-from=$user_exclude"
1432 ui_status [mc "Scanning for modified files ..."]
1433 set fd_di [git_read diff-index --cached -z [PARENT]]
1434 set fd_df [git_read diff-files -z]
1435 set fd_lo [eval git_read ls-files --others -z $ls_others]
1437 fconfigure $fd_di -blocking 0 -translation binary -encoding binary
1438 fconfigure $fd_df -blocking 0 -translation binary -encoding binary
1439 fconfigure $fd_lo -blocking 0 -translation binary -encoding binary
1440 fileevent $fd_di readable [list read_diff_index $fd_di $after]
1441 fileevent $fd_df readable [list read_diff_files $fd_df $after]
1442 fileevent $fd_lo readable [list read_ls_others $fd_lo $after]
1445 proc load_message {file} {
1448 set f [gitdir $file]
1449 if {[file isfile $f]} {
1450 if {[catch {set fd [open $f r]}]} {
1453 fconfigure $fd -eofchar {}
1454 set content [string trim [read $fd]]
1456 regsub -all -line {[ \r\t]+$} $content {} content
1457 $ui_comm delete 0.0 end
1458 $ui_comm insert end $content
1464 proc run_prepare_commit_msg_hook {} {
1467 # prepare-commit-msg requires PREPARE_COMMIT_MSG exist. From git-gui
1468 # it will be .git/MERGE_MSG (merge), .git/SQUASH_MSG (squash), or an
1469 # empty file but existant file.
1471 set fd_pcm [open [gitdir PREPARE_COMMIT_MSG] a]
1473 if {[file isfile [gitdir MERGE_MSG]]} {
1474 set pcm_source "merge"
1475 set fd_mm [open [gitdir MERGE_MSG] r]
1476 puts -nonewline $fd_pcm [read $fd_mm]
1478 } elseif {[file isfile [gitdir SQUASH_MSG]]} {
1479 set pcm_source "squash"
1480 set fd_sm [open [gitdir SQUASH_MSG] r]
1481 puts -nonewline $fd_pcm [read $fd_sm]
1489 set fd_ph [githook_read prepare-commit-msg \
1490 [gitdir PREPARE_COMMIT_MSG] $pcm_source]
1492 catch {file delete [gitdir PREPARE_COMMIT_MSG]}
1496 ui_status [mc "Calling prepare-commit-msg hook..."]
1499 fconfigure $fd_ph -blocking 0 -translation binary -eofchar {}
1500 fileevent $fd_ph readable \
1501 [list prepare_commit_msg_hook_wait $fd_ph]
1506 proc prepare_commit_msg_hook_wait {fd_ph} {
1509 append pch_error [read $fd_ph]
1510 fconfigure $fd_ph -blocking 1
1512 if {[catch {close $fd_ph}]} {
1513 ui_status [mc "Commit declined by prepare-commit-msg hook."]
1514 hook_failed_popup prepare-commit-msg $pch_error
1515 catch {file delete [gitdir PREPARE_COMMIT_MSG]}
1518 load_message PREPARE_COMMIT_MSG
1521 catch {file delete [gitdir PREPARE_COMMIT_MSG]}
1524 fconfigure $fd_ph -blocking 0
1525 catch {file delete [gitdir PREPARE_COMMIT_MSG]}
1528 proc read_diff_index {fd after} {
1531 append buf_rdi [read $fd]
1533 set n [string length $buf_rdi]
1535 set z1 [string first "\0" $buf_rdi $c]
1536 if {$z1 == -1} break
1538 set z2 [string first "\0" $buf_rdi $z1]
1539 if {$z2 == -1} break
1542 set i [split [string range $buf_rdi $c [expr {$z1 - 2}]] { }]
1543 set p [string range $buf_rdi $z1 [expr {$z2 - 1}]]
1545 [encoding convertfrom $p] \
1547 [list [lindex $i 0] [lindex $i 2]] \
1553 set buf_rdi [string range $buf_rdi $c end]
1558 rescan_done $fd buf_rdi $after
1561 proc read_diff_files {fd after} {
1564 append buf_rdf [read $fd]
1566 set n [string length $buf_rdf]
1568 set z1 [string first "\0" $buf_rdf $c]
1569 if {$z1 == -1} break
1571 set z2 [string first "\0" $buf_rdf $z1]
1572 if {$z2 == -1} break
1575 set i [split [string range $buf_rdf $c [expr {$z1 - 2}]] { }]
1576 set p [string range $buf_rdf $z1 [expr {$z2 - 1}]]
1578 [encoding convertfrom $p] \
1581 [list [lindex $i 0] [lindex $i 2]]
1586 set buf_rdf [string range $buf_rdf $c end]
1591 rescan_done $fd buf_rdf $after
1594 proc read_ls_others {fd after} {
1597 append buf_rlo [read $fd]
1598 set pck [split $buf_rlo "\0"]
1599 set buf_rlo [lindex $pck end]
1600 foreach p [lrange $pck 0 end-1] {
1601 set p [encoding convertfrom $p]
1602 if {[string index $p end] eq {/}} {
1603 set p [string range $p 0 end-1]
1607 rescan_done $fd buf_rlo $after
1610 proc rescan_done {fd buf after} {
1611 global rescan_active current_diff_path
1612 global file_states repo_config
1615 if {![eof $fd]} return
1618 if {[incr rescan_active -1] > 0} return
1623 if {$current_diff_path ne {}} { reshow_diff $after }
1624 if {$current_diff_path eq {}} { select_first_diff $after }
1627 proc prune_selection {} {
1628 global file_states selected_paths
1630 foreach path [array names selected_paths] {
1631 if {[catch {set still_here $file_states($path)}]} {
1632 unset selected_paths($path)
1637 ######################################################################
1641 proc mapicon {w state path} {
1644 if {[catch {set r $all_icons($state$w)}]} {
1645 puts "error: no icon for $w state={$state} $path"
1651 proc mapdesc {state path} {
1654 if {[catch {set r $all_descs($state)}]} {
1655 puts "error: no desc for state={$state} $path"
1661 proc ui_status {msg} {
1663 if {[info exists main_status]} {
1664 $main_status show $msg
1668 proc ui_ready {{test {}}} {
1670 if {[info exists main_status]} {
1671 $main_status show [mc "Ready."] $test
1675 proc escape_path {path} {
1676 regsub -all {\\} $path "\\\\" path
1677 regsub -all "\n" $path "\\n" path
1681 proc short_path {path} {
1682 return [escape_path [lindex [file split $path] end]]
1686 set null_sha1 [string repeat 0 40]
1688 proc merge_state {path new_state {head_info {}} {index_info {}}} {
1689 global file_states next_icon_id null_sha1
1691 set s0 [string index $new_state 0]
1692 set s1 [string index $new_state 1]
1694 if {[catch {set info $file_states($path)}]} {
1696 set icon n[incr next_icon_id]
1698 set state [lindex $info 0]
1699 set icon [lindex $info 1]
1700 if {$head_info eq {}} {set head_info [lindex $info 2]}
1701 if {$index_info eq {}} {set index_info [lindex $info 3]}
1704 if {$s0 eq {?}} {set s0 [string index $state 0]} \
1705 elseif {$s0 eq {_}} {set s0 _}
1707 if {$s1 eq {?}} {set s1 [string index $state 1]} \
1708 elseif {$s1 eq {_}} {set s1 _}
1710 if {$s0 eq {A} && $s1 eq {_} && $head_info eq {}} {
1711 set head_info [list 0 $null_sha1]
1712 } elseif {$s0 ne {_} && [string index $state 0] eq {_}
1713 && $head_info eq {}} {
1714 set head_info $index_info
1715 } elseif {$s0 eq {_} && [string index $state 0] ne {_}} {
1716 set index_info $head_info
1720 set file_states($path) [list $s0$s1 $icon \
1721 $head_info $index_info \
1726 proc display_file_helper {w path icon_name old_m new_m} {
1729 if {$new_m eq {_}} {
1730 set lno [lsearch -sorted -exact $file_lists($w) $path]
1732 set file_lists($w) [lreplace $file_lists($w) $lno $lno]
1734 $w conf -state normal
1735 $w delete $lno.0 [expr {$lno + 1}].0
1736 $w conf -state disabled
1738 } elseif {$old_m eq {_} && $new_m ne {_}} {
1739 lappend file_lists($w) $path
1740 set file_lists($w) [lsort -unique $file_lists($w)]
1741 set lno [lsearch -sorted -exact $file_lists($w) $path]
1743 $w conf -state normal
1744 $w image create $lno.0 \
1745 -align center -padx 5 -pady 1 \
1747 -image [mapicon $w $new_m $path]
1748 $w insert $lno.1 "[escape_path $path]\n"
1749 $w conf -state disabled
1750 } elseif {$old_m ne $new_m} {
1751 $w conf -state normal
1752 $w image conf $icon_name -image [mapicon $w $new_m $path]
1753 $w conf -state disabled
1757 proc display_file {path state} {
1758 global file_states selected_paths
1759 global ui_index ui_workdir
1761 set old_m [merge_state $path $state]
1762 set s $file_states($path)
1763 set new_m [lindex $s 0]
1764 set icon_name [lindex $s 1]
1766 set o [string index $old_m 0]
1767 set n [string index $new_m 0]
1774 display_file_helper $ui_index $path $icon_name $o $n
1776 if {[string index $old_m 0] eq {U}} {
1779 set o [string index $old_m 1]
1781 if {[string index $new_m 0] eq {U}} {
1784 set n [string index $new_m 1]
1786 display_file_helper $ui_workdir $path $icon_name $o $n
1788 if {$new_m eq {__}} {
1789 unset file_states($path)
1790 catch {unset selected_paths($path)}
1794 proc display_all_files_helper {w path icon_name m} {
1797 lappend file_lists($w) $path
1798 set lno [expr {[lindex [split [$w index end] .] 0] - 1}]
1799 $w image create end \
1800 -align center -padx 5 -pady 1 \
1802 -image [mapicon $w $m $path]
1803 $w insert end "[escape_path $path]\n"
1807 proc display_all_files {} {
1808 global ui_index ui_workdir
1809 global file_states file_lists
1811 global files_warning
1813 $ui_index conf -state normal
1814 $ui_workdir conf -state normal
1816 $ui_index delete 0.0 end
1817 $ui_workdir delete 0.0 end
1820 set file_lists($ui_index) [list]
1821 set file_lists($ui_workdir) [list]
1823 set to_display [lsort [array names file_states]]
1824 set display_limit [get_config gui.maxfilesdisplayed]
1825 if {[llength $to_display] > $display_limit} {
1826 if {!$files_warning} {
1827 # do not repeatedly warn:
1829 info_popup [mc "Displaying only %s of %s files." \
1830 $display_limit [llength $to_display]]
1832 set to_display [lrange $to_display 0 [expr {$display_limit-1}]]
1834 foreach path $to_display {
1835 set s $file_states($path)
1837 set icon_name [lindex $s 1]
1839 set s [string index $m 0]
1840 if {$s ne {U} && $s ne {_}} {
1841 display_all_files_helper $ui_index $path \
1845 if {[string index $m 0] eq {U}} {
1848 set s [string index $m 1]
1851 display_all_files_helper $ui_workdir $path \
1856 $ui_index conf -state disabled
1857 $ui_workdir conf -state disabled
1860 ######################################################################
1865 #define mask_width 14
1866 #define mask_height 15
1867 static unsigned char mask_bits[] = {
1868 0xfe, 0x1f, 0xfe, 0x1f, 0xfe, 0x1f, 0xfe, 0x1f, 0xfe, 0x1f, 0xfe, 0x1f,
1869 0xfe, 0x1f, 0xfe, 0x1f, 0xfe, 0x1f, 0xfe, 0x1f, 0xfe, 0x1f, 0xfe, 0x1f,
1870 0xfe, 0x1f, 0xfe, 0x1f, 0xfe, 0x1f};
1873 image create bitmap file_plain -background white -foreground black -data {
1874 #define plain_width 14
1875 #define plain_height 15
1876 static unsigned char plain_bits[] = {
1877 0xfe, 0x01, 0x02, 0x03, 0x02, 0x05, 0x02, 0x09, 0x02, 0x1f, 0x02, 0x10,
1878 0x02, 0x10, 0x02, 0x10, 0x02, 0x10, 0x02, 0x10, 0x02, 0x10, 0x02, 0x10,
1879 0x02, 0x10, 0x02, 0x10, 0xfe, 0x1f};
1880 } -maskdata $filemask
1882 image create bitmap file_mod -background white -foreground blue -data {
1883 #define mod_width 14
1884 #define mod_height 15
1885 static unsigned char mod_bits[] = {
1886 0xfe, 0x01, 0x02, 0x03, 0x7a, 0x05, 0x02, 0x09, 0x7a, 0x1f, 0x02, 0x10,
1887 0xfa, 0x17, 0x02, 0x10, 0xfa, 0x17, 0x02, 0x10, 0xfa, 0x17, 0x02, 0x10,
1888 0xfa, 0x17, 0x02, 0x10, 0xfe, 0x1f};
1889 } -maskdata $filemask
1891 image create bitmap file_fulltick -background white -foreground "#007000" -data {
1892 #define file_fulltick_width 14
1893 #define file_fulltick_height 15
1894 static unsigned char file_fulltick_bits[] = {
1895 0xfe, 0x01, 0x02, 0x1a, 0x02, 0x0c, 0x02, 0x0c, 0x02, 0x16, 0x02, 0x16,
1896 0x02, 0x13, 0x00, 0x13, 0x86, 0x11, 0x8c, 0x11, 0xd8, 0x10, 0xf2, 0x10,
1897 0x62, 0x10, 0x02, 0x10, 0xfe, 0x1f};
1898 } -maskdata $filemask
1900 image create bitmap file_question -background white -foreground black -data {
1901 #define file_question_width 14
1902 #define file_question_height 15
1903 static unsigned char file_question_bits[] = {
1904 0xfe, 0x01, 0x02, 0x02, 0xe2, 0x04, 0xf2, 0x09, 0x1a, 0x1b, 0x0a, 0x13,
1905 0x82, 0x11, 0xc2, 0x10, 0x62, 0x10, 0x62, 0x10, 0x02, 0x10, 0x62, 0x10,
1906 0x62, 0x10, 0x02, 0x10, 0xfe, 0x1f};
1907 } -maskdata $filemask
1909 image create bitmap file_removed -background white -foreground red -data {
1910 #define file_removed_width 14
1911 #define file_removed_height 15
1912 static unsigned char file_removed_bits[] = {
1913 0xfe, 0x01, 0x02, 0x03, 0x02, 0x05, 0x02, 0x09, 0x02, 0x1f, 0x02, 0x10,
1914 0x1a, 0x16, 0x32, 0x13, 0xe2, 0x11, 0xc2, 0x10, 0xe2, 0x11, 0x32, 0x13,
1915 0x1a, 0x16, 0x02, 0x10, 0xfe, 0x1f};
1916 } -maskdata $filemask
1918 image create bitmap file_merge -background white -foreground blue -data {
1919 #define file_merge_width 14
1920 #define file_merge_height 15
1921 static unsigned char file_merge_bits[] = {
1922 0xfe, 0x01, 0x02, 0x03, 0x62, 0x05, 0x62, 0x09, 0x62, 0x1f, 0x62, 0x10,
1923 0xfa, 0x11, 0xf2, 0x10, 0x62, 0x10, 0x02, 0x10, 0xfa, 0x17, 0x02, 0x10,
1924 0xfa, 0x17, 0x02, 0x10, 0xfe, 0x1f};
1925 } -maskdata $filemask
1927 image create bitmap file_statechange -background white -foreground green -data {
1928 #define file_merge_width 14
1929 #define file_merge_height 15
1930 static unsigned char file_statechange_bits[] = {
1931 0xfe, 0x01, 0x02, 0x03, 0x02, 0x05, 0x02, 0x09, 0x02, 0x1f, 0x62, 0x10,
1932 0x62, 0x10, 0xba, 0x11, 0xba, 0x11, 0x62, 0x10, 0x62, 0x10, 0x02, 0x10,
1933 0x02, 0x10, 0x02, 0x10, 0xfe, 0x1f};
1934 } -maskdata $filemask
1936 set ui_index .vpane.files.index.list
1937 set ui_workdir .vpane.files.workdir.list
1939 set all_icons(_$ui_index) file_plain
1940 set all_icons(A$ui_index) file_plain
1941 set all_icons(M$ui_index) file_fulltick
1942 set all_icons(D$ui_index) file_removed
1943 set all_icons(U$ui_index) file_merge
1944 set all_icons(T$ui_index) file_statechange
1946 set all_icons(_$ui_workdir) file_plain
1947 set all_icons(M$ui_workdir) file_mod
1948 set all_icons(D$ui_workdir) file_question
1949 set all_icons(U$ui_workdir) file_merge
1950 set all_icons(O$ui_workdir) file_plain
1951 set all_icons(T$ui_workdir) file_statechange
1953 set max_status_desc 0
1955 {__ {mc "Unmodified"}}
1957 {_M {mc "Modified, not staged"}}
1958 {M_ {mc "Staged for commit"}}
1959 {MM {mc "Portions staged for commit"}}
1960 {MD {mc "Staged for commit, missing"}}
1962 {_T {mc "File type changed, not staged"}}
1963 {T_ {mc "File type changed, staged"}}
1965 {_O {mc "Untracked, not staged"}}
1966 {A_ {mc "Staged for commit"}}
1967 {AM {mc "Portions staged for commit"}}
1968 {AD {mc "Staged for commit, missing"}}
1971 {D_ {mc "Staged for removal"}}
1972 {DO {mc "Staged for removal, still present"}}
1974 {_U {mc "Requires merge resolution"}}
1975 {U_ {mc "Requires merge resolution"}}
1976 {UU {mc "Requires merge resolution"}}
1977 {UM {mc "Requires merge resolution"}}
1978 {UD {mc "Requires merge resolution"}}
1979 {UT {mc "Requires merge resolution"}}
1981 set text [eval [lindex $i 1]]
1982 if {$max_status_desc < [string length $text]} {
1983 set max_status_desc [string length $text]
1985 set all_descs([lindex $i 0]) $text
1989 ######################################################################
1993 proc scrollbar2many {list mode args} {
1994 foreach w $list {eval $w $mode $args}
1997 proc many2scrollbar {list mode sb top bottom} {
1998 $sb set $top $bottom
1999 foreach w $list {$w $mode moveto $top}
2002 proc incr_font_size {font {amt 1}} {
2003 set sz [font configure $font -size]
2005 font configure $font -size $sz
2006 font configure ${font}bold -size $sz
2007 font configure ${font}italic -size $sz
2010 ######################################################################
2014 set starting_gitk_msg [mc "Starting gitk... please wait..."]
2016 proc do_gitk {revs {is_submodule false}} {
2017 global current_diff_path file_states current_diff_side ui_index
2018 global _gitdir _gitworktree
2020 # -- Always start gitk through whatever we were loaded with. This
2021 # lets us bypass using shell process on Windows systems.
2023 set exe [_which gitk -script]
2024 set cmd [list [info nameofexecutable] $exe]
2026 error_popup [mc "Couldn't find gitk in PATH"]
2032 if {!$is_submodule} {
2037 cd $current_diff_path
2038 if {$revs eq {--}} {
2039 set s $file_states($current_diff_path)
2042 switch -glob -- [lindex $s 0] {
2043 M_ { set old_sha1 [lindex [lindex $s 2] 1] }
2044 _M { set old_sha1 [lindex [lindex $s 3] 1] }
2046 if {$current_diff_side eq $ui_index} {
2047 set old_sha1 [lindex [lindex $s 2] 1]
2048 set new_sha1 [lindex [lindex $s 3] 1]
2050 set old_sha1 [lindex [lindex $s 3] 1]
2054 set revs $old_sha1...$new_sha1
2056 # GIT_DIR and GIT_WORK_TREE for the submodule are not the ones
2057 # we've been using for the main repository, so unset them.
2058 # TODO we could make life easier (start up faster?) for gitk
2059 # by setting these to the appropriate values to allow gitk
2060 # to skip the heuristics to find their proper value
2062 unset env(GIT_WORK_TREE)
2064 eval exec $cmd $revs "--" "--" &
2066 set env(GIT_DIR) $_gitdir
2067 set env(GIT_WORK_TREE) $_gitworktree
2070 ui_status $::starting_gitk_msg
2072 ui_ready $starting_gitk_msg
2077 proc do_git_gui {} {
2078 global current_diff_path
2080 # -- Always start git gui through whatever we were loaded with. This
2081 # lets us bypass using shell process on Windows systems.
2083 set exe [list [_which git]]
2085 error_popup [mc "Couldn't find git gui in PATH"]
2088 global _gitdir _gitworktree
2090 # see note in do_gitk about unsetting these vars when
2091 # running tools in a submodule
2093 unset env(GIT_WORK_TREE)
2096 cd $current_diff_path
2098 eval exec $exe gui &
2100 set env(GIT_DIR) $_gitdir
2101 set env(GIT_WORK_TREE) $_gitworktree
2104 ui_status $::starting_gitk_msg
2106 ui_ready $starting_gitk_msg
2111 proc do_explore {} {
2114 if {[is_Cygwin] || [is_Windows]} {
2115 set explorer "explorer.exe"
2116 } elseif {[is_MacOSX]} {
2119 # freedesktop.org-conforming system is our best shot
2120 set explorer "xdg-open"
2122 eval exec $explorer [list [file nativename $_gitworktree]] &
2128 proc terminate_me {win} {
2130 if {$win ne {.}} return
2134 proc do_quit {{rc {1}}} {
2135 global ui_comm is_quitting repo_config commit_type
2136 global GITGUI_BCK_exists GITGUI_BCK_i
2137 global ui_comm_spell
2138 global ret_code use_ttk
2140 if {$is_quitting} return
2143 if {[winfo exists $ui_comm]} {
2144 # -- Stash our current commit buffer.
2146 set save [gitdir GITGUI_MSG]
2147 if {$GITGUI_BCK_exists && ![$ui_comm edit modified]} {
2148 file rename -force [gitdir GITGUI_BCK] $save
2149 set GITGUI_BCK_exists 0
2151 set msg [string trim [$ui_comm get 0.0 end]]
2152 regsub -all -line {[ \r\t]+$} $msg {} msg
2153 if {(![string match amend* $commit_type]
2154 || [$ui_comm edit modified])
2157 set fd [open $save w]
2158 puts -nonewline $fd $msg
2162 catch {file delete $save}
2166 # -- Cancel our spellchecker if its running.
2168 if {[info exists ui_comm_spell]} {
2172 # -- Remove our editor backup, its not needed.
2174 after cancel $GITGUI_BCK_i
2175 if {$GITGUI_BCK_exists} {
2176 catch {file delete [gitdir GITGUI_BCK]}
2179 # -- Stash our current window geometry into this repository.
2181 set cfg_wmstate [wm state .]
2182 if {[catch {set rc_wmstate $repo_config(gui.wmstate)}]} {
2185 if {$cfg_wmstate ne $rc_wmstate} {
2186 catch {git config gui.wmstate $cfg_wmstate}
2188 if {$cfg_wmstate eq {zoomed}} {
2189 # on Windows wm geometry will lie about window
2190 # position (but not size) when window is zoomed
2191 # restore the window before querying wm geometry
2194 set cfg_geometry [list]
2195 lappend cfg_geometry [wm geometry .]
2197 lappend cfg_geometry [.vpane sashpos 0]
2198 lappend cfg_geometry [.vpane.files sashpos 0]
2200 lappend cfg_geometry [lindex [.vpane sash coord 0] 0]
2201 lappend cfg_geometry [lindex [.vpane.files sash coord 0] 1]
2203 if {[catch {set rc_geometry $repo_config(gui.geometry)}]} {
2206 if {$cfg_geometry ne $rc_geometry} {
2207 catch {git config gui.geometry $cfg_geometry}
2213 # Briefly enable send again, working around Tk bug
2214 # http://sourceforge.net/tracker/?func=detail&atid=112997&aid=1821174&group_id=12997
2215 tk appname [appname]
2224 proc ui_do_rescan {} {
2225 rescan {force_first_diff ui_ready}
2232 proc next_diff {{after {}}} {
2233 global next_diff_p next_diff_w next_diff_i
2234 show_diff $next_diff_p $next_diff_w {} {} $after
2237 proc find_anchor_pos {lst name} {
2238 set lid [lsearch -sorted -exact $lst $name]
2242 foreach lname $lst {
2243 if {$lname >= $name} break
2251 proc find_file_from {flist idx delta path mmask} {
2254 set len [llength $flist]
2255 while {$idx >= 0 && $idx < $len} {
2256 set name [lindex $flist $idx]
2258 if {$name ne $path && [info exists file_states($name)]} {
2259 set state [lindex $file_states($name) 0]
2261 if {$mmask eq {} || [regexp $mmask $state]} {
2272 proc find_next_diff {w path {lno {}} {mmask {}}} {
2273 global next_diff_p next_diff_w next_diff_i
2274 global file_lists ui_index ui_workdir
2276 set flist $file_lists($w)
2278 set lno [find_anchor_pos $flist $path]
2283 if {$mmask ne {} && ![regexp {(^\^)|(\$$)} $mmask]} {
2284 if {$w eq $ui_index} {
2287 set mmask "$mmask\$"
2291 set idx [find_file_from $flist $lno 1 $path $mmask]
2294 set idx [find_file_from $flist $lno -1 $path $mmask]
2299 set next_diff_p [lindex $flist $idx]
2300 set next_diff_i [expr {$idx+1}]
2307 proc next_diff_after_action {w path {lno {}} {mmask {}}} {
2308 global current_diff_path
2310 if {$path ne $current_diff_path} {
2312 } elseif {[find_next_diff $w $path $lno $mmask]} {
2315 return {reshow_diff;}
2319 proc select_first_diff {after} {
2322 if {[find_next_diff $ui_workdir {} 1 {^_?U}] ||
2323 [find_next_diff $ui_workdir {} 1 {[^O]$}]} {
2330 proc force_first_diff {after} {
2331 global ui_workdir current_diff_path file_states
2333 if {[info exists file_states($current_diff_path)]} {
2334 set state [lindex $file_states($current_diff_path) 0]
2340 if {[string first {U} $state] >= 0} {
2341 # Already a conflict, do nothing
2342 } elseif {[find_next_diff $ui_workdir $current_diff_path {} {^_?U}]} {
2344 } elseif {[string index $state 1] ne {O}} {
2345 # Already a diff & no conflicts, do nothing
2346 } elseif {[find_next_diff $ui_workdir $current_diff_path {} {[^O]$}]} {
2357 proc toggle_or_diff {w x y} {
2358 global file_states file_lists current_diff_path ui_index ui_workdir
2359 global last_clicked selected_paths
2361 set pos [split [$w index @$x,$y] .]
2362 set lno [lindex $pos 0]
2363 set col [lindex $pos 1]
2364 set path [lindex $file_lists($w) [expr {$lno - 1}]]
2370 set last_clicked [list $w $lno]
2371 array unset selected_paths
2372 $ui_index tag remove in_sel 0.0 end
2373 $ui_workdir tag remove in_sel 0.0 end
2375 # Determine the state of the file
2376 if {[info exists file_states($path)]} {
2377 set state [lindex $file_states($path) 0]
2382 # Restage the file, or simply show the diff
2383 if {$col == 0 && $y > 1} {
2384 # Conflicts need special handling
2385 if {[string first {U} $state] >= 0} {
2386 # $w must always be $ui_workdir, but...
2387 if {$w ne $ui_workdir} { set lno {} }
2388 merge_stage_workdir $path $lno
2392 if {[string index $state 1] eq {O}} {
2398 set after [next_diff_after_action $w $path $lno $mmask]
2400 if {$w eq $ui_index} {
2402 "Unstaging [short_path $path] from commit" \
2404 [concat $after [list ui_ready]]
2405 } elseif {$w eq $ui_workdir} {
2407 "Adding [short_path $path]" \
2409 [concat $after [list ui_ready]]
2412 show_diff $path $w $lno
2416 proc add_one_to_selection {w x y} {
2417 global file_lists last_clicked selected_paths
2419 set lno [lindex [split [$w index @$x,$y] .] 0]
2420 set path [lindex $file_lists($w) [expr {$lno - 1}]]
2426 if {$last_clicked ne {}
2427 && [lindex $last_clicked 0] ne $w} {
2428 array unset selected_paths
2429 [lindex $last_clicked 0] tag remove in_sel 0.0 end
2432 set last_clicked [list $w $lno]
2433 if {[catch {set in_sel $selected_paths($path)}]} {
2437 unset selected_paths($path)
2438 $w tag remove in_sel $lno.0 [expr {$lno + 1}].0
2440 set selected_paths($path) 1
2441 $w tag add in_sel $lno.0 [expr {$lno + 1}].0
2445 proc add_range_to_selection {w x y} {
2446 global file_lists last_clicked selected_paths
2448 if {[lindex $last_clicked 0] ne $w} {
2449 toggle_or_diff $w $x $y
2453 set lno [lindex [split [$w index @$x,$y] .] 0]
2454 set lc [lindex $last_clicked 1]
2463 foreach path [lrange $file_lists($w) \
2464 [expr {$begin - 1}] \
2465 [expr {$end - 1}]] {
2466 set selected_paths($path) 1
2468 $w tag add in_sel $begin.0 [expr {$end + 1}].0
2471 proc show_more_context {} {
2473 if {$repo_config(gui.diffcontext) < 99} {
2474 incr repo_config(gui.diffcontext)
2479 proc show_less_context {} {
2481 if {$repo_config(gui.diffcontext) > 1} {
2482 incr repo_config(gui.diffcontext) -1
2487 ######################################################################
2495 menu .mbar -tearoff 0
2497 # -- Apple Menu (Mac OS X only)
2499 .mbar add cascade -label Apple -menu .mbar.apple
2502 .mbar add cascade -label [mc Repository] -menu .mbar.repository
2503 .mbar add cascade -label [mc Edit] -menu .mbar.edit
2504 if {[is_enabled branch]} {
2505 .mbar add cascade -label [mc Branch] -menu .mbar.branch
2507 if {[is_enabled multicommit] || [is_enabled singlecommit]} {
2508 .mbar add cascade -label [mc Commit@@noun] -menu .mbar.commit
2510 if {[is_enabled transport]} {
2511 .mbar add cascade -label [mc Merge] -menu .mbar.merge
2512 .mbar add cascade -label [mc Remote] -menu .mbar.remote
2514 if {[is_enabled multicommit] || [is_enabled singlecommit]} {
2515 .mbar add cascade -label [mc Tools] -menu .mbar.tools
2518 # -- Repository Menu
2520 menu .mbar.repository
2523 .mbar.repository add command \
2524 -label [mc "Explore Working Copy"] \
2525 -command {do_explore}
2526 .mbar.repository add separator
2529 .mbar.repository add command \
2530 -label [mc "Browse Current Branch's Files"] \
2531 -command {browser::new $current_branch}
2532 set ui_browse_current [.mbar.repository index last]
2533 .mbar.repository add command \
2534 -label [mc "Browse Branch Files..."] \
2535 -command browser_open::dialog
2536 .mbar.repository add separator
2538 .mbar.repository add command \
2539 -label [mc "Visualize Current Branch's History"] \
2540 -command {do_gitk $current_branch}
2541 set ui_visualize_current [.mbar.repository index last]
2542 .mbar.repository add command \
2543 -label [mc "Visualize All Branch History"] \
2544 -command {do_gitk --all}
2545 .mbar.repository add separator
2547 proc current_branch_write {args} {
2548 global current_branch
2549 .mbar.repository entryconf $::ui_browse_current \
2550 -label [mc "Browse %s's Files" $current_branch]
2551 .mbar.repository entryconf $::ui_visualize_current \
2552 -label [mc "Visualize %s's History" $current_branch]
2554 trace add variable current_branch write current_branch_write
2556 if {[is_enabled multicommit]} {
2557 .mbar.repository add command -label [mc "Database Statistics"] \
2560 .mbar.repository add command -label [mc "Compress Database"] \
2563 .mbar.repository add command -label [mc "Verify Database"] \
2564 -command do_fsck_objects
2566 .mbar.repository add separator
2569 .mbar.repository add command \
2570 -label [mc "Create Desktop Icon"] \
2571 -command do_cygwin_shortcut
2572 } elseif {[is_Windows]} {
2573 .mbar.repository add command \
2574 -label [mc "Create Desktop Icon"] \
2575 -command do_windows_shortcut
2576 } elseif {[is_MacOSX]} {
2577 .mbar.repository add command \
2578 -label [mc "Create Desktop Icon"] \
2579 -command do_macosx_app
2584 proc ::tk::mac::Quit {args} { do_quit }
2586 .mbar.repository add command -label [mc Quit] \
2594 .mbar.edit add command -label [mc Undo] \
2595 -command {catch {[focus] edit undo}} \
2597 .mbar.edit add command -label [mc Redo] \
2598 -command {catch {[focus] edit redo}} \
2600 .mbar.edit add separator
2601 .mbar.edit add command -label [mc Cut] \
2602 -command {catch {tk_textCut [focus]}} \
2604 .mbar.edit add command -label [mc Copy] \
2605 -command {catch {tk_textCopy [focus]}} \
2607 .mbar.edit add command -label [mc Paste] \
2608 -command {catch {tk_textPaste [focus]; [focus] see insert}} \
2610 .mbar.edit add command -label [mc Delete] \
2611 -command {catch {[focus] delete sel.first sel.last}} \
2613 .mbar.edit add separator
2614 .mbar.edit add command -label [mc "Select All"] \
2615 -command {catch {[focus] tag add sel 0.0 end}} \
2620 if {[is_enabled branch]} {
2623 .mbar.branch add command -label [mc "Create..."] \
2624 -command branch_create::dialog \
2626 lappend disable_on_lock [list .mbar.branch entryconf \
2627 [.mbar.branch index last] -state]
2629 .mbar.branch add command -label [mc "Checkout..."] \
2630 -command branch_checkout::dialog \
2632 lappend disable_on_lock [list .mbar.branch entryconf \
2633 [.mbar.branch index last] -state]
2635 .mbar.branch add command -label [mc "Rename..."] \
2636 -command branch_rename::dialog
2637 lappend disable_on_lock [list .mbar.branch entryconf \
2638 [.mbar.branch index last] -state]
2640 .mbar.branch add command -label [mc "Delete..."] \
2641 -command branch_delete::dialog
2642 lappend disable_on_lock [list .mbar.branch entryconf \
2643 [.mbar.branch index last] -state]
2645 .mbar.branch add command -label [mc "Reset..."] \
2646 -command merge::reset_hard
2647 lappend disable_on_lock [list .mbar.branch entryconf \
2648 [.mbar.branch index last] -state]
2653 proc commit_btn_caption {} {
2654 if {[is_enabled nocommit]} {
2657 return [mc Commit@@verb]
2661 if {[is_enabled multicommit] || [is_enabled singlecommit]} {
2664 if {![is_enabled nocommit]} {
2665 .mbar.commit add radiobutton \
2666 -label [mc "New Commit"] \
2667 -command do_select_commit_type \
2668 -variable selected_commit_type \
2670 lappend disable_on_lock \
2671 [list .mbar.commit entryconf [.mbar.commit index last] -state]
2673 .mbar.commit add radiobutton \
2674 -label [mc "Amend Last Commit"] \
2675 -command do_select_commit_type \
2676 -variable selected_commit_type \
2678 lappend disable_on_lock \
2679 [list .mbar.commit entryconf [.mbar.commit index last] -state]
2681 .mbar.commit add separator
2684 .mbar.commit add command -label [mc Rescan] \
2685 -command ui_do_rescan \
2687 lappend disable_on_lock \
2688 [list .mbar.commit entryconf [.mbar.commit index last] -state]
2690 .mbar.commit add command -label [mc "Stage To Commit"] \
2691 -command do_add_selection \
2693 lappend disable_on_lock \
2694 [list .mbar.commit entryconf [.mbar.commit index last] -state]
2696 .mbar.commit add command -label [mc "Stage Changed Files To Commit"] \
2697 -command do_add_all \
2699 lappend disable_on_lock \
2700 [list .mbar.commit entryconf [.mbar.commit index last] -state]
2702 .mbar.commit add command -label [mc "Unstage From Commit"] \
2703 -command do_unstage_selection \
2705 lappend disable_on_lock \
2706 [list .mbar.commit entryconf [.mbar.commit index last] -state]
2708 .mbar.commit add command -label [mc "Revert Changes"] \
2709 -command do_revert_selection \
2711 lappend disable_on_lock \
2712 [list .mbar.commit entryconf [.mbar.commit index last] -state]
2714 .mbar.commit add separator
2716 .mbar.commit add command -label [mc "Show Less Context"] \
2717 -command show_less_context \
2718 -accelerator $M1T-\-
2720 .mbar.commit add command -label [mc "Show More Context"] \
2721 -command show_more_context \
2724 .mbar.commit add separator
2726 if {![is_enabled nocommitmsg]} {
2727 .mbar.commit add command -label [mc "Sign Off"] \
2728 -command do_signoff \
2732 .mbar.commit add command -label [commit_btn_caption] \
2733 -command do_commit \
2734 -accelerator $M1T-Return
2735 lappend disable_on_lock \
2736 [list .mbar.commit entryconf [.mbar.commit index last] -state]
2741 if {[is_enabled branch]} {
2743 .mbar.merge add command -label [mc "Local Merge..."] \
2744 -command merge::dialog \
2746 lappend disable_on_lock \
2747 [list .mbar.merge entryconf [.mbar.merge index last] -state]
2748 .mbar.merge add command -label [mc "Abort Merge..."] \
2749 -command merge::reset_hard
2750 lappend disable_on_lock \
2751 [list .mbar.merge entryconf [.mbar.merge index last] -state]
2756 if {[is_enabled transport]} {
2759 .mbar.remote add command \
2760 -label [mc "Add..."] \
2761 -command remote_add::dialog \
2763 .mbar.remote add command \
2764 -label [mc "Push..."] \
2765 -command do_push_anywhere \
2767 .mbar.remote add command \
2768 -label [mc "Delete Branch..."] \
2769 -command remote_branch_delete::dialog
2773 proc ::tk::mac::ShowPreferences {} {do_options}
2777 .mbar.edit add separator
2778 .mbar.edit add command -label [mc "Options..."] \
2784 if {[is_enabled multicommit] || [is_enabled singlecommit]} {
2785 set tools_menubar .mbar.tools
2787 $tools_menubar add separator
2788 $tools_menubar add command -label [mc "Add..."] -command tools_add::dialog
2789 $tools_menubar add command -label [mc "Remove..."] -command tools_remove::dialog
2791 if {[array names repo_config guitool.*.cmd] ne {}} {
2798 .mbar add cascade -label [mc Help] -menu .mbar.help
2802 .mbar.apple add command -label [mc "About %s" [appname]] \
2804 .mbar.apple add separator
2806 .mbar.help add command -label [mc "About %s" [appname]] \
2809 . configure -menu .mbar
2811 set doc_path [githtmldir]
2812 if {$doc_path ne {}} {
2813 set doc_path [file join $doc_path index.html]
2816 set doc_path [exec cygpath --mixed $doc_path]
2820 if {[file isfile $doc_path]} {
2821 set doc_url "file:$doc_path"
2823 set doc_url {http://www.kernel.org/pub/software/scm/git/docs/}
2826 proc start_browser {url} {
2827 git "web--browse" $url
2830 .mbar.help add command -label [mc "Online Documentation"] \
2831 -command [list start_browser $doc_url]
2833 .mbar.help add command -label [mc "Show SSH Key"] \
2836 unset doc_path doc_url
2838 # -- Standard bindings
2840 wm protocol . WM_DELETE_WINDOW do_quit
2841 bind all <$M1B-Key-q> do_quit
2842 bind all <$M1B-Key-Q> do_quit
2843 bind all <$M1B-Key-w> {destroy [winfo toplevel %W]}
2844 bind all <$M1B-Key-W> {destroy [winfo toplevel %W]}
2846 set subcommand_args {}
2848 puts stderr "usage: $::argv0 $::subcommand $::subcommand_args"
2852 proc normalize_relpath {path} {
2854 foreach item [file split $path] {
2855 if {$item eq {.}} continue
2856 if {$item eq {..} && [llength $elements] > 0
2857 && [lindex $elements end] ne {..}} {
2858 set elements [lrange $elements 0 end-1]
2861 lappend elements $item
2863 return [eval file join $elements]
2866 # -- Not a normal commit type invocation? Do that instead!
2868 switch -- $subcommand {
2871 if {$subcommand eq "blame"} {
2872 set subcommand_args {[--line=<num>] rev? path}
2874 set subcommand_args {rev? path}
2876 if {$argv eq {}} usage
2882 if {$is_path || [file exists $_prefix$a]} {
2883 if {$path ne {}} usage
2884 set path [normalize_relpath $_prefix$a]
2886 } elseif {$a eq {--}} {
2888 if {$head ne {}} usage
2893 } elseif {[regexp {^--line=(\d+)$} $a a lnum]} {
2894 if {$jump_spec ne {} || $head ne {}} usage
2895 set jump_spec [list $lnum]
2896 } elseif {$head eq {}} {
2897 if {$head ne {}} usage
2906 if {$head ne {} && $path eq {}} {
2907 set path [normalize_relpath $_prefix$head]
2914 if {[regexp {^[0-9a-f]{1,39}$} $head]} {
2916 set head [git rev-parse --verify $head]
2922 set current_branch $head
2926 switch -- $subcommand {
2928 if {$jump_spec ne {}} usage
2930 if {$path ne {} && [file isdirectory $path]} {
2931 set head $current_branch
2937 browser::new $head $path
2940 if {$head eq {} && ![file exists $path]} {
2941 puts stderr [mc "fatal: cannot stat path %s: No such file or directory" $path]
2944 blame::new $head $path $jump_spec
2951 if {[llength $argv] != 0} {
2952 puts -nonewline stderr "usage: $argv0"
2953 if {$subcommand ne {gui}
2954 && [file tail $argv0] ne "git-$subcommand"} {
2955 puts -nonewline stderr " $subcommand"
2960 # fall through to setup UI for commits
2963 puts stderr "usage: $argv0 \[{blame|browser|citool}\]"
2970 ${NS}::frame .branch
2971 if {!$use_ttk} {.branch configure -borderwidth 1 -relief sunken}
2972 ${NS}::label .branch.l1 \
2973 -text [mc "Current Branch:"] \
2976 ${NS}::label .branch.cb \
2977 -textvariable current_branch \
2980 pack .branch.l1 -side left
2981 pack .branch.cb -side left -fill x
2982 pack .branch -side top -fill x
2984 # -- Main Window Layout
2986 ${NS}::panedwindow .vpane -orient horizontal
2987 ${NS}::panedwindow .vpane.files -orient vertical
2989 .vpane add .vpane.files
2991 .vpane add .vpane.files -sticky nsew -height 100 -width 200
2993 pack .vpane -anchor n -side top -fill both -expand 1
2995 # -- Index File List
2997 ${NS}::frame .vpane.files.index -height 100 -width 200
2998 tlabel .vpane.files.index.title \
2999 -text [mc "Staged Changes (Will Commit)"] \
3000 -background lightgreen -foreground black
3001 text $ui_index -background white -foreground black \
3003 -width 20 -height 10 \
3005 -cursor $cursor_ptr \
3006 -xscrollcommand {.vpane.files.index.sx set} \
3007 -yscrollcommand {.vpane.files.index.sy set} \
3009 ${NS}::scrollbar .vpane.files.index.sx -orient h -command [list $ui_index xview]
3010 ${NS}::scrollbar .vpane.files.index.sy -orient v -command [list $ui_index yview]
3011 pack .vpane.files.index.title -side top -fill x
3012 pack .vpane.files.index.sx -side bottom -fill x
3013 pack .vpane.files.index.sy -side right -fill y
3014 pack $ui_index -side left -fill both -expand 1
3016 # -- Working Directory File List
3018 ${NS}::frame .vpane.files.workdir -height 100 -width 200
3019 tlabel .vpane.files.workdir.title -text [mc "Unstaged Changes"] \
3020 -background lightsalmon -foreground black
3021 text $ui_workdir -background white -foreground black \
3023 -width 20 -height 10 \
3025 -cursor $cursor_ptr \
3026 -xscrollcommand {.vpane.files.workdir.sx set} \
3027 -yscrollcommand {.vpane.files.workdir.sy set} \
3029 ${NS}::scrollbar .vpane.files.workdir.sx -orient h -command [list $ui_workdir xview]
3030 ${NS}::scrollbar .vpane.files.workdir.sy -orient v -command [list $ui_workdir yview]
3031 pack .vpane.files.workdir.title -side top -fill x
3032 pack .vpane.files.workdir.sx -side bottom -fill x
3033 pack .vpane.files.workdir.sy -side right -fill y
3034 pack $ui_workdir -side left -fill both -expand 1
3036 .vpane.files add .vpane.files.workdir
3037 .vpane.files add .vpane.files.index
3039 .vpane.files paneconfigure .vpane.files.workdir -sticky news
3040 .vpane.files paneconfigure .vpane.files.index -sticky news
3043 foreach i [list $ui_index $ui_workdir] {
3045 $i tag conf in_diff -background [$i tag cget in_sel -background]
3049 # -- Diff and Commit Area
3051 ${NS}::frame .vpane.lower -height 300 -width 400
3052 ${NS}::frame .vpane.lower.commarea
3053 ${NS}::frame .vpane.lower.diff -relief sunken -borderwidth 1
3054 pack .vpane.lower.diff -fill both -expand 1
3055 pack .vpane.lower.commarea -side bottom -fill x
3056 .vpane add .vpane.lower
3057 if {!$use_ttk} {.vpane paneconfigure .vpane.lower -sticky nsew}
3059 # -- Commit Area Buttons
3061 ${NS}::frame .vpane.lower.commarea.buttons
3062 ${NS}::label .vpane.lower.commarea.buttons.l -text {} \
3065 pack .vpane.lower.commarea.buttons.l -side top -fill x
3066 pack .vpane.lower.commarea.buttons -side left -fill y
3068 ${NS}::button .vpane.lower.commarea.buttons.rescan -text [mc Rescan] \
3069 -command ui_do_rescan
3070 pack .vpane.lower.commarea.buttons.rescan -side top -fill x
3071 lappend disable_on_lock \
3072 {.vpane.lower.commarea.buttons.rescan conf -state}
3074 ${NS}::button .vpane.lower.commarea.buttons.incall -text [mc "Stage Changed"] \
3076 pack .vpane.lower.commarea.buttons.incall -side top -fill x
3077 lappend disable_on_lock \
3078 {.vpane.lower.commarea.buttons.incall conf -state}
3080 if {![is_enabled nocommitmsg]} {
3081 ${NS}::button .vpane.lower.commarea.buttons.signoff -text [mc "Sign Off"] \
3083 pack .vpane.lower.commarea.buttons.signoff -side top -fill x
3086 ${NS}::button .vpane.lower.commarea.buttons.commit -text [commit_btn_caption] \
3088 pack .vpane.lower.commarea.buttons.commit -side top -fill x
3089 lappend disable_on_lock \
3090 {.vpane.lower.commarea.buttons.commit conf -state}
3092 if {![is_enabled nocommit]} {
3093 ${NS}::button .vpane.lower.commarea.buttons.push -text [mc Push] \
3094 -command do_push_anywhere
3095 pack .vpane.lower.commarea.buttons.push -side top -fill x
3098 # -- Commit Message Buffer
3100 ${NS}::frame .vpane.lower.commarea.buffer
3101 ${NS}::frame .vpane.lower.commarea.buffer.header
3102 set ui_comm .vpane.lower.commarea.buffer.t
3103 set ui_coml .vpane.lower.commarea.buffer.header.l
3105 if {![is_enabled nocommit]} {
3106 ${NS}::radiobutton .vpane.lower.commarea.buffer.header.new \
3107 -text [mc "New Commit"] \
3108 -command do_select_commit_type \
3109 -variable selected_commit_type \
3111 lappend disable_on_lock \
3112 [list .vpane.lower.commarea.buffer.header.new conf -state]
3113 ${NS}::radiobutton .vpane.lower.commarea.buffer.header.amend \
3114 -text [mc "Amend Last Commit"] \
3115 -command do_select_commit_type \
3116 -variable selected_commit_type \
3118 lappend disable_on_lock \
3119 [list .vpane.lower.commarea.buffer.header.amend conf -state]
3122 ${NS}::label $ui_coml \
3125 proc trace_commit_type {varname args} {
3126 global ui_coml commit_type
3127 switch -glob -- $commit_type {
3128 initial {set txt [mc "Initial Commit Message:"]}
3129 amend {set txt [mc "Amended Commit Message:"]}
3130 amend-initial {set txt [mc "Amended Initial Commit Message:"]}
3131 amend-merge {set txt [mc "Amended Merge Commit Message:"]}
3132 merge {set txt [mc "Merge Commit Message:"]}
3133 * {set txt [mc "Commit Message:"]}
3135 $ui_coml conf -text $txt
3137 trace add variable commit_type write trace_commit_type
3138 pack $ui_coml -side left -fill x
3140 if {![is_enabled nocommit]} {
3141 pack .vpane.lower.commarea.buffer.header.amend -side right
3142 pack .vpane.lower.commarea.buffer.header.new -side right
3145 text $ui_comm -background white -foreground black \
3149 -autoseparators true \
3151 -width $repo_config(gui.commitmsgwidth) -height 9 -wrap none \
3153 -yscrollcommand {.vpane.lower.commarea.buffer.sby set}
3154 ${NS}::scrollbar .vpane.lower.commarea.buffer.sby \
3155 -command [list $ui_comm yview]
3156 pack .vpane.lower.commarea.buffer.header -side top -fill x
3157 pack .vpane.lower.commarea.buffer.sby -side right -fill y
3158 pack $ui_comm -side left -fill y
3159 pack .vpane.lower.commarea.buffer -side left -fill y
3161 # -- Commit Message Buffer Context Menu
3163 set ctxm .vpane.lower.commarea.buffer.ctxm
3164 menu $ctxm -tearoff 0
3167 -command {tk_textCut $ui_comm}
3170 -command {tk_textCopy $ui_comm}
3173 -command {tk_textPaste $ui_comm}
3175 -label [mc Delete] \
3176 -command {catch {$ui_comm delete sel.first sel.last}}
3179 -label [mc "Select All"] \
3180 -command {focus $ui_comm;$ui_comm tag add sel 0.0 end}
3182 -label [mc "Copy All"] \
3184 $ui_comm tag add sel 0.0 end
3185 tk_textCopy $ui_comm
3186 $ui_comm tag remove sel 0.0 end
3190 -label [mc "Sign Off"] \
3192 set ui_comm_ctxm $ctxm
3196 proc trace_current_diff_path {varname args} {
3197 global current_diff_path diff_actions file_states
3198 if {$current_diff_path eq {}} {
3204 set p $current_diff_path
3205 set s [mapdesc [lindex $file_states($p) 0] $p]
3207 set p [escape_path $p]
3211 .vpane.lower.diff.header.status configure -text $s
3212 .vpane.lower.diff.header.file configure -text $f
3213 .vpane.lower.diff.header.path configure -text $p
3214 foreach w $diff_actions {
3218 trace add variable current_diff_path write trace_current_diff_path
3220 gold_frame .vpane.lower.diff.header
3221 tlabel .vpane.lower.diff.header.status \
3224 -width $max_status_desc \
3227 tlabel .vpane.lower.diff.header.file \
3232 tlabel .vpane.lower.diff.header.path \
3237 pack .vpane.lower.diff.header.status -side left
3238 pack .vpane.lower.diff.header.file -side left
3239 pack .vpane.lower.diff.header.path -fill x
3240 set ctxm .vpane.lower.diff.header.ctxm
3241 menu $ctxm -tearoff 0
3249 -- $current_diff_path
3251 lappend diff_actions [list $ctxm entryconf [$ctxm index last] -state]
3252 bind_button3 .vpane.lower.diff.header.path "tk_popup $ctxm %X %Y"
3256 ${NS}::frame .vpane.lower.diff.body
3257 set ui_diff .vpane.lower.diff.body.t
3258 text $ui_diff -background white -foreground black \
3260 -width 80 -height 5 -wrap none \
3262 -xscrollcommand {.vpane.lower.diff.body.sbx set} \
3263 -yscrollcommand {.vpane.lower.diff.body.sby set} \
3265 ${NS}::scrollbar .vpane.lower.diff.body.sbx -orient horizontal \
3266 -command [list $ui_diff xview]
3267 ${NS}::scrollbar .vpane.lower.diff.body.sby -orient vertical \
3268 -command [list $ui_diff yview]
3269 pack .vpane.lower.diff.body.sbx -side bottom -fill x
3270 pack .vpane.lower.diff.body.sby -side right -fill y
3271 pack $ui_diff -side left -fill both -expand 1
3272 pack .vpane.lower.diff.header -side top -fill x
3273 pack .vpane.lower.diff.body -side bottom -fill both -expand 1
3275 $ui_diff tag conf d_cr -elide true
3276 $ui_diff tag conf d_@ -foreground blue -font font_diffbold
3277 $ui_diff tag conf d_+ -foreground {#00a000}
3278 $ui_diff tag conf d_- -foreground red
3280 $ui_diff tag conf d_++ -foreground {#00a000}
3281 $ui_diff tag conf d_-- -foreground red
3282 $ui_diff tag conf d_+s \
3283 -foreground {#00a000} \
3284 -background {#e2effa}
3285 $ui_diff tag conf d_-s \
3287 -background {#e2effa}
3288 $ui_diff tag conf d_s+ \
3289 -foreground {#00a000} \
3291 $ui_diff tag conf d_s- \
3295 $ui_diff tag conf d<<<<<<< \
3296 -foreground orange \
3298 $ui_diff tag conf d======= \
3299 -foreground orange \
3301 $ui_diff tag conf d>>>>>>> \
3302 -foreground orange \
3305 $ui_diff tag raise sel
3307 # -- Diff Body Context Menu
3310 proc create_common_diff_popup {ctxm} {
3312 -label [mc Refresh] \
3313 -command reshow_diff
3314 lappend diff_actions [list $ctxm entryconf [$ctxm index last] -state]
3317 -command {tk_textCopy $ui_diff}
3318 lappend diff_actions [list $ctxm entryconf [$ctxm index last] -state]
3320 -label [mc "Select All"] \
3321 -command {focus $ui_diff;$ui_diff tag add sel 0.0 end}
3322 lappend diff_actions [list $ctxm entryconf [$ctxm index last] -state]
3324 -label [mc "Copy All"] \
3326 $ui_diff tag add sel 0.0 end
3327 tk_textCopy $ui_diff
3328 $ui_diff tag remove sel 0.0 end
3330 lappend diff_actions [list $ctxm entryconf [$ctxm index last] -state]
3333 -label [mc "Decrease Font Size"] \
3334 -command {incr_font_size font_diff -1}
3335 lappend diff_actions [list $ctxm entryconf [$ctxm index last] -state]
3337 -label [mc "Increase Font Size"] \
3338 -command {incr_font_size font_diff 1}
3339 lappend diff_actions [list $ctxm entryconf [$ctxm index last] -state]
3343 build_encoding_menu $emenu [list force_diff_encoding]
3345 -label [mc "Encoding"] \
3347 lappend diff_actions [list $ctxm entryconf [$ctxm index last] -state]
3349 $ctxm add command -label [mc "Options..."] \
3353 set ctxm .vpane.lower.diff.body.ctxm
3354 menu $ctxm -tearoff 0
3356 -label [mc "Apply/Reverse Hunk"] \
3357 -command {apply_hunk $cursorX $cursorY}
3358 set ui_diff_applyhunk [$ctxm index last]
3359 lappend diff_actions [list $ctxm entryconf $ui_diff_applyhunk -state]
3361 -label [mc "Apply/Reverse Line"] \
3362 -command {apply_range_or_line $cursorX $cursorY; do_rescan}
3363 set ui_diff_applyline [$ctxm index last]
3364 lappend diff_actions [list $ctxm entryconf $ui_diff_applyline -state]
3367 -label [mc "Show Less Context"] \
3368 -command show_less_context
3369 lappend diff_actions [list $ctxm entryconf [$ctxm index last] -state]
3371 -label [mc "Show More Context"] \
3372 -command show_more_context
3373 lappend diff_actions [list $ctxm entryconf [$ctxm index last] -state]
3375 create_common_diff_popup $ctxm
3377 set ctxmmg .vpane.lower.diff.body.ctxmmg
3378 menu $ctxmmg -tearoff 0
3379 $ctxmmg add command \
3380 -label [mc "Run Merge Tool"] \
3381 -command {merge_resolve_tool}
3382 lappend diff_actions [list $ctxmmg entryconf [$ctxmmg index last] -state]
3383 $ctxmmg add separator
3384 $ctxmmg add command \
3385 -label [mc "Use Remote Version"] \
3386 -command {merge_resolve_one 3}
3387 lappend diff_actions [list $ctxmmg entryconf [$ctxmmg index last] -state]
3388 $ctxmmg add command \
3389 -label [mc "Use Local Version"] \
3390 -command {merge_resolve_one 2}
3391 lappend diff_actions [list $ctxmmg entryconf [$ctxmmg index last] -state]
3392 $ctxmmg add command \
3393 -label [mc "Revert To Base"] \
3394 -command {merge_resolve_one 1}
3395 lappend diff_actions [list $ctxmmg entryconf [$ctxmmg index last] -state]
3396 $ctxmmg add separator
3397 $ctxmmg add command \
3398 -label [mc "Show Less Context"] \
3399 -command show_less_context
3400 lappend diff_actions [list $ctxmmg entryconf [$ctxmmg index last] -state]
3401 $ctxmmg add command \
3402 -label [mc "Show More Context"] \
3403 -command show_more_context
3404 lappend diff_actions [list $ctxmmg entryconf [$ctxmmg index last] -state]
3405 $ctxmmg add separator
3406 create_common_diff_popup $ctxmmg
3408 set ctxmsm .vpane.lower.diff.body.ctxmsm
3409 menu $ctxmsm -tearoff 0
3410 $ctxmsm add command \
3411 -label [mc "Visualize These Changes In The Submodule"] \
3412 -command {do_gitk -- true}
3413 lappend diff_actions [list $ctxmsm entryconf [$ctxmsm index last] -state]
3414 $ctxmsm add command \
3415 -label [mc "Visualize Current Branch History In The Submodule"] \
3416 -command {do_gitk {} true}
3417 lappend diff_actions [list $ctxmsm entryconf [$ctxmsm index last] -state]
3418 $ctxmsm add command \
3419 -label [mc "Visualize All Branch History In The Submodule"] \
3420 -command {do_gitk --all true}
3421 lappend diff_actions [list $ctxmsm entryconf [$ctxmsm index last] -state]
3422 $ctxmsm add separator
3423 $ctxmsm add command \
3424 -label [mc "Start git gui In The Submodule"] \
3425 -command {do_git_gui}
3426 lappend diff_actions [list $ctxmsm entryconf [$ctxmsm index last] -state]
3427 $ctxmsm add separator
3428 create_common_diff_popup $ctxmsm
3430 proc has_textconv {path} {
3431 if {[is_config_false gui.textconv]} {
3434 set filter [gitattr $path diff set]
3435 set textconv [get_config [join [list diff $filter textconv] .]]
3436 if {$filter ne {set} && $textconv ne {}} {
3443 proc popup_diff_menu {ctxm ctxmmg ctxmsm x y X Y} {
3444 global current_diff_path file_states
3447 if {[info exists file_states($current_diff_path)]} {
3448 set state [lindex $file_states($current_diff_path) 0]
3452 if {[string first {U} $state] >= 0} {
3453 tk_popup $ctxmmg $X $Y
3454 } elseif {$::is_submodule_diff} {
3455 tk_popup $ctxmsm $X $Y
3457 set has_range [expr {[$::ui_diff tag nextrange sel 0.0] != {}}]
3458 if {$::ui_index eq $::current_diff_side} {
3459 set l [mc "Unstage Hunk From Commit"]
3461 set t [mc "Unstage Lines From Commit"]
3463 set t [mc "Unstage Line From Commit"]
3466 set l [mc "Stage Hunk For Commit"]
3468 set t [mc "Stage Lines For Commit"]
3470 set t [mc "Stage Line For Commit"]
3474 || $current_diff_path eq {}
3479 || [has_textconv $current_diff_path]} {
3484 $ctxm entryconf $::ui_diff_applyhunk -state $s -label $l
3485 $ctxm entryconf $::ui_diff_applyline -state $s -label $t
3486 tk_popup $ctxm $X $Y
3489 bind_button3 $ui_diff [list popup_diff_menu $ctxm $ctxmmg $ctxmsm %x %y %X %Y]
3493 set main_status [::status_bar::new .status]
3494 pack .status -anchor w -side bottom -fill x
3495 $main_status show [mc "Initializing..."]
3499 proc on_ttk_pane_mapped {w pane pos} {
3501 after 0 [list after idle [list $w sashpos $pane $pos]]
3503 proc on_tk_pane_mapped {w pane x y} {
3505 after 0 [list after idle [list $w sash place $pane $x $y]]
3507 proc on_application_mapped {} {
3508 global repo_config use_ttk
3510 set gm $repo_config(gui.geometry)
3513 [list on_ttk_pane_mapped %W 0 [lindex $gm 1]]
3514 bind .vpane.files <Map> \
3515 [list on_ttk_pane_mapped %W 0 [lindex $gm 2]]
3518 [list on_tk_pane_mapped %W 0 \
3520 [lindex [.vpane sash coord 0] 1]]
3521 bind .vpane.files <Map> \
3522 [list on_tk_pane_mapped %W 0 \
3523 [lindex [.vpane.files sash coord 0] 0] \
3526 wm geometry . [lindex $gm 0]
3528 if {[info exists repo_config(gui.geometry)]} {
3529 bind . <Map> [list on_application_mapped]
3530 wm geometry . [lindex $repo_config(gui.geometry) 0]
3533 # -- Load window state
3535 if {[info exists repo_config(gui.wmstate)]} {
3536 catch {wm state . $repo_config(gui.wmstate)}
3541 bind $ui_comm <$M1B-Key-Return> {do_commit;break}
3542 bind $ui_comm <$M1B-Key-t> {do_add_selection;break}
3543 bind $ui_comm <$M1B-Key-T> {do_add_selection;break}
3544 bind $ui_comm <$M1B-Key-u> {do_unstage_selection;break}
3545 bind $ui_comm <$M1B-Key-U> {do_unstage_selection;break}
3546 bind $ui_comm <$M1B-Key-j> {do_revert_selection;break}
3547 bind $ui_comm <$M1B-Key-J> {do_revert_selection;break}
3548 bind $ui_comm <$M1B-Key-i> {do_add_all;break}
3549 bind $ui_comm <$M1B-Key-I> {do_add_all;break}
3550 bind $ui_comm <$M1B-Key-x> {tk_textCut %W;break}
3551 bind $ui_comm <$M1B-Key-X> {tk_textCut %W;break}
3552 bind $ui_comm <$M1B-Key-c> {tk_textCopy %W;break}
3553 bind $ui_comm <$M1B-Key-C> {tk_textCopy %W;break}
3554 bind $ui_comm <$M1B-Key-v> {tk_textPaste %W; %W see insert; break}
3555 bind $ui_comm <$M1B-Key-V> {tk_textPaste %W; %W see insert; break}
3556 bind $ui_comm <$M1B-Key-a> {%W tag add sel 0.0 end;break}
3557 bind $ui_comm <$M1B-Key-A> {%W tag add sel 0.0 end;break}
3558 bind $ui_comm <$M1B-Key-minus> {show_less_context;break}
3559 bind $ui_comm <$M1B-Key-KP_Subtract> {show_less_context;break}
3560 bind $ui_comm <$M1B-Key-equal> {show_more_context;break}
3561 bind $ui_comm <$M1B-Key-plus> {show_more_context;break}
3562 bind $ui_comm <$M1B-Key-KP_Add> {show_more_context;break}
3564 bind $ui_diff <$M1B-Key-x> {tk_textCopy %W;break}
3565 bind $ui_diff <$M1B-Key-X> {tk_textCopy %W;break}
3566 bind $ui_diff <$M1B-Key-c> {tk_textCopy %W;break}
3567 bind $ui_diff <$M1B-Key-C> {tk_textCopy %W;break}
3568 bind $ui_diff <$M1B-Key-v> {break}
3569 bind $ui_diff <$M1B-Key-V> {break}
3570 bind $ui_diff <$M1B-Key-a> {%W tag add sel 0.0 end;break}
3571 bind $ui_diff <$M1B-Key-A> {%W tag add sel 0.0 end;break}
3572 bind $ui_diff <Key-Up> {catch {%W yview scroll -1 units};break}
3573 bind $ui_diff <Key-Down> {catch {%W yview scroll 1 units};break}
3574 bind $ui_diff <Key-Left> {catch {%W xview scroll -1 units};break}
3575 bind $ui_diff <Key-Right> {catch {%W xview scroll 1 units};break}
3576 bind $ui_diff <Key-k> {catch {%W yview scroll -1 units};break}
3577 bind $ui_diff <Key-j> {catch {%W yview scroll 1 units};break}
3578 bind $ui_diff <Key-h> {catch {%W xview scroll -1 units};break}
3579 bind $ui_diff <Key-l> {catch {%W xview scroll 1 units};break}
3580 bind $ui_diff <Control-Key-b> {catch {%W yview scroll -1 pages};break}
3581 bind $ui_diff <Control-Key-f> {catch {%W yview scroll 1 pages};break}
3582 bind $ui_diff <Button-1> {focus %W}
3584 if {[is_enabled branch]} {
3585 bind . <$M1B-Key-n> branch_create::dialog
3586 bind . <$M1B-Key-N> branch_create::dialog
3587 bind . <$M1B-Key-o> branch_checkout::dialog
3588 bind . <$M1B-Key-O> branch_checkout::dialog
3589 bind . <$M1B-Key-m> merge::dialog
3590 bind . <$M1B-Key-M> merge::dialog
3592 if {[is_enabled transport]} {
3593 bind . <$M1B-Key-p> do_push_anywhere
3594 bind . <$M1B-Key-P> do_push_anywhere
3597 bind . <Key-F5> ui_do_rescan
3598 bind . <$M1B-Key-r> ui_do_rescan
3599 bind . <$M1B-Key-R> ui_do_rescan
3600 bind . <$M1B-Key-s> do_signoff
3601 bind . <$M1B-Key-S> do_signoff
3602 bind . <$M1B-Key-t> do_add_selection
3603 bind . <$M1B-Key-T> do_add_selection
3604 bind . <$M1B-Key-j> do_revert_selection
3605 bind . <$M1B-Key-J> do_revert_selection
3606 bind . <$M1B-Key-i> do_add_all
3607 bind . <$M1B-Key-I> do_add_all
3608 bind . <$M1B-Key-minus> {show_less_context;break}
3609 bind . <$M1B-Key-KP_Subtract> {show_less_context;break}
3610 bind . <$M1B-Key-equal> {show_more_context;break}
3611 bind . <$M1B-Key-plus> {show_more_context;break}
3612 bind . <$M1B-Key-KP_Add> {show_more_context;break}
3613 bind . <$M1B-Key-Return> do_commit
3614 foreach i [list $ui_index $ui_workdir] {
3615 bind $i <Button-1> "toggle_or_diff $i %x %y; break"
3616 bind $i <$M1B-Button-1> "add_one_to_selection $i %x %y; break"
3617 bind $i <Shift-Button-1> "add_range_to_selection $i %x %y; break"
3621 set file_lists($ui_index) [list]
3622 set file_lists($ui_workdir) [list]
3624 wm title . "[appname] ([reponame]) [file normalize $_gitworktree]"
3625 focus -force $ui_comm
3627 # -- Warn the user about environmental problems. Cygwin's Tcl
3628 # does *not* pass its env array onto any processes it spawns.
3629 # This means that git processes get none of our environment.
3634 set msg [mc "Possible environment issues exist.
3636 The following environment variables are probably
3637 going to be ignored by any Git subprocess run
3641 foreach name [array names env] {
3642 switch -regexp -- $name {
3643 {^GIT_INDEX_FILE$} -
3644 {^GIT_OBJECT_DIRECTORY$} -
3645 {^GIT_ALTERNATE_OBJECT_DIRECTORIES$} -
3647 {^GIT_EXTERNAL_DIFF$} -
3651 {^GIT_(AUTHOR|COMMITTER)_DATE$} {
3652 append msg " - $name\n"
3655 {^GIT_(AUTHOR|COMMITTER)_(NAME|EMAIL)$} {
3656 append msg " - $name\n"
3658 set suggest_user $name
3662 if {$ignored_env > 0} {
3664 This is due to a known issue with the
3665 Tcl binary distributed by Cygwin."]
3667 if {$suggest_user ne {}} {
3670 A good replacement for %s
3671 is placing values for the user.name and
3672 user.email settings into your personal
3678 unset ignored_env msg suggest_user name
3681 # -- Only initialize complex UI if we are going to stay running.
3683 if {[is_enabled transport]} {
3686 set n [.mbar.remote index end]
3687 populate_remotes_menu
3688 set n [expr {[.mbar.remote index end] - $n}]
3690 if {[.mbar.remote type 0] eq "tearoff"} { incr n }
3691 .mbar.remote insert $n separator
3696 if {[winfo exists $ui_comm]} {
3697 set GITGUI_BCK_exists [load_message GITGUI_BCK]
3699 # -- If both our backup and message files exist use the
3700 # newer of the two files to initialize the buffer.
3702 if {$GITGUI_BCK_exists} {
3703 set m [gitdir GITGUI_MSG]
3704 if {[file isfile $m]} {
3705 if {[file mtime [gitdir GITGUI_BCK]] > [file mtime $m]} {
3706 catch {file delete [gitdir GITGUI_MSG]}
3708 $ui_comm delete 0.0 end
3710 $ui_comm edit modified false
3711 catch {file delete [gitdir GITGUI_BCK]}
3712 set GITGUI_BCK_exists 0
3718 proc backup_commit_buffer {} {
3719 global ui_comm GITGUI_BCK_exists
3721 set m [$ui_comm edit modified]
3722 if {$m || $GITGUI_BCK_exists} {
3723 set msg [string trim [$ui_comm get 0.0 end]]
3724 regsub -all -line {[ \r\t]+$} $msg {} msg
3727 if {$GITGUI_BCK_exists} {
3728 catch {file delete [gitdir GITGUI_BCK]}
3729 set GITGUI_BCK_exists 0
3733 set fd [open [gitdir GITGUI_BCK] w]
3734 puts -nonewline $fd $msg
3736 set GITGUI_BCK_exists 1
3740 $ui_comm edit modified false
3743 set ::GITGUI_BCK_i [after 2000 backup_commit_buffer]
3746 backup_commit_buffer
3748 # -- If the user has aspell available we can drive it
3749 # in pipe mode to spellcheck the commit message.
3751 set spell_cmd [list |]
3752 set spell_dict [get_config gui.spellingdictionary]
3753 lappend spell_cmd aspell
3754 if {$spell_dict ne {}} {
3755 lappend spell_cmd --master=$spell_dict
3757 lappend spell_cmd --mode=none
3758 lappend spell_cmd --encoding=utf-8
3759 lappend spell_cmd pipe
3760 if {$spell_dict eq {none}
3761 || [catch {set spell_fd [open $spell_cmd r+]} spell_err]} {
3762 bind_button3 $ui_comm [list tk_popup $ui_comm_ctxm %X %Y]
3764 set ui_comm_spell [spellcheck::init \
3770 unset -nocomplain spell_cmd spell_fd spell_err spell_dict
3773 lock_index begin-read
3774 if {![winfo ismapped .]} {
3778 if {[is_enabled initialamend]} {
3784 if {[is_enabled nocommitmsg]} {
3785 $ui_comm configure -state disabled -background gray
3788 if {[is_enabled multicommit]} {
3791 if {[is_enabled retcode]} {
3792 bind . <Destroy> {+terminate_me %W}
3794 if {$picked && [is_config_true gui.autoexplore]} {
3800 # indent-tabs-mode: t