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 [mc
"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 get_config
{name
} {
274 if {[catch
{set v
$repo_config($name)}]} {
286 if {$_isbare eq
{}} {
288 set _bare
[git rev-parse
--is-bare-repository]
290 true
{ set _isbare
1 }
291 false
{ set _isbare
0}
295 if {[is_config_true core.bare
]
296 ||
($_gitworktree eq
{}
297 && [lindex
[file split $_gitdir] end
] ne
{.git
})} {
307 ######################################################################
311 proc _trace_exec
{cmd
} {
312 if {!$
::_trace
} return
318 if {[regexp
{[ \t\r\n'"$?*]} $v]} {
326 proc _git_cmd {name} {
329 if {[catch {set v $_git_cmd_path($name)}]} {
333 --exec-path { return [list $::_git $name] }
336 set p [gitexec git-$name$::_search_exe]
337 if {[file exists $p]} {
339 } elseif {[is_Windows] && [file exists [gitexec git-$name]]} {
340 # Try to determine what sort of magic will make
341 # git-$name go and do its thing, because native
342 # Tcl on Windows doesn't know it.
344 set p
[gitexec git-
$name]
349 switch
-glob -- [lindex
$s 0] {
351 #!*perl { set i perl }
352 #!*python { set i python }
353 default
{ error
"git-$name is not supported: $s" }
357 if {![info exists interp
]} {
358 set interp
[_which
$i]
361 error
"git-$name requires $i (not in PATH)"
363 set v
[concat
[list
$interp] [lrange
$s 1 end
] [list
$p]]
365 # Assume it is builtin to git somehow and we
366 # aren't actually able to see a file for it.
368 set v
[list $
::_git
$name]
370 set _git_cmd_path
($name) $v
375 proc _which
{what args
} {
376 global env _search_exe _search_path
378 if {$_search_path eq
{}} {
379 if {[is_Cygwin
] && [regexp
{^
(/|\.
:)} $env(PATH
)]} {
380 set _search_path
[split [exec cygpath \
386 } elseif
{[is_Windows
]} {
387 set gitguidir
[file dirname [info
script]]
388 regsub
-all ";" $gitguidir "\\;" gitguidir
389 set env
(PATH
) "$gitguidir;$env(PATH)"
390 set _search_path
[split $env(PATH
) {;}]
393 set _search_path
[split $env(PATH
) :]
398 if {[is_Windows
] && [lsearch
-exact $args -script] >= 0} {
401 set suffix
$_search_exe
404 foreach p
$_search_path {
405 set p
[file join $p $what$suffix]
406 if {[file exists
$p]} {
407 return [file normalize
$p]
413 proc _lappend_nice
{cmd_var
} {
417 if {![info exists _nice
]} {
418 set _nice
[_which nice
]
429 switch
-- [lindex
$args 0] {
440 set args
[lrange
$args 1 end
]
443 set cmdp
[_git_cmd
[lindex
$args 0]]
444 set args
[lrange
$args 1 end
]
446 _trace_exec
[concat
$opt $cmdp $args]
447 set result
[eval exec $opt $cmdp $args]
449 puts stderr
"< $result"
454 proc _open_stdout_stderr
{cmd
} {
457 set fd
[open
[concat
[list |
] $cmd] r
]
459 if { [lindex
$cmd end
] eq
{2>@
1}
460 && $err eq
{can not
find channel named
"1"}
462 # Older versions of Tcl 8.4 don't have this 2>@1 IO
463 # redirect operator. Fallback to |& cat for those.
464 # The command was not actually started, so its safe
465 # to try to start it a second time.
467 set fd
[open
[concat \
469 [lrange
$cmd 0 end-1
] \
476 fconfigure
$fd -eofchar {}
480 proc git_read
{args
} {
484 switch
-- [lindex
$args 0] {
499 set args
[lrange
$args 1 end
]
502 set cmdp
[_git_cmd
[lindex
$args 0]]
503 set args
[lrange
$args 1 end
]
505 return [_open_stdout_stderr
[concat
$opt $cmdp $args]]
508 proc git_write
{args
} {
512 switch
-- [lindex
$args 0] {
523 set args
[lrange
$args 1 end
]
526 set cmdp
[_git_cmd
[lindex
$args 0]]
527 set args
[lrange
$args 1 end
]
529 _trace_exec
[concat
$opt $cmdp $args]
530 return [open
[concat
[list |
] $opt $cmdp $args] w
]
533 proc githook_read
{hook_name args
} {
534 set pchook
[gitdir hooks
$hook_name]
537 # On Windows [file executable] might lie so we need to ask
538 # the shell if the hook is executable. Yes that's annoying.
542 if {![info exists interp
]} {
543 set interp
[_which sh
]
546 error
"hook execution requires sh (not in PATH)"
549 set scr
{if test -x "$1";then exec "$@";fi}
550 set sh_c
[list
$interp -c $scr $interp $pchook]
551 return [_open_stdout_stderr
[concat
$sh_c $args]]
554 if {[file executable
$pchook]} {
555 return [_open_stdout_stderr
[concat
[list
$pchook] $args]]
561 proc kill_file_process
{fd
} {
562 set process
[pid
$fd]
566 # Use a Cygwin-specific flag to allow killing
567 # native Windows processes
568 exec kill -f $process
575 proc gitattr
{path attr default
} {
576 if {[catch
{set r
[git check-attr
$attr -- $path]}]} {
579 set r
[join [lrange
[split $r :] 2 end
] :]
582 if {$r eq
{unspecified
}} {
589 regsub
-all ' $value "'\\''" value
593 proc load_current_branch {} {
594 global current_branch is_detached
596 set fd [open [gitdir HEAD] r]
597 if {[gets $fd ref] < 1} {
602 set pfx {ref: refs/heads/}
603 set len [string length $pfx]
604 if {[string equal -length $len $pfx $ref]} {
605 # We're on a branch. It might not exist. But
606 # HEAD looks good enough to be a branch.
608 set current_branch [string range $ref $len end]
611 # Assume this is a detached head.
613 set current_branch HEAD
618 auto_load tk_optionMenu
619 rename tk_optionMenu real__tkOptionMenu
620 proc tk_optionMenu {w varName args} {
621 set m [eval real__tkOptionMenu $w $varName $args]
622 $m configure -font font_ui
623 $w configure -font font_ui
627 proc rmsel_tag {text} {
629 -background [$text cget -background] \
630 -foreground [$text cget -foreground] \
632 $text tag conf in_sel -background lightgray
633 bind $text <Motion> break
638 bind . <Visibility> {
639 bind . <Visibility> {}
644 wm iconbitmap . -default $oguilib/git-gui.ico
645 set ::tk::AlwaysShowSelection 1
647 # Spoof an X11 display for SSH
648 if {![info exists env(DISPLAY)]} {
649 set env(DISPLAY) :9999
653 image create photo gitlogo -width 16 -height 16
655 gitlogo put #33CC33 -to 7 0 9 2
656 gitlogo put #33CC33 -to 4 2 12 4
657 gitlogo put #33CC33 -to 7 4 9 6
658 gitlogo put #CC3333 -to 4 6 12 8
659 gitlogo put gray26 -to 4 9 6 10
660 gitlogo put gray26 -to 3 10 6 12
661 gitlogo put gray26 -to 8 9 13 11
662 gitlogo put gray26 -to 8 11 10 12
663 gitlogo put gray26 -to 11 11 13 14
664 gitlogo put gray26 -to 3 12 5 14
665 gitlogo put gray26 -to 5 13
666 gitlogo put gray26 -to 10 13
667 gitlogo put gray26 -to 4 14 12 15
668 gitlogo put gray26 -to 5 15 11 16
671 wm iconphoto . -default gitlogo
675 ######################################################################
681 if {[lsearch -exact [font names] TkDefaultFont] != -1} {
682 eval [linsert [font actual TkDefaultFont] 0 font configure font_ui]
683 eval [linsert [font actual TkFixedFont] 0 font create font_diff]
685 font create font_diff -family Courier -size 10
688 eval font configure font_ui [font actual [.dummy cget -font]]
693 font create font_uiitalic
694 font create font_uibold
695 font create font_diffbold
696 font create font_diffitalic
698 foreach class {Button Checkbutton Entry Label
699 Labelframe Listbox Message
700 Radiobutton Spinbox Text} {
701 option add *$class.font font_ui
704 option add *Menu.font font_ui
705 option add *Entry.borderWidth 1 startupFile
706 option add *Entry.relief sunken startupFile
707 option add *RadioButton.anchor w startupFile
711 if {[is_Windows] || [is_MacOSX]} {
712 option add *Menu.tearOff 0
723 proc bind_button3 {w cmd} {
724 bind $w <Any-Button-3> $cmd
726 # Mac OS X sends Button-2 on right click through three-button mouse,
727 # or through trackpad right-clicking (two-finger touch + click).
728 bind $w <Any-Button-2> $cmd
729 bind $w <Control-Button-1> $cmd
733 proc apply_config {} {
734 global repo_config font_descs
736 foreach option $font_descs {
737 set name [lindex $option 0]
738 set font [lindex $option 1]
741 foreach {cn cv} $repo_config(gui.$name) {
742 if {$cn eq {-weight}} {
745 font configure $font $cn $cv
748 font configure $font -weight normal
751 error_popup [strcat [mc "Invalid font specified
in %s
:" "gui.
$name"] "\n\n$err"]
753 foreach {cn cv} [font configure $font] {
754 font configure ${font}bold $cn $cv
755 font configure ${font}italic $cn $cv
757 font configure ${font}bold -weight bold
758 font configure ${font}italic -slant italic
764 if {$repo_config(gui.usettk)} {
765 set use_ttk [package vsatisfies [package provide Tk] 8.5]
768 bind [winfo class .] <<ThemeChanged>> [list InitTheme]
774 set default_config(branch.autosetupmerge) true
775 set default_config(merge.tool) {}
776 set default_config(mergetool.keepbackup) true
777 set default_config(merge.diffstat) true
778 set default_config(merge.summary) false
779 set default_config(merge.verbosity) 2
780 set default_config(user.name) {}
781 set default_config(user.email) {}
783 set default_config(gui.encoding) [encoding system]
784 set default_config(gui.matchtrackingbranch) false
785 set default_config(gui.pruneduringfetch) false
786 set default_config(gui.trustmtime) false
787 set default_config(gui.fastcopyblame) false
788 set default_config(gui.copyblamethreshold) 40
789 set default_config(gui.blamehistoryctx) 7
790 set default_config(gui.diffcontext) 5
791 set default_config(gui.commitmsgwidth) 75
792 set default_config(gui.newbranchtemplate) {}
793 set default_config(gui.spellingdictionary) {}
794 set default_config(gui.fontui) [font configure font_ui]
795 set default_config(gui.fontdiff) [font configure font_diff]
796 # TODO: this option should be added to the git-config documentation
797 set default_config(gui.maxfilesdisplayed) 5000
798 set default_config(gui.usettk) 1
800 {fontui font_ui {mc "Main Font
"}}
801 {fontdiff font_diff {mc "Diff
/Console Font
"}}
804 ######################################################################
808 set _git [_which git]
810 catch {wm withdraw .}
814 -title [mc "git-gui
: fatal error
"] \
815 -message [mc "Cannot
find git
in PATH.
"]
819 ######################################################################
823 if {[catch {set _git_version [git --version]} err]} {
824 catch {wm withdraw .}
828 -title [mc "git-gui
: fatal error
"] \
829 -message "Cannot determine Git version
:
833 [appname
] requires Git
1.5.0 or later.
"
836 if {![regsub {^git version } $_git_version {} _git_version]} {
837 catch {wm withdraw .}
841 -title [mc "git-gui
: fatal error
"] \
842 -message [strcat [mc "Cannot parse Git version string
:"] "\n\n$_git_version"]
846 set _real_git_version $_git_version
847 regsub -- {[\-\.]dirty$} $_git_version {} _git_version
848 regsub {\.[0-9]+\.g[0-9a-f]+$} $_git_version {} _git_version
849 regsub {\.[a-zA-Z]+\.?[0-9]+$} $_git_version {} _git_version
850 regsub {\.GIT$} $_git_version {} _git_version
851 regsub {\.[a-zA-Z]+\.?[0-9]+$} $_git_version {} _git_version
853 if {![regexp {^[1-9]+(\.[0-9]+)+$} $_git_version]} {
854 catch {wm withdraw .}
859 -title "[appname
]: warning
" \
860 -message [mc "Git version cannot be determined.
862 %s claims it is version
'%s'.
864 %s requires
at least Git
1.5.0 or later.
866 Assume
'%s' is version
1.5.0?
867 " $_git $_real_git_version [appname] $_real_git_version]] eq {yes}} {
868 set _git_version 1.5.0
873 unset _real_git_version
875 proc git-version {args} {
878 switch [llength $args] {
884 set op [lindex $args 0]
885 set vr [lindex $args 1]
886 set cm [package vcompare $_git_version $vr]
887 return [expr $cm $op 0]
891 set type [lindex $args 0]
892 set name [lindex $args 1]
893 set parm [lindex $args 2]
894 set body [lindex $args 3]
896 if {($type ne {proc} && $type ne {method})} {
897 error "Invalid arguments to git-version
"
899 if {[llength $body] < 2 || [lindex $body end-1] ne {default}} {
900 error "Last arm of
$type $name must be default
"
903 foreach {op vr cb} [lrange $body 0 end-2] {
904 if {[git-version $op $vr]} {
905 return [uplevel [list $type $name $parm $cb]]
909 return [uplevel [list $type $name $parm [lindex $body end]]]
913 error "git-version
>= x
"
919 if {[git-version < 1.5]} {
920 catch {wm withdraw .}
924 -title [mc "git-gui
: fatal error
"] \
925 -message "[appname
] requires Git
1.5.0 or later.
927 You are using
[git-version
]:
933 ######################################################################
935 ## configure our library
937 set idx [file join $oguilib tclIndex]
938 if {[catch {set fd [open $idx r]} err]} {
939 catch {wm withdraw .}
943 -title [mc "git-gui
: fatal error
"] \
947 if {[gets $fd] eq {# Autogenerated by git-gui Makefile}} {
949 while {[gets $fd n] >= 0} {
950 if {$n ne {} && ![string match #* $n]} {
962 if {[lsearch -exact $loaded $p] >= 0} continue
963 source [file join $oguilib $p]
968 set auto_path [concat [list $oguilib] $auto_path]
970 unset -nocomplain idx fd
972 ######################################################################
974 ## config file parsing
976 git-version proc _parse_config {arr_name args} {
983 [list git_read config] \
985 [list --null --list]]
986 fconfigure $fd_rc -translation binary
987 set buf [read $fd_rc]
990 foreach line [split $buf "\
0"] {
991 if {[regexp {^([^\n]+)\n(.*)$} $line line name value]} {
992 if {[is_many_config $name]} {
993 lappend arr($name) $value
995 set arr($name) $value
1004 set fd_rc [eval [list git_read config --list] $args]
1005 while {[gets $fd_rc line] >= 0} {
1006 if {[regexp {^([^=]+)=(.*)$} $line line name value]} {
1007 if {[is_many_config $name]} {
1008 lappend arr($name) $value
1010 set arr($name) $value
1019 proc load_config {include_global} {
1020 global repo_config global_config system_config default_config
1022 if {$include_global} {
1023 _parse_config system_config --system
1024 _parse_config global_config --global
1026 _parse_config repo_config
1028 foreach name [array names default_config] {
1029 if {[catch {set v $system_config($name)}]} {
1030 set system_config($name) $default_config($name)
1033 foreach name [array names system_config] {
1034 if {[catch {set v $global_config($name)}]} {
1035 set global_config($name) $system_config($name)
1037 if {[catch {set v $repo_config($name)}]} {
1038 set repo_config($name) $system_config($name)
1043 ######################################################################
1045 ## feature option selection
1047 if {[regexp {^git-(.+)$} [file tail $argv0] _junk subcommand]} {
1052 if {$subcommand eq {gui.sh}} {
1055 if {$subcommand eq {gui} && [llength $argv] > 0} {
1056 set subcommand [lindex $argv 0]
1057 set argv [lrange $argv 1 end]
1060 enable_option multicommit
1061 enable_option branch
1062 enable_option transport
1065 switch -- $subcommand {
1070 disable_option multicommit
1071 disable_option branch
1072 disable_option transport
1075 enable_option singlecommit
1076 enable_option retcode
1078 disable_option multicommit
1079 disable_option branch
1080 disable_option transport
1082 while {[llength $argv] > 0} {
1083 set a [lindex $argv 0]
1086 enable_option initialamend
1089 enable_option nocommit
1090 enable_option nocommitmsg
1093 disable_option nocommitmsg
1100 set argv [lrange $argv 1 end]
1105 ######################################################################
1107 ## execution environment
1109 set have_tk85 [expr {[package vcompare $tk_version "8.5"] >= 0}]
1111 # Suggest our implementation of askpass, if none is set
1112 if {![info exists env(SSH_ASKPASS)]} {
1113 set env(SSH_ASKPASS) [gitexec git-gui--askpass]
1116 ######################################################################
1122 set _gitdir $env(GIT_DIR)
1126 # beware that from the .git dir this sets _gitdir to .
1127 # and _prefix to the empty string
1128 set _gitdir [git rev-parse --git-dir]
1129 set _prefix [git rev-parse --show-prefix]
1133 choose_repository::pick
1137 # we expand the _gitdir when it's just a single dot (i.e. when we're being
1138 # run from the .git dir itself) lest the routines to find the worktree
1140 if {$_gitdir eq ".
"} {
1144 if {![file isdirectory $_gitdir] && [is_Cygwin]} {
1145 catch {set _gitdir [exec cygpath --windows $_gitdir]}
1147 if {![file isdirectory $_gitdir]} {
1148 catch {wm withdraw .}
1149 error_popup [strcat [mc "Git directory not found
:"] "\n\n$_gitdir"]
1152 # _gitdir exists, so try loading the config
1155 # try to set work tree from environment, falling back to core.worktree
1156 if {[catch { set _gitworktree $env(GIT_WORK_TREE) }]} {
1157 set _gitworktree [get_config core.worktree]
1159 if {$_prefix ne {}} {
1160 if {$_gitworktree eq {}} {
1161 regsub -all {[^/]+/} $_prefix ../ cdup
1163 set cdup $_gitworktree
1165 if {[catch {cd $cdup} err]} {
1166 catch {wm withdraw .}
1167 error_popup [strcat [mc "Cannot move to top of working directory
:"] "\n\n$err"]
1170 set _gitworktree [pwd]
1172 } elseif {![is_enabled bare]} {
1174 catch {wm withdraw .}
1175 error_popup [strcat [mc "Cannot use bare repository
:"] "\n\n$_gitdir"]
1178 if {$_gitworktree eq {}} {
1179 set _gitworktree [file dirname $_gitdir]
1181 if {[catch {cd $_gitworktree} err]} {
1182 catch {wm withdraw .}
1183 error_popup [strcat [mc "No working directory
"] " $_gitworktree:\n\n$err"]
1186 set _gitworktree [pwd]
1188 set _reponame [file split [file normalize $_gitdir]]
1189 if {[lindex $_reponame end] eq {.git}} {
1190 set _reponame [lindex $_reponame end-1]
1192 set _reponame [lindex $_reponame end]
1195 set env(GIT_DIR) $_gitdir
1196 set env(GIT_WORK_TREE) $_gitworktree
1198 ######################################################################
1202 set current_diff_path {}
1203 set current_diff_side {}
1204 set diff_actions [list]
1208 set MERGE_HEAD [list]
1211 set current_branch {}
1213 set current_diff_path {}
1215 set is_submodule_diff 0
1216 set is_conflict_diff 0
1217 set selected_commit_type new
1218 set diff_empty_count 0
1220 set nullid "0000000000000000000000000000000000000000"
1221 set nullid2 "0000000000000000000000000000000000000001"
1223 ######################################################################
1231 set disable_on_lock [list]
1232 set index_lock_type none
1234 proc lock_index {type} {
1235 global index_lock_type disable_on_lock
1237 if {$index_lock_type eq {none}} {
1238 set index_lock_type $type
1239 foreach w $disable_on_lock {
1240 uplevel #0 $w disabled
1243 } elseif {$index_lock_type eq "begin-
$type"} {
1244 set index_lock_type $type
1250 proc unlock_index {} {
1251 global index_lock_type disable_on_lock
1253 set index_lock_type none
1254 foreach w $disable_on_lock {
1255 uplevel #0 $w normal
1259 ######################################################################
1263 proc repository_state {ctvar hdvar mhvar} {
1264 global current_branch
1265 upvar $ctvar ct $hdvar hd $mhvar mh
1270 if {[catch {set hd [git rev-parse --verify HEAD]}]} {
1276 set merge_head [gitdir MERGE_HEAD]
1277 if {[file exists $merge_head]} {
1279 set fd_mh [open $merge_head r]
1280 while {[gets $fd_mh line] >= 0} {
1291 global PARENT empty_tree
1293 set p [lindex $PARENT 0]
1297 if {$empty_tree eq {}} {
1298 set empty_tree [git mktree << {}]
1303 proc force_amend {} {
1304 global selected_commit_type
1305 global HEAD PARENT MERGE_HEAD commit_type
1307 repository_state newType newHEAD newMERGE_HEAD
1310 set MERGE_HEAD $newMERGE_HEAD
1311 set commit_type $newType
1313 set selected_commit_type amend
1314 do_select_commit_type
1317 proc rescan {after {honor_trustmtime 1}} {
1318 global HEAD PARENT MERGE_HEAD commit_type
1319 global ui_index ui_workdir ui_comm
1320 global rescan_active file_states
1323 if {$rescan_active > 0 || ![lock_index read]} return
1325 repository_state newType newHEAD newMERGE_HEAD
1326 if {[string match amend* $commit_type]
1327 && $newType eq {normal}
1328 && $newHEAD eq $HEAD} {
1332 set MERGE_HEAD $newMERGE_HEAD
1333 set commit_type $newType
1336 array unset file_states
1338 if {!$::GITGUI_BCK_exists &&
1339 (![$ui_comm edit modified]
1340 || [string trim [$ui_comm get 0.0 end]] eq {})} {
1341 if {[string match amend* $commit_type]} {
1342 } elseif {[load_message GITGUI_MSG]} {
1343 } elseif {[run_prepare_commit_msg_hook]} {
1344 } elseif {[load_message MERGE_MSG]} {
1345 } elseif {[load_message SQUASH_MSG]} {
1348 $ui_comm edit modified false
1351 if {$honor_trustmtime && $repo_config(gui.trustmtime) eq {true}} {
1352 rescan_stage2 {} $after
1355 ui_status [mc "Refreshing
file status...
"]
1356 set fd_rf [git_read update-index \
1362 fconfigure $fd_rf -blocking 0 -translation binary
1363 fileevent $fd_rf readable \
1364 [list rescan_stage2 $fd_rf $after]
1369 set is_git_info_exclude {}
1370 proc have_info_exclude {} {
1371 global is_git_info_exclude
1373 if {$is_git_info_exclude eq {}} {
1374 if {[catch {exec test -f [gitdir info exclude]}]} {
1375 set is_git_info_exclude 0
1377 set is_git_info_exclude 1
1380 return $is_git_info_exclude
1383 proc have_info_exclude {} {
1384 return [file readable [gitdir info exclude]]
1388 proc rescan_stage2 {fd after} {
1389 global rescan_active buf_rdi buf_rdf buf_rlo
1393 if {![eof $fd]} return
1397 set ls_others [list --exclude-per-directory=.gitignore]
1398 if {[have_info_exclude]} {
1399 lappend ls_others "--exclude-from=[gitdir info exclude
]"
1401 set user_exclude [get_config core.excludesfile]
1402 if {$user_exclude ne {} && [file readable $user_exclude]} {
1403 lappend ls_others "--exclude-from=$user_exclude"
1411 ui_status [mc "Scanning
for modified files ...
"]
1412 set fd_di [git_read diff-index --cached -z [PARENT]]
1413 set fd_df [git_read diff-files -z]
1414 set fd_lo [eval git_read ls-files --others -z $ls_others]
1416 fconfigure $fd_di -blocking 0 -translation binary -encoding binary
1417 fconfigure $fd_df -blocking 0 -translation binary -encoding binary
1418 fconfigure $fd_lo -blocking 0 -translation binary -encoding binary
1419 fileevent $fd_di readable [list read_diff_index $fd_di $after]
1420 fileevent $fd_df readable [list read_diff_files $fd_df $after]
1421 fileevent $fd_lo readable [list read_ls_others $fd_lo $after]
1424 proc load_message {file} {
1427 set f [gitdir $file]
1428 if {[file isfile $f]} {
1429 if {[catch {set fd [open $f r]}]} {
1432 fconfigure $fd -eofchar {}
1433 set content [string trim [read $fd]]
1435 regsub -all -line {[ \r\t]+$} $content {} content
1436 $ui_comm delete 0.0 end
1437 $ui_comm insert end $content
1443 proc run_prepare_commit_msg_hook {} {
1446 # prepare-commit-msg requires PREPARE_COMMIT_MSG exist. From git-gui
1447 # it will be .git/MERGE_MSG (merge), .git/SQUASH_MSG (squash), or an
1448 # empty file but existant file.
1450 set fd_pcm [open [gitdir PREPARE_COMMIT_MSG] a]
1452 if {[file isfile [gitdir MERGE_MSG]]} {
1453 set pcm_source "merge
"
1454 set fd_mm [open [gitdir MERGE_MSG] r]
1455 puts -nonewline $fd_pcm [read $fd_mm]
1457 } elseif {[file isfile [gitdir SQUASH_MSG]]} {
1458 set pcm_source "squash
"
1459 set fd_sm [open [gitdir SQUASH_MSG] r]
1460 puts -nonewline $fd_pcm [read $fd_sm]
1468 set fd_ph [githook_read prepare-commit-msg \
1469 [gitdir PREPARE_COMMIT_MSG] $pcm_source]
1471 catch {file delete [gitdir PREPARE_COMMIT_MSG]}
1475 ui_status [mc "Calling prepare-commit-msg hook...
"]
1478 fconfigure $fd_ph -blocking 0 -translation binary -eofchar {}
1479 fileevent $fd_ph readable \
1480 [list prepare_commit_msg_hook_wait $fd_ph]
1485 proc prepare_commit_msg_hook_wait {fd_ph} {
1488 append pch_error [read $fd_ph]
1489 fconfigure $fd_ph -blocking 1
1491 if {[catch {close $fd_ph}]} {
1492 ui_status [mc "Commit declined by prepare-commit-msg hook.
"]
1493 hook_failed_popup prepare-commit-msg $pch_error
1494 catch {file delete [gitdir PREPARE_COMMIT_MSG]}
1497 load_message PREPARE_COMMIT_MSG
1500 catch {file delete [gitdir PREPARE_COMMIT_MSG]}
1503 fconfigure $fd_ph -blocking 0
1504 catch {file delete [gitdir PREPARE_COMMIT_MSG]}
1507 proc read_diff_index {fd after} {
1510 append buf_rdi [read $fd]
1512 set n [string length $buf_rdi]
1514 set z1 [string first "\
0" $buf_rdi $c]
1515 if {$z1 == -1} break
1517 set z2 [string first "\
0" $buf_rdi $z1]
1518 if {$z2 == -1} break
1521 set i [split [string range $buf_rdi $c [expr {$z1 - 2}]] { }]
1522 set p [string range $buf_rdi $z1 [expr {$z2 - 1}]]
1524 [encoding convertfrom $p] \
1526 [list [lindex $i 0] [lindex $i 2]] \
1532 set buf_rdi [string range $buf_rdi $c end]
1537 rescan_done $fd buf_rdi $after
1540 proc read_diff_files {fd after} {
1543 append buf_rdf [read $fd]
1545 set n [string length $buf_rdf]
1547 set z1 [string first "\
0" $buf_rdf $c]
1548 if {$z1 == -1} break
1550 set z2 [string first "\
0" $buf_rdf $z1]
1551 if {$z2 == -1} break
1554 set i [split [string range $buf_rdf $c [expr {$z1 - 2}]] { }]
1555 set p [string range $buf_rdf $z1 [expr {$z2 - 1}]]
1557 [encoding convertfrom $p] \
1560 [list [lindex $i 0] [lindex $i 2]]
1565 set buf_rdf [string range $buf_rdf $c end]
1570 rescan_done $fd buf_rdf $after
1573 proc read_ls_others {fd after} {
1576 append buf_rlo [read $fd]
1577 set pck [split $buf_rlo "\
0"]
1578 set buf_rlo [lindex $pck end]
1579 foreach p [lrange $pck 0 end-1] {
1580 set p [encoding convertfrom $p]
1581 if {[string index $p end] eq {/}} {
1582 set p [string range $p 0 end-1]
1586 rescan_done $fd buf_rlo $after
1589 proc rescan_done {fd buf after} {
1590 global rescan_active current_diff_path
1591 global file_states repo_config
1594 if {![eof $fd]} return
1597 if {[incr rescan_active -1] > 0} return
1602 if {$current_diff_path ne {}} { reshow_diff $after }
1603 if {$current_diff_path eq {}} { select_first_diff $after }
1606 proc prune_selection {} {
1607 global file_states selected_paths
1609 foreach path [array names selected_paths] {
1610 if {[catch {set still_here $file_states($path)}]} {
1611 unset selected_paths($path)
1616 ######################################################################
1620 proc mapicon {w state path} {
1623 if {[catch {set r $all_icons($state$w)}]} {
1624 puts "error
: no icon
for $w state
={$state} $path"
1630 proc mapdesc {state path} {
1633 if {[catch {set r $all_descs($state)}]} {
1634 puts "error
: no desc
for state
={$state} $path"
1640 proc ui_status {msg} {
1642 if {[info exists main_status]} {
1643 $main_status show $msg
1647 proc ui_ready {{test {}}} {
1649 if {[info exists main_status]} {
1650 $main_status show [mc "Ready.
"] $test
1654 proc escape_path {path} {
1655 regsub -all {\\} $path "\\\\" path
1656 regsub -all "\n" $path "\\n
" path
1660 proc short_path {path} {
1661 return [escape_path [lindex [file split $path] end]]
1665 set null_sha1 [string repeat 0 40]
1667 proc merge_state {path new_state {head_info {}} {index_info {}}} {
1668 global file_states next_icon_id null_sha1
1670 set s0 [string index $new_state 0]
1671 set s1 [string index $new_state 1]
1673 if {[catch {set info $file_states($path)}]} {
1675 set icon n[incr next_icon_id]
1677 set state [lindex $info 0]
1678 set icon [lindex $info 1]
1679 if {$head_info eq {}} {set head_info [lindex $info 2]}
1680 if {$index_info eq {}} {set index_info [lindex $info 3]}
1683 if {$s0 eq {?}} {set s0 [string index $state 0]} \
1684 elseif {$s0 eq {_}} {set s0 _}
1686 if {$s1 eq {?}} {set s1 [string index $state 1]} \
1687 elseif {$s1 eq {_}} {set s1 _}
1689 if {$s0 eq {A} && $s1 eq {_} && $head_info eq {}} {
1690 set head_info [list 0 $null_sha1]
1691 } elseif {$s0 ne {_} && [string index $state 0] eq {_}
1692 && $head_info eq {}} {
1693 set head_info $index_info
1694 } elseif {$s0 eq {_} && [string index $state 0] ne {_}} {
1695 set index_info $head_info
1699 set file_states($path) [list $s0$s1 $icon \
1700 $head_info $index_info \
1705 proc display_file_helper {w path icon_name old_m new_m} {
1708 if {$new_m eq {_}} {
1709 set lno [lsearch -sorted -exact $file_lists($w) $path]
1711 set file_lists($w) [lreplace $file_lists($w) $lno $lno]
1713 $w conf -state normal
1714 $w delete $lno.0 [expr {$lno + 1}].0
1715 $w conf -state disabled
1717 } elseif {$old_m eq {_} && $new_m ne {_}} {
1718 lappend file_lists($w) $path
1719 set file_lists($w) [lsort -unique $file_lists($w)]
1720 set lno [lsearch -sorted -exact $file_lists($w) $path]
1722 $w conf -state normal
1723 $w image create $lno.0 \
1724 -align center -padx 5 -pady 1 \
1726 -image [mapicon $w $new_m $path]
1727 $w insert $lno.1 "[escape_path
$path]\n"
1728 $w conf -state disabled
1729 } elseif {$old_m ne $new_m} {
1730 $w conf -state normal
1731 $w image conf $icon_name -image [mapicon $w $new_m $path]
1732 $w conf -state disabled
1736 proc display_file {path state} {
1737 global file_states selected_paths
1738 global ui_index ui_workdir
1740 set old_m [merge_state $path $state]
1741 set s $file_states($path)
1742 set new_m [lindex $s 0]
1743 set icon_name [lindex $s 1]
1745 set o [string index $old_m 0]
1746 set n [string index $new_m 0]
1753 display_file_helper $ui_index $path $icon_name $o $n
1755 if {[string index $old_m 0] eq {U}} {
1758 set o [string index $old_m 1]
1760 if {[string index $new_m 0] eq {U}} {
1763 set n [string index $new_m 1]
1765 display_file_helper $ui_workdir $path $icon_name $o $n
1767 if {$new_m eq {__}} {
1768 unset file_states($path)
1769 catch {unset selected_paths($path)}
1773 proc display_all_files_helper {w path icon_name m} {
1776 lappend file_lists($w) $path
1777 set lno [expr {[lindex [split [$w index end] .] 0] - 1}]
1778 $w image create end \
1779 -align center -padx 5 -pady 1 \
1781 -image [mapicon $w $m $path]
1782 $w insert end "[escape_path
$path]\n"
1786 proc display_all_files {} {
1787 global ui_index ui_workdir
1788 global file_states file_lists
1790 global files_warning
1792 $ui_index conf -state normal
1793 $ui_workdir conf -state normal
1795 $ui_index delete 0.0 end
1796 $ui_workdir delete 0.0 end
1799 set file_lists($ui_index) [list]
1800 set file_lists($ui_workdir) [list]
1802 set to_display [lsort [array names file_states]]
1803 set display_limit [get_config gui.maxfilesdisplayed]
1804 if {[llength $to_display] > $display_limit} {
1805 if {!$files_warning} {
1806 # do not repeatedly warn:
1808 info_popup [mc "Displaying only
%s of
%s files.
" \
1809 $display_limit [llength $to_display]]
1811 set to_display [lrange $to_display 0 [expr {$display_limit-1}]]
1813 foreach path $to_display {
1814 set s $file_states($path)
1816 set icon_name [lindex $s 1]
1818 set s [string index $m 0]
1819 if {$s ne {U} && $s ne {_}} {
1820 display_all_files_helper $ui_index $path \
1824 if {[string index $m 0] eq {U}} {
1827 set s [string index $m 1]
1830 display_all_files_helper $ui_workdir $path \
1835 $ui_index conf -state disabled
1836 $ui_workdir conf -state disabled
1839 ######################################################################
1844 #define mask_width 14
1845 #define mask_height 15
1846 static unsigned char mask_bits[] = {
1847 0xfe, 0x1f, 0xfe, 0x1f, 0xfe, 0x1f, 0xfe, 0x1f, 0xfe, 0x1f, 0xfe, 0x1f,
1848 0xfe, 0x1f, 0xfe, 0x1f, 0xfe, 0x1f, 0xfe, 0x1f, 0xfe, 0x1f, 0xfe, 0x1f,
1849 0xfe, 0x1f, 0xfe, 0x1f, 0xfe, 0x1f};
1852 image create bitmap file_plain -background white -foreground black -data {
1853 #define plain_width 14
1854 #define plain_height 15
1855 static unsigned char plain_bits[] = {
1856 0xfe, 0x01, 0x02, 0x03, 0x02, 0x05, 0x02, 0x09, 0x02, 0x1f, 0x02, 0x10,
1857 0x02, 0x10, 0x02, 0x10, 0x02, 0x10, 0x02, 0x10, 0x02, 0x10, 0x02, 0x10,
1858 0x02, 0x10, 0x02, 0x10, 0xfe, 0x1f};
1859 } -maskdata $filemask
1861 image create bitmap file_mod -background white -foreground blue -data {
1862 #define mod_width 14
1863 #define mod_height 15
1864 static unsigned char mod_bits[] = {
1865 0xfe, 0x01, 0x02, 0x03, 0x7a, 0x05, 0x02, 0x09, 0x7a, 0x1f, 0x02, 0x10,
1866 0xfa, 0x17, 0x02, 0x10, 0xfa, 0x17, 0x02, 0x10, 0xfa, 0x17, 0x02, 0x10,
1867 0xfa, 0x17, 0x02, 0x10, 0xfe, 0x1f};
1868 } -maskdata $filemask
1870 image create bitmap file_fulltick -background white -foreground "#007000" -data {
1871 #define file_fulltick_width 14
1872 #define file_fulltick_height 15
1873 static unsigned char file_fulltick_bits
[] = {
1874 0xfe, 0x01, 0x02, 0x1a, 0x02, 0x0c, 0x02, 0x0c, 0x02, 0x16, 0x02, 0x16,
1875 0x02, 0x13, 0x00, 0x13, 0x86, 0x11, 0x8c, 0x11, 0xd8, 0x10, 0xf2, 0x10,
1876 0x62, 0x10, 0x02, 0x10, 0xfe, 0x1f};
1877 } -maskdata $filemask
1879 image create bitmap file_question
-background white
-foreground black
-data {
1880 #define file_question_width 14
1881 #define file_question_height 15
1882 static unsigned char file_question_bits
[] = {
1883 0xfe, 0x01, 0x02, 0x02, 0xe2, 0x04, 0xf2, 0x09, 0x1a, 0x1b, 0x0a, 0x13,
1884 0x82, 0x11, 0xc2, 0x10, 0x62, 0x10, 0x62, 0x10, 0x02, 0x10, 0x62, 0x10,
1885 0x62, 0x10, 0x02, 0x10, 0xfe, 0x1f};
1886 } -maskdata $filemask
1888 image create bitmap file_removed
-background white
-foreground red
-data {
1889 #define file_removed_width 14
1890 #define file_removed_height 15
1891 static unsigned char file_removed_bits
[] = {
1892 0xfe, 0x01, 0x02, 0x03, 0x02, 0x05, 0x02, 0x09, 0x02, 0x1f, 0x02, 0x10,
1893 0x1a, 0x16, 0x32, 0x13, 0xe2, 0x11, 0xc2, 0x10, 0xe2, 0x11, 0x32, 0x13,
1894 0x1a, 0x16, 0x02, 0x10, 0xfe, 0x1f};
1895 } -maskdata $filemask
1897 image create bitmap file_merge
-background white
-foreground blue
-data {
1898 #define file_merge_width 14
1899 #define file_merge_height 15
1900 static unsigned char file_merge_bits
[] = {
1901 0xfe, 0x01, 0x02, 0x03, 0x62, 0x05, 0x62, 0x09, 0x62, 0x1f, 0x62, 0x10,
1902 0xfa, 0x11, 0xf2, 0x10, 0x62, 0x10, 0x02, 0x10, 0xfa, 0x17, 0x02, 0x10,
1903 0xfa, 0x17, 0x02, 0x10, 0xfe, 0x1f};
1904 } -maskdata $filemask
1906 image create bitmap file_statechange
-background white
-foreground green
-data {
1907 #define file_merge_width 14
1908 #define file_merge_height 15
1909 static unsigned char file_statechange_bits
[] = {
1910 0xfe, 0x01, 0x02, 0x03, 0x02, 0x05, 0x02, 0x09, 0x02, 0x1f, 0x62, 0x10,
1911 0x62, 0x10, 0xba, 0x11, 0xba, 0x11, 0x62, 0x10, 0x62, 0x10, 0x02, 0x10,
1912 0x02, 0x10, 0x02, 0x10, 0xfe, 0x1f};
1913 } -maskdata $filemask
1915 set ui_index .vpane.files.index.list
1916 set ui_workdir .vpane.files.workdir.list
1918 set all_icons
(_
$ui_index) file_plain
1919 set all_icons
(A
$ui_index) file_plain
1920 set all_icons
(M
$ui_index) file_fulltick
1921 set all_icons
(D
$ui_index) file_removed
1922 set all_icons
(U
$ui_index) file_merge
1923 set all_icons
(T
$ui_index) file_statechange
1925 set all_icons
(_
$ui_workdir) file_plain
1926 set all_icons
(M
$ui_workdir) file_mod
1927 set all_icons
(D
$ui_workdir) file_question
1928 set all_icons
(U
$ui_workdir) file_merge
1929 set all_icons
(O
$ui_workdir) file_plain
1930 set all_icons
(T
$ui_workdir) file_statechange
1932 set max_status_desc
0
1934 {__
{mc
"Unmodified"}}
1936 {_M
{mc
"Modified, not staged"}}
1937 {M_
{mc
"Staged for commit"}}
1938 {MM
{mc
"Portions staged for commit"}}
1939 {MD
{mc
"Staged for commit, missing"}}
1941 {_T
{mc
"File type changed, not staged"}}
1942 {T_
{mc
"File type changed, staged"}}
1944 {_O
{mc
"Untracked, not staged"}}
1945 {A_
{mc
"Staged for commit"}}
1946 {AM
{mc
"Portions staged for commit"}}
1947 {AD
{mc
"Staged for commit, missing"}}
1950 {D_
{mc
"Staged for removal"}}
1951 {DO
{mc
"Staged for removal, still present"}}
1953 {_U
{mc
"Requires merge resolution"}}
1954 {U_
{mc
"Requires merge resolution"}}
1955 {UU
{mc
"Requires merge resolution"}}
1956 {UM
{mc
"Requires merge resolution"}}
1957 {UD
{mc
"Requires merge resolution"}}
1958 {UT
{mc
"Requires merge resolution"}}
1960 set text
[eval [lindex
$i 1]]
1961 if {$max_status_desc < [string length
$text]} {
1962 set max_status_desc
[string length
$text]
1964 set all_descs
([lindex
$i 0]) $text
1968 ######################################################################
1972 proc scrollbar2many
{list mode args
} {
1973 foreach w
$list {eval $w $mode $args}
1976 proc many2scrollbar
{list mode sb top bottom
} {
1977 $sb set $top $bottom
1978 foreach w
$list {$w $mode moveto
$top}
1981 proc incr_font_size
{font
{amt
1}} {
1982 set sz
[font configure
$font -size]
1984 font configure
$font -size $sz
1985 font configure
${font}bold
-size $sz
1986 font configure
${font}italic
-size $sz
1989 ######################################################################
1993 set starting_gitk_msg
[mc
"Starting gitk... please wait..."]
1995 proc do_gitk
{revs
{is_submodule false
}} {
1996 global current_diff_path file_states current_diff_side ui_index
1997 global _gitdir _gitworktree
1999 # -- Always start gitk through whatever we were loaded with. This
2000 # lets us bypass using shell process on Windows systems.
2002 set exe
[_which gitk
-script]
2003 set cmd
[list
[info nameofexecutable
] $exe]
2005 error_popup
[mc
"Couldn't find gitk in PATH"]
2011 if {!$is_submodule} {
2016 cd $current_diff_path
2017 if {$revs eq
{--}} {
2018 set s
$file_states($current_diff_path)
2021 switch
-glob -- [lindex
$s 0] {
2022 M_
{ set old_sha1
[lindex
[lindex
$s 2] 1] }
2023 _M
{ set old_sha1
[lindex
[lindex
$s 3] 1] }
2025 if {$current_diff_side eq
$ui_index} {
2026 set old_sha1
[lindex
[lindex
$s 2] 1]
2027 set new_sha1
[lindex
[lindex
$s 3] 1]
2029 set old_sha1
[lindex
[lindex
$s 3] 1]
2033 set revs
$old_sha1...
$new_sha1
2035 # GIT_DIR and GIT_WORK_TREE for the submodule are not the ones
2036 # we've been using for the main repository, so unset them.
2037 # TODO we could make life easier (start up faster?) for gitk
2038 # by setting these to the appropriate values to allow gitk
2039 # to skip the heuristics to find their proper value
2041 unset env
(GIT_WORK_TREE
)
2043 eval exec $cmd $revs "--" "--" &
2045 set env
(GIT_DIR
) $_gitdir
2046 set env
(GIT_WORK_TREE
) $_gitworktree
2049 ui_status $
::starting_gitk_msg
2051 ui_ready
$starting_gitk_msg
2056 proc do_git_gui
{} {
2057 global current_diff_path
2059 # -- Always start git gui through whatever we were loaded with. This
2060 # lets us bypass using shell process on Windows systems.
2062 set exe
[list
[_which git
]]
2064 error_popup
[mc
"Couldn't find git gui in PATH"]
2067 global _gitdir _gitworktree
2069 # see note in do_gitk about unsetting these vars when
2070 # running tools in a submodule
2072 unset env
(GIT_WORK_TREE
)
2075 cd $current_diff_path
2077 eval exec $exe gui
&
2079 set env
(GIT_DIR
) $_gitdir
2080 set env
(GIT_WORK_TREE
) $_gitworktree
2083 ui_status $
::starting_gitk_msg
2085 ui_ready
$starting_gitk_msg
2090 proc do_explore
{} {
2093 if {[is_Cygwin
] ||
[is_Windows
]} {
2094 set explorer
"explorer.exe"
2095 } elseif
{[is_MacOSX
]} {
2098 # freedesktop.org-conforming system is our best shot
2099 set explorer
"xdg-open"
2101 eval exec $explorer $_gitworktree &
2107 proc terminate_me
{win
} {
2109 if {$win ne
{.
}} return
2113 proc do_quit
{{rc
{1}}} {
2114 global ui_comm is_quitting repo_config commit_type
2115 global GITGUI_BCK_exists GITGUI_BCK_i
2116 global ui_comm_spell
2117 global ret_code use_ttk
2119 if {$is_quitting} return
2122 if {[winfo exists
$ui_comm]} {
2123 # -- Stash our current commit buffer.
2125 set save
[gitdir GITGUI_MSG
]
2126 if {$GITGUI_BCK_exists && ![$ui_comm edit modified
]} {
2127 file rename
-force [gitdir GITGUI_BCK
] $save
2128 set GITGUI_BCK_exists
0
2130 set msg
[string trim
[$ui_comm get
0.0 end
]]
2131 regsub
-all -line {[ \r\t]+$
} $msg {} msg
2132 if {(![string match amend
* $commit_type]
2133 ||
[$ui_comm edit modified
])
2136 set fd
[open
$save w
]
2137 puts
-nonewline $fd $msg
2141 catch
{file delete
$save}
2145 # -- Cancel our spellchecker if its running.
2147 if {[info exists ui_comm_spell
]} {
2151 # -- Remove our editor backup, its not needed.
2153 after cancel
$GITGUI_BCK_i
2154 if {$GITGUI_BCK_exists} {
2155 catch
{file delete
[gitdir GITGUI_BCK
]}
2158 # -- Stash our current window geometry into this repository.
2160 set cfg_wmstate
[wm state .
]
2161 if {[catch
{set rc_wmstate
$repo_config(gui.wmstate
)}]} {
2164 if {$cfg_wmstate ne
$rc_wmstate} {
2165 catch
{git config gui.wmstate
$cfg_wmstate}
2167 if {$cfg_wmstate eq
{zoomed
}} {
2168 # on Windows wm geometry will lie about window
2169 # position (but not size) when window is zoomed
2170 # restore the window before querying wm geometry
2173 set cfg_geometry
[list
]
2174 lappend cfg_geometry
[wm geometry .
]
2176 lappend cfg_geometry
[.vpane sashpos
0]
2177 lappend cfg_geometry
[.vpane.files sashpos
0]
2179 lappend cfg_geometry
[lindex
[.vpane sash coord
0] 0]
2180 lappend cfg_geometry
[lindex
[.vpane.files sash coord
0] 1]
2182 if {[catch
{set rc_geometry
$repo_config(gui.geometry
)}]} {
2185 if {$cfg_geometry ne
$rc_geometry} {
2186 catch
{git config gui.geometry
$cfg_geometry}
2192 # Briefly enable send again, working around Tk bug
2193 # http://sourceforge.net/tracker/?func=detail&atid=112997&aid=1821174&group_id=12997
2194 tk appname
[appname
]
2203 proc ui_do_rescan
{} {
2204 rescan
{force_first_diff ui_ready
}
2211 proc next_diff
{{after
{}}} {
2212 global next_diff_p next_diff_w next_diff_i
2213 show_diff
$next_diff_p $next_diff_w {} {} $after
2216 proc find_anchor_pos
{lst name
} {
2217 set lid
[lsearch
-sorted -exact $lst $name]
2221 foreach lname
$lst {
2222 if {$lname >= $name} break
2230 proc find_file_from
{flist idx delta path mmask
} {
2233 set len
[llength
$flist]
2234 while {$idx >= 0 && $idx < $len} {
2235 set name
[lindex
$flist $idx]
2237 if {$name ne
$path && [info exists file_states
($name)]} {
2238 set state
[lindex
$file_states($name) 0]
2240 if {$mmask eq
{} ||
[regexp
$mmask $state]} {
2251 proc find_next_diff
{w path
{lno
{}} {mmask
{}}} {
2252 global next_diff_p next_diff_w next_diff_i
2253 global file_lists ui_index ui_workdir
2255 set flist
$file_lists($w)
2257 set lno
[find_anchor_pos
$flist $path]
2262 if {$mmask ne
{} && ![regexp
{(^\^
)|
(\$$
)} $mmask]} {
2263 if {$w eq
$ui_index} {
2266 set mmask
"$mmask\$"
2270 set idx
[find_file_from
$flist $lno 1 $path $mmask]
2273 set idx
[find_file_from
$flist $lno -1 $path $mmask]
2278 set next_diff_p
[lindex
$flist $idx]
2279 set next_diff_i
[expr {$idx+1}]
2286 proc next_diff_after_action
{w path
{lno
{}} {mmask
{}}} {
2287 global current_diff_path
2289 if {$path ne
$current_diff_path} {
2291 } elseif
{[find_next_diff
$w $path $lno $mmask]} {
2294 return {reshow_diff
;}
2298 proc select_first_diff
{after
} {
2301 if {[find_next_diff
$ui_workdir {} 1 {^_?U
}] ||
2302 [find_next_diff
$ui_workdir {} 1 {[^O
]$
}]} {
2309 proc force_first_diff
{after
} {
2310 global ui_workdir current_diff_path file_states
2312 if {[info exists file_states
($current_diff_path)]} {
2313 set state
[lindex
$file_states($current_diff_path) 0]
2319 if {[string first
{U
} $state] >= 0} {
2320 # Already a conflict, do nothing
2321 } elseif
{[find_next_diff
$ui_workdir $current_diff_path {} {^_?U
}]} {
2323 } elseif
{[string index
$state 1] ne
{O
}} {
2324 # Already a diff & no conflicts, do nothing
2325 } elseif
{[find_next_diff
$ui_workdir $current_diff_path {} {[^O
]$
}]} {
2336 proc toggle_or_diff
{w x y
} {
2337 global file_states file_lists current_diff_path ui_index ui_workdir
2338 global last_clicked selected_paths
2340 set pos
[split [$w index @
$x,$y] .
]
2341 set lno
[lindex
$pos 0]
2342 set col [lindex
$pos 1]
2343 set path
[lindex
$file_lists($w) [expr {$lno - 1}]]
2349 set last_clicked
[list
$w $lno]
2350 array
unset selected_paths
2351 $ui_index tag remove in_sel
0.0 end
2352 $ui_workdir tag remove in_sel
0.0 end
2354 # Determine the state of the file
2355 if {[info exists file_states
($path)]} {
2356 set state
[lindex
$file_states($path) 0]
2361 # Restage the file, or simply show the diff
2362 if {$col == 0 && $y > 1} {
2363 # Conflicts need special handling
2364 if {[string first
{U
} $state] >= 0} {
2365 # $w must always be $ui_workdir, but...
2366 if {$w ne
$ui_workdir} { set lno
{} }
2367 merge_stage_workdir
$path $lno
2371 if {[string index
$state 1] eq
{O
}} {
2377 set after
[next_diff_after_action
$w $path $lno $mmask]
2379 if {$w eq
$ui_index} {
2381 "Unstaging [short_path $path] from commit" \
2383 [concat
$after [list ui_ready
]]
2384 } elseif
{$w eq
$ui_workdir} {
2386 "Adding [short_path $path]" \
2388 [concat
$after [list ui_ready
]]
2391 show_diff
$path $w $lno
2395 proc add_one_to_selection
{w x y
} {
2396 global file_lists last_clicked selected_paths
2398 set lno
[lindex
[split [$w index @
$x,$y] .
] 0]
2399 set path
[lindex
$file_lists($w) [expr {$lno - 1}]]
2405 if {$last_clicked ne
{}
2406 && [lindex
$last_clicked 0] ne
$w} {
2407 array
unset selected_paths
2408 [lindex
$last_clicked 0] tag remove in_sel
0.0 end
2411 set last_clicked
[list
$w $lno]
2412 if {[catch
{set in_sel
$selected_paths($path)}]} {
2416 unset selected_paths
($path)
2417 $w tag remove in_sel
$lno.0 [expr {$lno + 1}].0
2419 set selected_paths
($path) 1
2420 $w tag add in_sel
$lno.0 [expr {$lno + 1}].0
2424 proc add_range_to_selection
{w x y
} {
2425 global file_lists last_clicked selected_paths
2427 if {[lindex
$last_clicked 0] ne
$w} {
2428 toggle_or_diff
$w $x $y
2432 set lno
[lindex
[split [$w index @
$x,$y] .
] 0]
2433 set lc
[lindex
$last_clicked 1]
2442 foreach path
[lrange
$file_lists($w) \
2443 [expr {$begin - 1}] \
2444 [expr {$end - 1}]] {
2445 set selected_paths
($path) 1
2447 $w tag add in_sel
$begin.0 [expr {$end + 1}].0
2450 proc show_more_context
{} {
2452 if {$repo_config(gui.diffcontext
) < 99} {
2453 incr repo_config
(gui.diffcontext
)
2458 proc show_less_context
{} {
2460 if {$repo_config(gui.diffcontext
) > 1} {
2461 incr repo_config
(gui.diffcontext
) -1
2466 ######################################################################
2474 menu .mbar
-tearoff 0
2476 # -- Apple Menu (Mac OS X only)
2478 .mbar add cascade
-label Apple
-menu .mbar.apple
2481 .mbar add cascade
-label [mc Repository
] -menu .mbar.repository
2482 .mbar add cascade
-label [mc Edit
] -menu .mbar.edit
2483 if {[is_enabled branch
]} {
2484 .mbar add cascade
-label [mc Branch
] -menu .mbar.branch
2486 if {[is_enabled multicommit
] ||
[is_enabled singlecommit
]} {
2487 .mbar add cascade
-label [mc Commit@@noun
] -menu .mbar.commit
2489 if {[is_enabled transport
]} {
2490 .mbar add cascade
-label [mc Merge
] -menu .mbar.merge
2491 .mbar add cascade
-label [mc Remote
] -menu .mbar.remote
2493 if {[is_enabled multicommit
] ||
[is_enabled singlecommit
]} {
2494 .mbar add cascade
-label [mc Tools
] -menu .mbar.tools
2497 # -- Repository Menu
2499 menu .mbar.repository
2502 .mbar.repository add
command \
2503 -label [mc
"Explore Working Copy"] \
2504 -command {do_explore
}
2505 .mbar.repository add separator
2508 .mbar.repository add
command \
2509 -label [mc
"Browse Current Branch's Files"] \
2510 -command {browser
::new
$current_branch}
2511 set ui_browse_current
[.mbar.repository index last
]
2512 .mbar.repository add
command \
2513 -label [mc
"Browse Branch Files..."] \
2514 -command browser_open
::dialog
2515 .mbar.repository add separator
2517 .mbar.repository add
command \
2518 -label [mc
"Visualize Current Branch's History"] \
2519 -command {do_gitk
$current_branch}
2520 set ui_visualize_current
[.mbar.repository index last
]
2521 .mbar.repository add
command \
2522 -label [mc
"Visualize All Branch History"] \
2523 -command {do_gitk
--all}
2524 .mbar.repository add separator
2526 proc current_branch_write
{args
} {
2527 global current_branch
2528 .mbar.repository entryconf $
::ui_browse_current \
2529 -label [mc
"Browse %s's Files" $current_branch]
2530 .mbar.repository entryconf $
::ui_visualize_current \
2531 -label [mc
"Visualize %s's History" $current_branch]
2533 trace add variable current_branch
write current_branch_write
2535 if {[is_enabled multicommit
]} {
2536 .mbar.repository add
command -label [mc
"Database Statistics"] \
2539 .mbar.repository add
command -label [mc
"Compress Database"] \
2542 .mbar.repository add
command -label [mc
"Verify Database"] \
2543 -command do_fsck_objects
2545 .mbar.repository add separator
2548 .mbar.repository add
command \
2549 -label [mc
"Create Desktop Icon"] \
2550 -command do_cygwin_shortcut
2551 } elseif
{[is_Windows
]} {
2552 .mbar.repository add
command \
2553 -label [mc
"Create Desktop Icon"] \
2554 -command do_windows_shortcut
2555 } elseif
{[is_MacOSX
]} {
2556 .mbar.repository add
command \
2557 -label [mc
"Create Desktop Icon"] \
2558 -command do_macosx_app
2563 proc
::tk
::mac
::Quit
{args
} { do_quit
}
2565 .mbar.repository add
command -label [mc Quit
] \
2573 .mbar.edit add
command -label [mc Undo
] \
2574 -command {catch
{[focus
] edit undo
}} \
2576 .mbar.edit add
command -label [mc Redo
] \
2577 -command {catch
{[focus
] edit redo
}} \
2579 .mbar.edit add separator
2580 .mbar.edit add
command -label [mc Cut
] \
2581 -command {catch
{tk_textCut
[focus
]}} \
2583 .mbar.edit add
command -label [mc Copy
] \
2584 -command {catch
{tk_textCopy
[focus
]}} \
2586 .mbar.edit add
command -label [mc Paste
] \
2587 -command {catch
{tk_textPaste
[focus
]; [focus
] see insert
}} \
2589 .mbar.edit add
command -label [mc Delete
] \
2590 -command {catch
{[focus
] delete sel.first sel.last
}} \
2592 .mbar.edit add separator
2593 .mbar.edit add
command -label [mc
"Select All"] \
2594 -command {catch
{[focus
] tag add sel
0.0 end
}} \
2599 if {[is_enabled branch
]} {
2602 .mbar.branch add
command -label [mc
"Create..."] \
2603 -command branch_create
::dialog \
2605 lappend disable_on_lock
[list .mbar.branch entryconf \
2606 [.mbar.branch index last
] -state]
2608 .mbar.branch add
command -label [mc
"Checkout..."] \
2609 -command branch_checkout
::dialog \
2611 lappend disable_on_lock
[list .mbar.branch entryconf \
2612 [.mbar.branch index last
] -state]
2614 .mbar.branch add
command -label [mc
"Rename..."] \
2615 -command branch_rename
::dialog
2616 lappend disable_on_lock
[list .mbar.branch entryconf \
2617 [.mbar.branch index last
] -state]
2619 .mbar.branch add
command -label [mc
"Delete..."] \
2620 -command branch_delete
::dialog
2621 lappend disable_on_lock
[list .mbar.branch entryconf \
2622 [.mbar.branch index last
] -state]
2624 .mbar.branch add
command -label [mc
"Reset..."] \
2625 -command merge
::reset_hard
2626 lappend disable_on_lock
[list .mbar.branch entryconf \
2627 [.mbar.branch index last
] -state]
2632 proc commit_btn_caption
{} {
2633 if {[is_enabled nocommit
]} {
2636 return [mc Commit@@verb
]
2640 if {[is_enabled multicommit
] ||
[is_enabled singlecommit
]} {
2643 if {![is_enabled nocommit
]} {
2644 .mbar.commit add radiobutton \
2645 -label [mc
"New Commit"] \
2646 -command do_select_commit_type \
2647 -variable selected_commit_type \
2649 lappend disable_on_lock \
2650 [list .mbar.commit entryconf
[.mbar.commit index last
] -state]
2652 .mbar.commit add radiobutton \
2653 -label [mc
"Amend Last Commit"] \
2654 -command do_select_commit_type \
2655 -variable selected_commit_type \
2657 lappend disable_on_lock \
2658 [list .mbar.commit entryconf
[.mbar.commit index last
] -state]
2660 .mbar.commit add separator
2663 .mbar.commit add
command -label [mc Rescan
] \
2664 -command ui_do_rescan \
2666 lappend disable_on_lock \
2667 [list .mbar.commit entryconf
[.mbar.commit index last
] -state]
2669 .mbar.commit add
command -label [mc
"Stage To Commit"] \
2670 -command do_add_selection \
2672 lappend disable_on_lock \
2673 [list .mbar.commit entryconf
[.mbar.commit index last
] -state]
2675 .mbar.commit add
command -label [mc
"Stage Changed Files To Commit"] \
2676 -command do_add_all \
2678 lappend disable_on_lock \
2679 [list .mbar.commit entryconf
[.mbar.commit index last
] -state]
2681 .mbar.commit add
command -label [mc
"Unstage From Commit"] \
2682 -command do_unstage_selection \
2684 lappend disable_on_lock \
2685 [list .mbar.commit entryconf
[.mbar.commit index last
] -state]
2687 .mbar.commit add
command -label [mc
"Revert Changes"] \
2688 -command do_revert_selection \
2690 lappend disable_on_lock \
2691 [list .mbar.commit entryconf
[.mbar.commit index last
] -state]
2693 .mbar.commit add separator
2695 .mbar.commit add
command -label [mc
"Show Less Context"] \
2696 -command show_less_context \
2697 -accelerator $M1T-\
-
2699 .mbar.commit add
command -label [mc
"Show More Context"] \
2700 -command show_more_context \
2703 .mbar.commit add separator
2705 if {![is_enabled nocommitmsg
]} {
2706 .mbar.commit add
command -label [mc
"Sign Off"] \
2707 -command do_signoff \
2711 .mbar.commit add
command -label [commit_btn_caption
] \
2712 -command do_commit \
2713 -accelerator $M1T-Return
2714 lappend disable_on_lock \
2715 [list .mbar.commit entryconf
[.mbar.commit index last
] -state]
2720 if {[is_enabled branch
]} {
2722 .mbar.merge add
command -label [mc
"Local Merge..."] \
2723 -command merge
::dialog \
2725 lappend disable_on_lock \
2726 [list .mbar.merge entryconf
[.mbar.merge index last
] -state]
2727 .mbar.merge add
command -label [mc
"Abort Merge..."] \
2728 -command merge
::reset_hard
2729 lappend disable_on_lock \
2730 [list .mbar.merge entryconf
[.mbar.merge index last
] -state]
2735 if {[is_enabled transport
]} {
2738 .mbar.remote add
command \
2739 -label [mc
"Add..."] \
2740 -command remote_add
::dialog \
2742 .mbar.remote add
command \
2743 -label [mc
"Push..."] \
2744 -command do_push_anywhere \
2746 .mbar.remote add
command \
2747 -label [mc
"Delete Branch..."] \
2748 -command remote_branch_delete
::dialog
2752 proc
::tk
::mac
::ShowPreferences
{} {do_options
}
2756 .mbar.edit add separator
2757 .mbar.edit add
command -label [mc
"Options..."] \
2763 if {[is_enabled multicommit
] ||
[is_enabled singlecommit
]} {
2764 set tools_menubar .mbar.tools
2766 $tools_menubar add separator
2767 $tools_menubar add
command -label [mc
"Add..."] -command tools_add
::dialog
2768 $tools_menubar add
command -label [mc
"Remove..."] -command tools_remove
::dialog
2770 if {[array names repo_config guitool.
*.cmd
] ne
{}} {
2777 .mbar add cascade
-label [mc Help
] -menu .mbar.
help
2781 .mbar.apple add
command -label [mc
"About %s" [appname
]] \
2783 .mbar.apple add separator
2785 .mbar.
help add
command -label [mc
"About %s" [appname
]] \
2788 . configure
-menu .mbar
2790 set doc_path
[githtmldir
]
2791 if {$doc_path ne
{}} {
2792 set doc_path
[file join $doc_path index.html
]
2795 set doc_path
[exec cygpath
--mixed $doc_path]
2799 if {[file isfile
$doc_path]} {
2800 set doc_url
"file:$doc_path"
2802 set doc_url
{http
://www.kernel.org
/pub
/software
/scm
/git
/docs
/}
2805 proc start_browser
{url
} {
2806 git
"web--browse" $url
2809 .mbar.
help add
command -label [mc
"Online Documentation"] \
2810 -command [list start_browser
$doc_url]
2812 .mbar.
help add
command -label [mc
"Show SSH Key"] \
2815 unset doc_path doc_url
2817 # -- Standard bindings
2819 wm protocol . WM_DELETE_WINDOW do_quit
2820 bind all
<$M1B-Key-q> do_quit
2821 bind all
<$M1B-Key-Q> do_quit
2822 bind all
<$M1B-Key-w> {destroy
[winfo toplevel
%W
]}
2823 bind all
<$M1B-Key-W> {destroy
[winfo toplevel
%W
]}
2825 set subcommand_args
{}
2827 puts stderr
"usage: $::argv0 $::subcommand $::subcommand_args"
2831 proc normalize_relpath
{path
} {
2833 foreach item
[file split $path] {
2834 if {$item eq
{.
}} continue
2835 if {$item eq
{..
} && [llength
$elements] > 0
2836 && [lindex
$elements end
] ne
{..
}} {
2837 set elements
[lrange
$elements 0 end-1
]
2840 lappend elements
$item
2842 return [eval file join $elements]
2845 # -- Not a normal commit type invocation? Do that instead!
2847 switch
-- $subcommand {
2850 if {$subcommand eq
"blame"} {
2851 set subcommand_args
{[--line=<num
>] rev? path
}
2853 set subcommand_args
{rev? path
}
2855 if {$argv eq
{}} usage
2861 if {$is_path ||
[file exists
$_prefix$a]} {
2862 if {$path ne
{}} usage
2863 set path
[normalize_relpath
$_prefix$a]
2865 } elseif
{$a eq
{--}} {
2867 if {$head ne
{}} usage
2872 } elseif
{[regexp
{^
--line=(\d
+)$
} $a a lnum
]} {
2873 if {$jump_spec ne
{} ||
$head ne
{}} usage
2874 set jump_spec
[list
$lnum]
2875 } elseif
{$head eq
{}} {
2876 if {$head ne
{}} usage
2885 if {$head ne
{} && $path eq
{}} {
2886 set path
[normalize_relpath
$_prefix$head]
2893 if {[regexp
{^
[0-9a-f]{1,39}$
} $head]} {
2895 set head [git rev-parse
--verify $head]
2901 set current_branch
$head
2904 switch
-- $subcommand {
2906 if {$jump_spec ne
{}} usage
2908 if {$path ne
{} && [file isdirectory
$path]} {
2909 set head $current_branch
2915 browser
::new
$head $path
2918 if {$head eq
{} && ![file exists
$path]} {
2919 puts stderr
[mc
"fatal: cannot stat path %s: No such file or directory" $path]
2922 blame
::new
$head $path $jump_spec
2929 if {[llength
$argv] != 0} {
2930 puts
-nonewline stderr
"usage: $argv0"
2931 if {$subcommand ne
{gui
}
2932 && [file tail $argv0] ne
"git-$subcommand"} {
2933 puts
-nonewline stderr
" $subcommand"
2938 # fall through to setup UI for commits
2941 puts stderr
"usage: $argv0 \[{blame|browser|citool}\]"
2948 ${NS}::frame .branch
2949 if {!$use_ttk} {.branch configure
-borderwidth 1 -relief sunken
}
2950 ${NS}::label .branch.l1 \
2951 -text [mc
"Current Branch:"] \
2954 ${NS}::label .branch.cb \
2955 -textvariable current_branch \
2958 pack .branch.l1
-side left
2959 pack .branch.cb
-side left
-fill x
2960 pack .branch
-side top
-fill x
2962 # -- Main Window Layout
2964 ${NS}::panedwindow .vpane
-orient horizontal
2965 ${NS}::panedwindow .vpane.files
-orient vertical
2967 .vpane add .vpane.files
2969 .vpane add .vpane.files
-sticky nsew
-height 100 -width 200
2971 pack .vpane
-anchor n
-side top
-fill both
-expand 1
2973 # -- Index File List
2975 ${NS}::frame .vpane.files.index
-height 100 -width 200
2976 tlabel .vpane.files.index.title \
2977 -text [mc
"Staged Changes (Will Commit)"] \
2978 -background lightgreen
-foreground black
2979 text
$ui_index -background white
-foreground black \
2981 -width 20 -height 10 \
2983 -cursor $cursor_ptr \
2984 -xscrollcommand {.vpane.files.index.sx
set} \
2985 -yscrollcommand {.vpane.files.index.sy
set} \
2987 ${NS}::scrollbar .vpane.files.index.sx
-orient h
-command [list
$ui_index xview
]
2988 ${NS}::scrollbar .vpane.files.index.sy
-orient v
-command [list
$ui_index yview
]
2989 pack .vpane.files.index.title
-side top
-fill x
2990 pack .vpane.files.index.sx
-side bottom
-fill x
2991 pack .vpane.files.index.sy
-side right
-fill y
2992 pack
$ui_index -side left
-fill both
-expand 1
2994 # -- Working Directory File List
2996 ${NS}::frame .vpane.files.workdir
-height 100 -width 200
2997 tlabel .vpane.files.workdir.title
-text [mc
"Unstaged Changes"] \
2998 -background lightsalmon
-foreground black
2999 text
$ui_workdir -background white
-foreground black \
3001 -width 20 -height 10 \
3003 -cursor $cursor_ptr \
3004 -xscrollcommand {.vpane.files.workdir.sx
set} \
3005 -yscrollcommand {.vpane.files.workdir.sy
set} \
3007 ${NS}::scrollbar .vpane.files.workdir.sx
-orient h
-command [list
$ui_workdir xview
]
3008 ${NS}::scrollbar .vpane.files.workdir.sy
-orient v
-command [list
$ui_workdir yview
]
3009 pack .vpane.files.workdir.title
-side top
-fill x
3010 pack .vpane.files.workdir.sx
-side bottom
-fill x
3011 pack .vpane.files.workdir.sy
-side right
-fill y
3012 pack
$ui_workdir -side left
-fill both
-expand 1
3014 .vpane.files add .vpane.files.workdir
3015 .vpane.files add .vpane.files.index
3017 .vpane.files paneconfigure .vpane.files.workdir
-sticky news
3018 .vpane.files paneconfigure .vpane.files.index
-sticky news
3021 foreach i
[list
$ui_index $ui_workdir] {
3023 $i tag conf in_diff
-background [$i tag cget in_sel
-background]
3027 # -- Diff and Commit Area
3029 ${NS}::frame .vpane.lower
-height 300 -width 400
3030 ${NS}::frame .vpane.lower.commarea
3031 ${NS}::frame .vpane.lower.
diff -relief sunken
-borderwidth 1
3032 pack .vpane.lower.
diff -fill both
-expand 1
3033 pack .vpane.lower.commarea
-side bottom
-fill x
3034 .vpane add .vpane.lower
3035 if {!$use_ttk} {.vpane paneconfigure .vpane.lower
-sticky nsew
}
3037 # -- Commit Area Buttons
3039 ${NS}::frame .vpane.lower.commarea.buttons
3040 ${NS}::label .vpane.lower.commarea.buttons.l
-text {} \
3043 pack .vpane.lower.commarea.buttons.l
-side top
-fill x
3044 pack .vpane.lower.commarea.buttons
-side left
-fill y
3046 ${NS}::button .vpane.lower.commarea.buttons.rescan
-text [mc Rescan
] \
3047 -command ui_do_rescan
3048 pack .vpane.lower.commarea.buttons.rescan
-side top
-fill x
3049 lappend disable_on_lock \
3050 {.vpane.lower.commarea.buttons.rescan conf
-state}
3052 ${NS}::button .vpane.lower.commarea.buttons.incall
-text [mc
"Stage Changed"] \
3054 pack .vpane.lower.commarea.buttons.incall
-side top
-fill x
3055 lappend disable_on_lock \
3056 {.vpane.lower.commarea.buttons.incall conf
-state}
3058 if {![is_enabled nocommitmsg
]} {
3059 ${NS}::button .vpane.lower.commarea.buttons.signoff
-text [mc
"Sign Off"] \
3061 pack .vpane.lower.commarea.buttons.signoff
-side top
-fill x
3064 ${NS}::button .vpane.lower.commarea.buttons.commit
-text [commit_btn_caption
] \
3066 pack .vpane.lower.commarea.buttons.commit
-side top
-fill x
3067 lappend disable_on_lock \
3068 {.vpane.lower.commarea.buttons.commit conf
-state}
3070 if {![is_enabled nocommit
]} {
3071 ${NS}::button .vpane.lower.commarea.buttons.push
-text [mc Push
] \
3072 -command do_push_anywhere
3073 pack .vpane.lower.commarea.buttons.push
-side top
-fill x
3076 # -- Commit Message Buffer
3078 ${NS}::frame .vpane.lower.commarea.buffer
3079 ${NS}::frame .vpane.lower.commarea.buffer.header
3080 set ui_comm .vpane.lower.commarea.buffer.t
3081 set ui_coml .vpane.lower.commarea.buffer.header.l
3083 if {![is_enabled nocommit
]} {
3084 ${NS}::radiobutton .vpane.lower.commarea.buffer.header.new \
3085 -text [mc
"New Commit"] \
3086 -command do_select_commit_type \
3087 -variable selected_commit_type \
3089 lappend disable_on_lock \
3090 [list .vpane.lower.commarea.buffer.header.new conf
-state]
3091 ${NS}::radiobutton .vpane.lower.commarea.buffer.header.amend \
3092 -text [mc
"Amend Last Commit"] \
3093 -command do_select_commit_type \
3094 -variable selected_commit_type \
3096 lappend disable_on_lock \
3097 [list .vpane.lower.commarea.buffer.header.amend conf
-state]
3100 ${NS}::label
$ui_coml \
3103 proc trace_commit_type
{varname args
} {
3104 global ui_coml commit_type
3105 switch
-glob -- $commit_type {
3106 initial
{set txt
[mc
"Initial Commit Message:"]}
3107 amend
{set txt
[mc
"Amended Commit Message:"]}
3108 amend-initial
{set txt
[mc
"Amended Initial Commit Message:"]}
3109 amend-merge
{set txt
[mc
"Amended Merge Commit Message:"]}
3110 merge
{set txt
[mc
"Merge Commit Message:"]}
3111 * {set txt
[mc
"Commit Message:"]}
3113 $ui_coml conf
-text $txt
3115 trace add variable commit_type
write trace_commit_type
3116 pack
$ui_coml -side left
-fill x
3118 if {![is_enabled nocommit
]} {
3119 pack .vpane.lower.commarea.buffer.header.amend
-side right
3120 pack .vpane.lower.commarea.buffer.header.new
-side right
3123 text
$ui_comm -background white
-foreground black \
3127 -autoseparators true \
3129 -width $repo_config(gui.commitmsgwidth
) -height 9 -wrap none \
3131 -yscrollcommand {.vpane.lower.commarea.buffer.sby
set}
3132 ${NS}::scrollbar .vpane.lower.commarea.buffer.sby \
3133 -command [list
$ui_comm yview
]
3134 pack .vpane.lower.commarea.buffer.header
-side top
-fill x
3135 pack .vpane.lower.commarea.buffer.sby
-side right
-fill y
3136 pack
$ui_comm -side left
-fill y
3137 pack .vpane.lower.commarea.buffer
-side left
-fill y
3139 # -- Commit Message Buffer Context Menu
3141 set ctxm .vpane.lower.commarea.buffer.ctxm
3142 menu
$ctxm -tearoff 0
3145 -command {tk_textCut
$ui_comm}
3148 -command {tk_textCopy
$ui_comm}
3151 -command {tk_textPaste
$ui_comm}
3153 -label [mc Delete
] \
3154 -command {catch
{$ui_comm delete sel.first sel.last
}}
3157 -label [mc
"Select All"] \
3158 -command {focus
$ui_comm;$ui_comm tag add sel
0.0 end
}
3160 -label [mc
"Copy All"] \
3162 $ui_comm tag add sel
0.0 end
3163 tk_textCopy
$ui_comm
3164 $ui_comm tag remove sel
0.0 end
3168 -label [mc
"Sign Off"] \
3170 set ui_comm_ctxm
$ctxm
3174 proc trace_current_diff_path
{varname args
} {
3175 global current_diff_path diff_actions file_states
3176 if {$current_diff_path eq
{}} {
3182 set p
$current_diff_path
3183 set s
[mapdesc
[lindex
$file_states($p) 0] $p]
3185 set p
[escape_path
$p]
3189 .vpane.lower.
diff.header.status configure
-text $s
3190 .vpane.lower.
diff.header.
file configure
-text $f
3191 .vpane.lower.
diff.header.path configure
-text $p
3192 foreach w
$diff_actions {
3196 trace add variable current_diff_path
write trace_current_diff_path
3198 gold_frame .vpane.lower.
diff.header
3199 tlabel .vpane.lower.
diff.header.status \
3202 -width $max_status_desc \
3205 tlabel .vpane.lower.
diff.header.
file \
3210 tlabel .vpane.lower.
diff.header.path \
3215 pack .vpane.lower.
diff.header.status
-side left
3216 pack .vpane.lower.
diff.header.
file -side left
3217 pack .vpane.lower.
diff.header.path
-fill x
3218 set ctxm .vpane.lower.
diff.header.ctxm
3219 menu
$ctxm -tearoff 0
3227 -- $current_diff_path
3229 lappend diff_actions
[list
$ctxm entryconf
[$ctxm index last
] -state]
3230 bind_button3 .vpane.lower.
diff.header.path
"tk_popup $ctxm %X %Y"
3234 ${NS}::frame .vpane.lower.
diff.body
3235 set ui_diff .vpane.lower.
diff.body.t
3236 text
$ui_diff -background white
-foreground black \
3238 -width 80 -height 5 -wrap none \
3240 -xscrollcommand {.vpane.lower.
diff.body.sbx
set} \
3241 -yscrollcommand {.vpane.lower.
diff.body.sby
set} \
3243 ${NS}::scrollbar .vpane.lower.
diff.body.sbx
-orient horizontal \
3244 -command [list
$ui_diff xview
]
3245 ${NS}::scrollbar .vpane.lower.
diff.body.sby
-orient vertical \
3246 -command [list
$ui_diff yview
]
3247 pack .vpane.lower.
diff.body.sbx
-side bottom
-fill x
3248 pack .vpane.lower.
diff.body.sby
-side right
-fill y
3249 pack
$ui_diff -side left
-fill both
-expand 1
3250 pack .vpane.lower.
diff.header
-side top
-fill x
3251 pack .vpane.lower.
diff.body
-side bottom
-fill both
-expand 1
3253 $ui_diff tag conf d_cr
-elide true
3254 $ui_diff tag conf d_@
-foreground blue
-font font_diffbold
3255 $ui_diff tag conf d_
+ -foreground {#00a000}
3256 $ui_diff tag conf d_-
-foreground red
3258 $ui_diff tag conf d_
++ -foreground {#00a000}
3259 $ui_diff tag conf d_--
-foreground red
3260 $ui_diff tag conf d_
+s \
3261 -foreground {#00a000} \
3262 -background {#e2effa}
3263 $ui_diff tag conf d_-s \
3265 -background {#e2effa}
3266 $ui_diff tag conf d_s
+ \
3267 -foreground {#00a000} \
3269 $ui_diff tag conf d_s- \
3273 $ui_diff tag conf d
<<<<<<< \
3274 -foreground orange \
3276 $ui_diff tag conf d
======= \
3277 -foreground orange \
3279 $ui_diff tag conf d
>>>>>>> \
3280 -foreground orange \
3283 $ui_diff tag raise sel
3285 # -- Diff Body Context Menu
3288 proc create_common_diff_popup
{ctxm
} {
3290 -label [mc Refresh
] \
3291 -command reshow_diff
3292 lappend diff_actions
[list
$ctxm entryconf
[$ctxm index last
] -state]
3295 -command {tk_textCopy
$ui_diff}
3296 lappend diff_actions
[list
$ctxm entryconf
[$ctxm index last
] -state]
3298 -label [mc
"Select All"] \
3299 -command {focus
$ui_diff;$ui_diff tag add sel
0.0 end
}
3300 lappend diff_actions
[list
$ctxm entryconf
[$ctxm index last
] -state]
3302 -label [mc
"Copy All"] \
3304 $ui_diff tag add sel
0.0 end
3305 tk_textCopy
$ui_diff
3306 $ui_diff tag remove sel
0.0 end
3308 lappend diff_actions
[list
$ctxm entryconf
[$ctxm index last
] -state]
3311 -label [mc
"Decrease Font Size"] \
3312 -command {incr_font_size font_diff
-1}
3313 lappend diff_actions
[list
$ctxm entryconf
[$ctxm index last
] -state]
3315 -label [mc
"Increase Font Size"] \
3316 -command {incr_font_size font_diff
1}
3317 lappend diff_actions
[list
$ctxm entryconf
[$ctxm index last
] -state]
3321 build_encoding_menu
$emenu [list force_diff_encoding
]
3323 -label [mc
"Encoding"] \
3325 lappend diff_actions
[list
$ctxm entryconf
[$ctxm index last
] -state]
3327 $ctxm add
command -label [mc
"Options..."] \
3331 set ctxm .vpane.lower.
diff.body.ctxm
3332 menu
$ctxm -tearoff 0
3334 -label [mc
"Apply/Reverse Hunk"] \
3335 -command {apply_hunk
$cursorX $cursorY}
3336 set ui_diff_applyhunk
[$ctxm index last
]
3337 lappend diff_actions
[list
$ctxm entryconf
$ui_diff_applyhunk -state]
3339 -label [mc
"Apply/Reverse Line"] \
3340 -command {apply_range_or_line
$cursorX $cursorY; do_rescan
}
3341 set ui_diff_applyline
[$ctxm index last
]
3342 lappend diff_actions
[list
$ctxm entryconf
$ui_diff_applyline -state]
3345 -label [mc
"Show Less Context"] \
3346 -command show_less_context
3347 lappend diff_actions
[list
$ctxm entryconf
[$ctxm index last
] -state]
3349 -label [mc
"Show More Context"] \
3350 -command show_more_context
3351 lappend diff_actions
[list
$ctxm entryconf
[$ctxm index last
] -state]
3353 create_common_diff_popup
$ctxm
3355 set ctxmmg .vpane.lower.
diff.body.ctxmmg
3356 menu
$ctxmmg -tearoff 0
3357 $ctxmmg add
command \
3358 -label [mc
"Run Merge Tool"] \
3359 -command {merge_resolve_tool
}
3360 lappend diff_actions
[list
$ctxmmg entryconf
[$ctxmmg index last
] -state]
3361 $ctxmmg add separator
3362 $ctxmmg add
command \
3363 -label [mc
"Use Remote Version"] \
3364 -command {merge_resolve_one
3}
3365 lappend diff_actions
[list
$ctxmmg entryconf
[$ctxmmg index last
] -state]
3366 $ctxmmg add
command \
3367 -label [mc
"Use Local Version"] \
3368 -command {merge_resolve_one
2}
3369 lappend diff_actions
[list
$ctxmmg entryconf
[$ctxmmg index last
] -state]
3370 $ctxmmg add
command \
3371 -label [mc
"Revert To Base"] \
3372 -command {merge_resolve_one
1}
3373 lappend diff_actions
[list
$ctxmmg entryconf
[$ctxmmg index last
] -state]
3374 $ctxmmg add separator
3375 $ctxmmg add
command \
3376 -label [mc
"Show Less Context"] \
3377 -command show_less_context
3378 lappend diff_actions
[list
$ctxmmg entryconf
[$ctxmmg index last
] -state]
3379 $ctxmmg add
command \
3380 -label [mc
"Show More Context"] \
3381 -command show_more_context
3382 lappend diff_actions
[list
$ctxmmg entryconf
[$ctxmmg index last
] -state]
3383 $ctxmmg add separator
3384 create_common_diff_popup
$ctxmmg
3386 set ctxmsm .vpane.lower.
diff.body.ctxmsm
3387 menu
$ctxmsm -tearoff 0
3388 $ctxmsm add
command \
3389 -label [mc
"Visualize These Changes In The Submodule"] \
3390 -command {do_gitk
-- true
}
3391 lappend diff_actions
[list
$ctxmsm entryconf
[$ctxmsm index last
] -state]
3392 $ctxmsm add
command \
3393 -label [mc
"Visualize Current Branch History In The Submodule"] \
3394 -command {do_gitk
{} true
}
3395 lappend diff_actions
[list
$ctxmsm entryconf
[$ctxmsm index last
] -state]
3396 $ctxmsm add
command \
3397 -label [mc
"Visualize All Branch History In The Submodule"] \
3398 -command {do_gitk
--all true
}
3399 lappend diff_actions
[list
$ctxmsm entryconf
[$ctxmsm index last
] -state]
3400 $ctxmsm add separator
3401 $ctxmsm add
command \
3402 -label [mc
"Start git gui In The Submodule"] \
3403 -command {do_git_gui
}
3404 lappend diff_actions
[list
$ctxmsm entryconf
[$ctxmsm index last
] -state]
3405 $ctxmsm add separator
3406 create_common_diff_popup
$ctxmsm
3408 proc popup_diff_menu
{ctxm ctxmmg ctxmsm x y X Y
} {
3409 global current_diff_path file_states
3412 if {[info exists file_states
($current_diff_path)]} {
3413 set state
[lindex
$file_states($current_diff_path) 0]
3417 if {[string first
{U
} $state] >= 0} {
3418 tk_popup
$ctxmmg $X $Y
3419 } elseif
{$
::is_submodule_diff
} {
3420 tk_popup
$ctxmsm $X $Y
3422 set has_range
[expr {[$
::ui_diff tag nextrange sel
0.0] != {}}]
3423 if {$
::ui_index eq $
::current_diff_side
} {
3424 set l
[mc
"Unstage Hunk From Commit"]
3426 set t
[mc
"Unstage Lines From Commit"]
3428 set t
[mc
"Unstage Line From Commit"]
3431 set l
[mc
"Stage Hunk For Commit"]
3433 set t
[mc
"Stage Lines For Commit"]
3435 set t
[mc
"Stage Line For Commit"]
3439 ||
$current_diff_path eq
{}
3443 ||
{T_
} eq
$state} {
3448 $ctxm entryconf $
::ui_diff_applyhunk
-state $s -label $l
3449 $ctxm entryconf $
::ui_diff_applyline
-state $s -label $t
3450 tk_popup
$ctxm $X $Y
3453 bind_button3
$ui_diff [list popup_diff_menu
$ctxm $ctxmmg $ctxmsm %x
%y
%X
%Y
]
3457 set main_status
[::status_bar
::new .status
]
3458 pack .status
-anchor w
-side bottom
-fill x
3459 $main_status show
[mc
"Initializing..."]
3464 set gm
$repo_config(gui.geometry
)
3465 wm geometry .
[lindex
$gm 0]
3467 .vpane sashpos
0 [lindex
$gm 1]
3468 .vpane.files sashpos
0 [lindex
$gm 2]
3470 .vpane sash place
0 \
3472 [lindex
[.vpane sash coord
0] 1]
3473 .vpane.files sash place
0 \
3474 [lindex
[.vpane.files sash coord
0] 0] \
3480 # -- Load window state
3483 set gws
$repo_config(gui.wmstate
)
3490 bind $ui_comm <$M1B-Key-Return> {do_commit
;break}
3491 bind $ui_comm <$M1B-Key-t> {do_add_selection
;break}
3492 bind $ui_comm <$M1B-Key-T> {do_add_selection
;break}
3493 bind $ui_comm <$M1B-Key-u> {do_unstage_selection
;break}
3494 bind $ui_comm <$M1B-Key-U> {do_unstage_selection
;break}
3495 bind $ui_comm <$M1B-Key-j> {do_revert_selection
;break}
3496 bind $ui_comm <$M1B-Key-J> {do_revert_selection
;break}
3497 bind $ui_comm <$M1B-Key-i> {do_add_all
;break}
3498 bind $ui_comm <$M1B-Key-I> {do_add_all
;break}
3499 bind $ui_comm <$M1B-Key-x> {tk_textCut
%W
;break}
3500 bind $ui_comm <$M1B-Key-X> {tk_textCut
%W
;break}
3501 bind $ui_comm <$M1B-Key-c> {tk_textCopy
%W
;break}
3502 bind $ui_comm <$M1B-Key-C> {tk_textCopy
%W
;break}
3503 bind $ui_comm <$M1B-Key-v> {tk_textPaste
%W
; %W see insert
; break}
3504 bind $ui_comm <$M1B-Key-V> {tk_textPaste
%W
; %W see insert
; break}
3505 bind $ui_comm <$M1B-Key-a> {%W tag add sel
0.0 end
;break}
3506 bind $ui_comm <$M1B-Key-A> {%W tag add sel
0.0 end
;break}
3507 bind $ui_comm <$M1B-Key-minus> {show_less_context
;break}
3508 bind $ui_comm <$M1B-Key-KP_Subtract> {show_less_context
;break}
3509 bind $ui_comm <$M1B-Key-equal> {show_more_context
;break}
3510 bind $ui_comm <$M1B-Key-plus> {show_more_context
;break}
3511 bind $ui_comm <$M1B-Key-KP_Add> {show_more_context
;break}
3513 bind $ui_diff <$M1B-Key-x> {tk_textCopy
%W
;break}
3514 bind $ui_diff <$M1B-Key-X> {tk_textCopy
%W
;break}
3515 bind $ui_diff <$M1B-Key-c> {tk_textCopy
%W
;break}
3516 bind $ui_diff <$M1B-Key-C> {tk_textCopy
%W
;break}
3517 bind $ui_diff <$M1B-Key-v> {break}
3518 bind $ui_diff <$M1B-Key-V> {break}
3519 bind $ui_diff <$M1B-Key-a> {%W tag add sel
0.0 end
;break}
3520 bind $ui_diff <$M1B-Key-A> {%W tag add sel
0.0 end
;break}
3521 bind $ui_diff <Key-Up
> {catch
{%W yview scroll
-1 units
};break}
3522 bind $ui_diff <Key-Down
> {catch
{%W yview scroll
1 units
};break}
3523 bind $ui_diff <Key-Left
> {catch
{%W xview scroll
-1 units
};break}
3524 bind $ui_diff <Key-Right
> {catch
{%W xview scroll
1 units
};break}
3525 bind $ui_diff <Key-k
> {catch
{%W yview scroll
-1 units
};break}
3526 bind $ui_diff <Key-j
> {catch
{%W yview scroll
1 units
};break}
3527 bind $ui_diff <Key-h
> {catch
{%W xview scroll
-1 units
};break}
3528 bind $ui_diff <Key-l
> {catch
{%W xview scroll
1 units
};break}
3529 bind $ui_diff <Control-Key-b
> {catch
{%W yview scroll
-1 pages
};break}
3530 bind $ui_diff <Control-Key-f
> {catch
{%W yview scroll
1 pages
};break}
3531 bind $ui_diff <Button-1
> {focus
%W
}
3533 if {[is_enabled branch
]} {
3534 bind .
<$M1B-Key-n> branch_create
::dialog
3535 bind .
<$M1B-Key-N> branch_create
::dialog
3536 bind .
<$M1B-Key-o> branch_checkout
::dialog
3537 bind .
<$M1B-Key-O> branch_checkout
::dialog
3538 bind .
<$M1B-Key-m> merge
::dialog
3539 bind .
<$M1B-Key-M> merge
::dialog
3541 if {[is_enabled transport
]} {
3542 bind .
<$M1B-Key-p> do_push_anywhere
3543 bind .
<$M1B-Key-P> do_push_anywhere
3546 bind .
<Key-F5
> ui_do_rescan
3547 bind .
<$M1B-Key-r> ui_do_rescan
3548 bind .
<$M1B-Key-R> ui_do_rescan
3549 bind .
<$M1B-Key-s> do_signoff
3550 bind .
<$M1B-Key-S> do_signoff
3551 bind .
<$M1B-Key-t> do_add_selection
3552 bind .
<$M1B-Key-T> do_add_selection
3553 bind .
<$M1B-Key-j> do_revert_selection
3554 bind .
<$M1B-Key-J> do_revert_selection
3555 bind .
<$M1B-Key-i> do_add_all
3556 bind .
<$M1B-Key-I> do_add_all
3557 bind .
<$M1B-Key-minus> {show_less_context
;break}
3558 bind .
<$M1B-Key-KP_Subtract> {show_less_context
;break}
3559 bind .
<$M1B-Key-equal> {show_more_context
;break}
3560 bind .
<$M1B-Key-plus> {show_more_context
;break}
3561 bind .
<$M1B-Key-KP_Add> {show_more_context
;break}
3562 bind .
<$M1B-Key-Return> do_commit
3563 foreach i
[list
$ui_index $ui_workdir] {
3564 bind $i <Button-1
> "toggle_or_diff $i %x %y; break"
3565 bind $i <$M1B-Button-1> "add_one_to_selection $i %x %y; break"
3566 bind $i <Shift-Button-1
> "add_range_to_selection $i %x %y; break"
3570 set file_lists
($ui_index) [list
]
3571 set file_lists
($ui_workdir) [list
]
3573 wm title .
"[appname] ([reponame]) [file normalize $_gitworktree]"
3574 focus
-force $ui_comm
3576 # -- Warn the user about environmental problems. Cygwin's Tcl
3577 # does *not* pass its env array onto any processes it spawns.
3578 # This means that git processes get none of our environment.
3583 set msg
[mc
"Possible environment issues exist.
3585 The following environment variables are probably
3586 going to be ignored by any Git subprocess run
3590 foreach name
[array names env
] {
3591 switch
-regexp -- $name {
3592 {^GIT_INDEX_FILE$
} -
3593 {^GIT_OBJECT_DIRECTORY$
} -
3594 {^GIT_ALTERNATE_OBJECT_DIRECTORIES$
} -
3596 {^GIT_EXTERNAL_DIFF$
} -
3600 {^GIT_
(AUTHOR|COMMITTER
)_DATE$
} {
3601 append msg
" - $name\n"
3604 {^GIT_
(AUTHOR|COMMITTER
)_
(NAME|EMAIL
)$
} {
3605 append msg
" - $name\n"
3607 set suggest_user
$name
3611 if {$ignored_env > 0} {
3613 This is due to a known issue with the
3614 Tcl binary distributed by Cygwin."]
3616 if {$suggest_user ne
{}} {
3619 A good replacement for %s
3620 is placing values for the user.name and
3621 user.email settings into your personal
3627 unset ignored_env msg suggest_user name
3630 # -- Only initialize complex UI if we are going to stay running.
3632 if {[is_enabled transport
]} {
3635 set n
[.mbar.remote index end
]
3636 populate_remotes_menu
3637 set n
[expr {[.mbar.remote index end
] - $n}]
3639 if {[.mbar.remote
type 0] eq
"tearoff"} { incr n
}
3640 .mbar.remote insert
$n separator
3645 if {[winfo exists
$ui_comm]} {
3646 set GITGUI_BCK_exists
[load_message GITGUI_BCK
]
3648 # -- If both our backup and message files exist use the
3649 # newer of the two files to initialize the buffer.
3651 if {$GITGUI_BCK_exists} {
3652 set m
[gitdir GITGUI_MSG
]
3653 if {[file isfile
$m]} {
3654 if {[file mtime
[gitdir GITGUI_BCK
]] > [file mtime
$m]} {
3655 catch
{file delete
[gitdir GITGUI_MSG
]}
3657 $ui_comm delete
0.0 end
3659 $ui_comm edit modified false
3660 catch
{file delete
[gitdir GITGUI_BCK
]}
3661 set GITGUI_BCK_exists
0
3667 proc backup_commit_buffer
{} {
3668 global ui_comm GITGUI_BCK_exists
3670 set m
[$ui_comm edit modified
]
3671 if {$m ||
$GITGUI_BCK_exists} {
3672 set msg
[string trim
[$ui_comm get
0.0 end
]]
3673 regsub
-all -line {[ \r\t]+$
} $msg {} msg
3676 if {$GITGUI_BCK_exists} {
3677 catch
{file delete
[gitdir GITGUI_BCK
]}
3678 set GITGUI_BCK_exists
0
3682 set fd
[open
[gitdir GITGUI_BCK
] w
]
3683 puts
-nonewline $fd $msg
3685 set GITGUI_BCK_exists
1
3689 $ui_comm edit modified false
3692 set ::GITGUI_BCK_i
[after
2000 backup_commit_buffer
]
3695 backup_commit_buffer
3697 # -- If the user has aspell available we can drive it
3698 # in pipe mode to spellcheck the commit message.
3700 set spell_cmd
[list |
]
3701 set spell_dict
[get_config gui.spellingdictionary
]
3702 lappend spell_cmd aspell
3703 if {$spell_dict ne
{}} {
3704 lappend spell_cmd
--master=$spell_dict
3706 lappend spell_cmd
--mode=none
3707 lappend spell_cmd
--encoding=utf-8
3708 lappend spell_cmd pipe
3709 if {$spell_dict eq
{none
}
3710 ||
[catch
{set spell_fd
[open
$spell_cmd r
+]} spell_err
]} {
3711 bind_button3
$ui_comm [list tk_popup
$ui_comm_ctxm %X
%Y
]
3713 set ui_comm_spell
[spellcheck
::init \
3719 unset -nocomplain spell_cmd spell_fd spell_err spell_dict
3722 lock_index begin-read
3723 if {![winfo ismapped .
]} {
3727 if {[is_enabled initialamend
]} {
3733 if {[is_enabled nocommitmsg
]} {
3734 $ui_comm configure
-state disabled
-background gray
3737 if {[is_enabled multicommit
]} {
3740 if {[is_enabled retcode
]} {
3741 bind .
<Destroy
> {+terminate_me
%W
}
3743 if {$picked && [is_config_true gui.autoexplore
]} {
3749 # indent-tabs-mode: t