2 # Tcl ignores the next line -*- tcl -*- \
5 set appvers {@@GIT_VERSION@@}
7 Copyright © 2006, 2007 Shawn Pearce, Paul Mackerras.
9 This program is free software; you can redistribute it and/or modify
10 it under the terms of the GNU General Public License as published by
11 the Free Software Foundation; either version 2 of the License, or
12 (at your option) any later version.
14 This program is distributed in the hope that it will be useful,
15 but WITHOUT ANY WARRANTY; without even the implied warranty of
16 MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
17 GNU General Public License for more details.
19 You should have received a copy of the GNU General Public License
20 along with this program; if not, write to the Free Software
21 Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307 USA}
23 ######################################################################
27 set _appname [lindex [file split $argv0] end]
41 return [eval [concat [list file join $_gitdir] $args]]
49 ######################################################################
53 proc is_many_config {name} {
54 switch -glob -- $name {
63 proc load_config {include_global} {
64 global repo_config global_config default_config
66 array unset global_config
67 if {$include_global} {
69 set fd_rc [open "| git repo-config --global --list" r]
70 while {[gets $fd_rc line] >= 0} {
71 if {[regexp {^([^=]+)=(.*)$} $line line name value]} {
72 if {[is_many_config $name]} {
73 lappend global_config($name) $value
75 set global_config($name) $value
83 array unset repo_config
85 set fd_rc [open "| git repo-config --list" r]
86 while {[gets $fd_rc line] >= 0} {
87 if {[regexp {^([^=]+)=(.*)$} $line line name value]} {
88 if {[is_many_config $name]} {
89 lappend repo_config($name) $value
91 set repo_config($name) $value
98 foreach name [array names default_config] {
99 if {[catch {set v $global_config($name)}]} {
100 set global_config($name) $default_config($name)
102 if {[catch {set v $repo_config($name)}]} {
103 set repo_config($name) $default_config($name)
108 proc save_config {} {
109 global default_config font_descs
110 global repo_config global_config
111 global repo_config_new global_config_new
113 foreach option $font_descs {
114 set name [lindex $option 0]
115 set font [lindex $option 1]
116 font configure $font \
117 -family $global_config_new(gui.$font^^family) \
118 -size $global_config_new(gui.$font^^size)
119 font configure ${font}bold \
120 -family $global_config_new(gui.$font^^family) \
121 -size $global_config_new(gui.$font^^size)
122 set global_config_new(gui.$name) [font configure $font]
123 unset global_config_new(gui.$font^^family)
124 unset global_config_new(gui.$font^^size)
127 foreach name [array names default_config] {
128 set value $global_config_new($name)
129 if {$value ne $global_config($name)} {
130 if {$value eq $default_config($name)} {
131 catch {exec git repo-config --global --unset $name}
133 regsub -all "\[{}\]" $value {"} value
134 exec git repo-config --global $name $value
136 set global_config($name) $value
137 if {$value eq $repo_config($name)} {
138 catch {exec git repo-config --unset $name}
139 set repo_config($name) $value
144 foreach name [array names default_config] {
145 set value $repo_config_new($name)
146 if {$value ne $repo_config($name)} {
147 if {$value eq $global_config($name)} {
148 catch {exec git repo-config --unset $name}
150 regsub -all "\[{}\]" $value {"} value
151 exec git repo-config $name $value
153 set repo_config($name) $value
158 proc error_popup {msg} {
160 if {[reponame] ne {}} {
161 append title " ([reponame])"
163 set cmd [list tk_messageBox \
166 -title "$title: error" \
168 if {[winfo ismapped .]} {
169 lappend cmd -parent .
174 proc warn_popup {msg} {
176 if {[reponame] ne {}} {
177 append title " ([reponame])"
179 set cmd [list tk_messageBox \
182 -title "$title: warning" \
184 if {[winfo ismapped .]} {
185 lappend cmd -parent .
190 proc info_popup {msg} {
192 if {[reponame] ne {}} {
193 append title " ([reponame])"
203 proc ask_popup {msg} {
205 if {[reponame] ne {}} {
206 append title " ([reponame])"
208 return [tk_messageBox \
216 ######################################################################
220 if { [catch {set _gitdir $env(GIT_DIR)}]
221 && [catch {set _gitdir [exec git rev-parse --git-dir]} err]} {
222 catch {wm withdraw .}
223 error_popup "Cannot find the git directory:\n\n$err"
226 if {![file isdirectory $_gitdir]} {
227 catch {wm withdraw .}
228 error_popup "Git directory not found:\n\n$_gitdir"
231 if {[lindex [file split $_gitdir] end] ne {.git}} {
232 catch {wm withdraw .}
233 error_popup "Cannot use funny .git directory:\n\n$gitdir"
236 if {[catch {cd [file dirname $_gitdir]} err]} {
237 catch {wm withdraw .}
238 error_popup "No working directory [file dirname $_gitdir]:\n\n$err"
241 set _reponame [lindex [file split \
242 [file normalize [file dirname $_gitdir]]] \
246 if {[appname] eq {git-citool}} {
250 ######################################################################
258 set disable_on_lock [list]
259 set index_lock_type none
261 proc lock_index {type} {
262 global index_lock_type disable_on_lock
264 if {$index_lock_type eq {none}} {
265 set index_lock_type $type
266 foreach w $disable_on_lock {
267 uplevel #0 $w disabled
270 } elseif {$index_lock_type eq "begin-$type"} {
271 set index_lock_type $type
277 proc unlock_index {} {
278 global index_lock_type disable_on_lock
280 set index_lock_type none
281 foreach w $disable_on_lock {
286 ######################################################################
290 proc repository_state {ctvar hdvar mhvar} {
291 global current_branch
292 upvar $ctvar ct $hdvar hd $mhvar mh
296 if {[catch {set current_branch [exec git symbolic-ref HEAD]}]} {
297 set current_branch {}
299 regsub ^refs/((heads|tags|remotes)/)? \
305 if {[catch {set hd [exec git rev-parse --verify HEAD]}]} {
311 set merge_head [gitdir MERGE_HEAD]
312 if {[file exists $merge_head]} {
314 set fd_mh [open $merge_head r]
315 while {[gets $fd_mh line] >= 0} {
326 global PARENT empty_tree
328 set p [lindex $PARENT 0]
332 if {$empty_tree eq {}} {
333 set empty_tree [exec git mktree << {}]
338 proc rescan {after {honor_trustmtime 1}} {
339 global HEAD PARENT MERGE_HEAD commit_type
340 global ui_index ui_workdir ui_status_value ui_comm
341 global rescan_active file_states
344 if {$rescan_active > 0 || ![lock_index read]} return
346 repository_state newType newHEAD newMERGE_HEAD
347 if {[string match amend* $commit_type]
348 && $newType eq {normal}
349 && $newHEAD eq $HEAD} {
353 set MERGE_HEAD $newMERGE_HEAD
354 set commit_type $newType
357 array unset file_states
359 if {![$ui_comm edit modified]
360 || [string trim [$ui_comm get 0.0 end]] eq {}} {
361 if {[load_message GITGUI_MSG]} {
362 } elseif {[load_message MERGE_MSG]} {
363 } elseif {[load_message SQUASH_MSG]} {
366 $ui_comm edit modified false
369 if {$honor_trustmtime && $repo_config(gui.trustmtime) eq {true}} {
370 rescan_stage2 {} $after
373 set ui_status_value {Refreshing file status...}
374 set cmd [list git update-index]
376 lappend cmd --unmerged
377 lappend cmd --ignore-missing
378 lappend cmd --refresh
379 set fd_rf [open "| $cmd" r]
380 fconfigure $fd_rf -blocking 0 -translation binary
381 fileevent $fd_rf readable \
382 [list rescan_stage2 $fd_rf $after]
386 proc rescan_stage2 {fd after} {
387 global ui_status_value
388 global rescan_active buf_rdi buf_rdf buf_rlo
392 if {![eof $fd]} return
396 set ls_others [list | git ls-files --others -z \
397 --exclude-per-directory=.gitignore]
398 set info_exclude [gitdir info exclude]
399 if {[file readable $info_exclude]} {
400 lappend ls_others "--exclude-from=$info_exclude"
408 set ui_status_value {Scanning for modified files ...}
409 set fd_di [open "| git diff-index --cached -z [PARENT]" r]
410 set fd_df [open "| git diff-files -z" r]
411 set fd_lo [open $ls_others r]
413 fconfigure $fd_di -blocking 0 -translation binary -encoding binary
414 fconfigure $fd_df -blocking 0 -translation binary -encoding binary
415 fconfigure $fd_lo -blocking 0 -translation binary -encoding binary
416 fileevent $fd_di readable [list read_diff_index $fd_di $after]
417 fileevent $fd_df readable [list read_diff_files $fd_df $after]
418 fileevent $fd_lo readable [list read_ls_others $fd_lo $after]
421 proc load_message {file} {
425 if {[file isfile $f]} {
426 if {[catch {set fd [open $f r]}]} {
429 set content [string trim [read $fd]]
431 regsub -all -line {[ \r\t]+$} $content {} content
432 $ui_comm delete 0.0 end
433 $ui_comm insert end $content
439 proc read_diff_index {fd after} {
442 append buf_rdi [read $fd]
444 set n [string length $buf_rdi]
446 set z1 [string first "\0" $buf_rdi $c]
449 set z2 [string first "\0" $buf_rdi $z1]
453 set i [split [string range $buf_rdi $c [expr {$z1 - 2}]] { }]
454 set p [string range $buf_rdi $z1 [expr {$z2 - 1}]]
456 [encoding convertfrom $p] \
458 [list [lindex $i 0] [lindex $i 2]] \
464 set buf_rdi [string range $buf_rdi $c end]
469 rescan_done $fd buf_rdi $after
472 proc read_diff_files {fd after} {
475 append buf_rdf [read $fd]
477 set n [string length $buf_rdf]
479 set z1 [string first "\0" $buf_rdf $c]
482 set z2 [string first "\0" $buf_rdf $z1]
486 set i [split [string range $buf_rdf $c [expr {$z1 - 2}]] { }]
487 set p [string range $buf_rdf $z1 [expr {$z2 - 1}]]
489 [encoding convertfrom $p] \
492 [list [lindex $i 0] [lindex $i 2]]
497 set buf_rdf [string range $buf_rdf $c end]
502 rescan_done $fd buf_rdf $after
505 proc read_ls_others {fd after} {
508 append buf_rlo [read $fd]
509 set pck [split $buf_rlo "\0"]
510 set buf_rlo [lindex $pck end]
511 foreach p [lrange $pck 0 end-1] {
512 merge_state [encoding convertfrom $p] ?O
514 rescan_done $fd buf_rlo $after
517 proc rescan_done {fd buf after} {
519 global file_states repo_config
522 if {![eof $fd]} return
525 if {[incr rescan_active -1] > 0} return
534 proc prune_selection {} {
535 global file_states selected_paths
537 foreach path [array names selected_paths] {
538 if {[catch {set still_here $file_states($path)}]} {
539 unset selected_paths($path)
544 ######################################################################
549 global ui_diff current_diff_path current_diff_header
550 global ui_index ui_workdir
552 $ui_diff conf -state normal
553 $ui_diff delete 0.0 end
554 $ui_diff conf -state disabled
556 set current_diff_path {}
557 set current_diff_header {}
559 $ui_index tag remove in_diff 0.0 end
560 $ui_workdir tag remove in_diff 0.0 end
563 proc reshow_diff {} {
564 global ui_status_value file_states file_lists
565 global current_diff_path current_diff_side
567 set p $current_diff_path
569 || $current_diff_side eq {}
570 || [catch {set s $file_states($p)}]
571 || [lsearch -sorted $file_lists($current_diff_side) $p] == -1} {
574 show_diff $p $current_diff_side
578 proc handle_empty_diff {} {
579 global current_diff_path file_states file_lists
581 set path $current_diff_path
582 set s $file_states($path)
583 if {[lindex $s 0] ne {_M}} return
585 info_popup "No differences detected.
587 [short_path $path] has no changes.
589 The modification date of this file was updated
590 by another application, but the content within
591 the file was not changed.
593 A rescan will be automatically started to find
594 other files which may have the same state."
597 display_file $path __
598 rescan {set ui_status_value {Ready.}} 0
601 proc show_diff {path w {lno {}}} {
602 global file_states file_lists
603 global is_3way_diff diff_active repo_config
604 global ui_diff ui_status_value ui_index ui_workdir
605 global current_diff_path current_diff_side current_diff_header
607 if {$diff_active || ![lock_index read]} return
610 if {$w eq {} || $lno == {}} {
611 foreach w [array names file_lists] {
612 set lno [lsearch -sorted $file_lists($w) $path]
619 if {$w ne {} && $lno >= 1} {
620 $w tag add in_diff $lno.0 [expr {$lno + 1}].0
623 set s $file_states($path)
627 set current_diff_path $path
628 set current_diff_side $w
629 set current_diff_header {}
630 set ui_status_value "Loading diff of [escape_path $path]..."
632 # - Git won't give us the diff, there's nothing to compare to!
635 set max_sz [expr {128 * 1024}]
637 set fd [open $path r]
638 set content [read $fd $max_sz]
640 set sz [file size $path]
644 set ui_status_value "Unable to display [escape_path $path]"
645 error_popup "Error loading file:\n\n$err"
648 $ui_diff conf -state normal
649 if {![catch {set type [exec file $path]}]} {
650 set n [string length $path]
651 if {[string equal -length $n $path $type]} {
652 set type [string range $type $n end]
653 regsub {^:?\s*} $type {} type
655 $ui_diff insert end "* $type\n" d_@
657 if {[string first "\0" $content] != -1} {
658 $ui_diff insert end \
659 "* Binary file (not showing content)." \
663 $ui_diff insert end \
664 "* Untracked file is $sz bytes.
665 * Showing only first $max_sz bytes.
668 $ui_diff insert end $content
670 $ui_diff insert end "
671 * Untracked file clipped here by [appname].
672 * To see the entire file, use an external editor.
676 $ui_diff conf -state disabled
679 set ui_status_value {Ready.}
684 if {$w eq $ui_index} {
685 lappend cmd diff-index
687 } elseif {$w eq $ui_workdir} {
688 if {[string index $m 0] eq {U}} {
691 lappend cmd diff-files
696 lappend cmd --no-color
697 if {$repo_config(gui.diffcontext) > 0} {
698 lappend cmd "-U$repo_config(gui.diffcontext)"
700 if {$w eq $ui_index} {
706 if {[catch {set fd [open $cmd r]} err]} {
709 set ui_status_value "Unable to display [escape_path $path]"
710 error_popup "Error loading diff:\n\n$err"
718 fileevent $fd readable [list read_diff $fd]
721 proc read_diff {fd} {
722 global ui_diff ui_status_value diff_active
723 global is_3way_diff current_diff_header
725 $ui_diff conf -state normal
726 while {[gets $fd line] >= 0} {
727 # -- Cleanup uninteresting diff header lines.
729 if { [string match {diff --git *} $line]
730 || [string match {diff --cc *} $line]
731 || [string match {diff --combined *} $line]
732 || [string match {--- *} $line]
733 || [string match {+++ *} $line]} {
734 append current_diff_header $line "\n"
737 if {[string match {index *} $line]} continue
738 if {$line eq {deleted file mode 120000}} {
739 set line "deleted symlink"
742 # -- Automatically detect if this is a 3 way diff.
744 if {[string match {@@@ *} $line]} {set is_3way_diff 1}
746 if {[string match {mode *} $line]
747 || [string match {new file *} $line]
748 || [string match {deleted file *} $line]
749 || [string match {Binary files * and * differ} $line]
750 || $line eq {\ No newline at end of file}
751 || [regexp {^\* Unmerged path } $line]} {
753 } elseif {$is_3way_diff} {
754 set op [string range $line 0 1]
764 if {[regexp {^\+\+([<>]{7} |={7})} $line _g op]} {
765 set line [string replace $line 0 1 { }]
772 puts "error: Unhandled 3 way diff marker: {$op}"
777 set op [string index $line 0]
783 if {[regexp {^\+([<>]{7} |={7})} $line _g op]} {
784 set line [string replace $line 0 0 { }]
791 puts "error: Unhandled 2 way diff marker: {$op}"
796 $ui_diff insert end $line $tags
797 if {[string index $line end] eq "\r"} {
798 $ui_diff tag add d_cr {end - 2c}
800 $ui_diff insert end "\n" $tags
802 $ui_diff conf -state disabled
808 set ui_status_value {Ready.}
810 if {[$ui_diff index end] eq {2.0}} {
816 proc apply_hunk {x y} {
817 global current_diff_path current_diff_header current_diff_side
818 global ui_diff ui_index file_states
820 if {$current_diff_path eq {} || $current_diff_header eq {}} return
821 if {![lock_index apply_hunk]} return
823 set apply_cmd {git apply --cached --whitespace=nowarn}
824 set mi [lindex $file_states($current_diff_path) 0]
825 if {$current_diff_side eq $ui_index} {
827 lappend apply_cmd --reverse
828 if {[string index $mi 0] ne {M}} {
834 if {[string index $mi 1] ne {M}} {
840 set s_lno [lindex [split [$ui_diff index @$x,$y] .] 0]
841 set s_lno [$ui_diff search -backwards -regexp ^@@ $s_lno.0 0.0]
847 set e_lno [$ui_diff search -forwards -regexp ^@@ "$s_lno + 1 lines" end]
853 set p [open "| $apply_cmd" w]
854 fconfigure $p -translation binary -encoding binary
855 puts -nonewline $p $current_diff_header
856 puts -nonewline $p [$ui_diff get $s_lno $e_lno]
858 error_popup "Failed to $mode selected hunk.\n\n$err"
863 $ui_diff conf -state normal
864 $ui_diff delete $s_lno $e_lno
865 $ui_diff conf -state disabled
867 if {[$ui_diff get 1.0 end] eq "\n"} {
873 if {$current_diff_side eq $ui_index} {
875 } elseif {[string index $mi 0] eq {_}} {
881 display_file $current_diff_path $mi
887 ######################################################################
891 proc load_last_commit {} {
892 global HEAD PARENT MERGE_HEAD commit_type ui_comm
895 if {[llength $PARENT] == 0} {
896 error_popup {There is nothing to amend.
898 You are about to create the initial commit.
899 There is no commit before this to amend.
904 repository_state curType curHEAD curMERGE_HEAD
905 if {$curType eq {merge}} {
906 error_popup {Cannot amend while merging.
908 You are currently in the middle of a merge that
909 has not been fully completed. You cannot amend
910 the prior commit unless you first abort the
911 current merge activity.
919 set fd [open "| git cat-file commit $curHEAD" r]
920 fconfigure $fd -encoding binary -translation lf
921 if {[catch {set enc $repo_config(i18n.commitencoding)}]} {
924 while {[gets $fd line] > 0} {
925 if {[string match {parent *} $line]} {
926 lappend parents [string range $line 7 end]
927 } elseif {[string match {encoding *} $line]} {
928 set enc [string tolower [string range $line 9 end]]
931 fconfigure $fd -encoding $enc
932 set msg [string trim [read $fd]]
935 error_popup "Error loading commit data for amend:\n\n$err"
941 set MERGE_HEAD [list]
942 switch -- [llength $parents] {
943 0 {set commit_type amend-initial}
944 1 {set commit_type amend}
945 default {set commit_type amend-merge}
948 $ui_comm delete 0.0 end
949 $ui_comm insert end $msg
951 $ui_comm edit modified false
952 rescan {set ui_status_value {Ready.}}
955 proc create_new_commit {} {
956 global commit_type ui_comm
958 set commit_type normal
959 $ui_comm delete 0.0 end
961 $ui_comm edit modified false
962 rescan {set ui_status_value {Ready.}}
965 set GIT_COMMITTER_IDENT {}
967 proc committer_ident {} {
968 global GIT_COMMITTER_IDENT
970 if {$GIT_COMMITTER_IDENT eq {}} {
971 if {[catch {set me [exec git var GIT_COMMITTER_IDENT]} err]} {
972 error_popup "Unable to obtain your identity:\n\n$err"
975 if {![regexp {^(.*) [0-9]+ [-+0-9]+$} \
976 $me me GIT_COMMITTER_IDENT]} {
977 error_popup "Invalid GIT_COMMITTER_IDENT:\n\n$me"
982 return $GIT_COMMITTER_IDENT
985 proc commit_tree {} {
986 global HEAD commit_type file_states ui_comm repo_config
987 global ui_status_value pch_error
989 if {![lock_index update]} return
990 if {[committer_ident] eq {}} return
992 # -- Our in memory state should match the repository.
994 repository_state curType curHEAD curMERGE_HEAD
995 if {[string match amend* $commit_type]
996 && $curType eq {normal}
997 && $curHEAD eq $HEAD} {
998 } elseif {$commit_type ne $curType || $HEAD ne $curHEAD} {
999 info_popup {Last scanned state does not match repository state.
1001 Another Git program has modified this repository
1002 since the last scan. A rescan must be performed
1003 before another commit can be created.
1005 The rescan will be automatically started now.
1008 rescan {set ui_status_value {Ready.}}
1012 # -- At least one file should differ in the index.
1015 foreach path [array names file_states] {
1016 switch -glob -- [lindex $file_states($path) 0] {
1020 M? {set files_ready 1}
1022 error_popup "Unmerged files cannot be committed.
1024 File [short_path $path] has merge conflicts.
1025 You must resolve them and add the file before committing.
1031 error_popup "Unknown file state [lindex $s 0] detected.
1033 File [short_path $path] cannot be committed by this program.
1038 if {!$files_ready} {
1039 info_popup {No changes to commit.
1041 You must add at least 1 file before you can commit.
1047 # -- A message is required.
1049 set msg [string trim [$ui_comm get 1.0 end]]
1050 regsub -all -line {[ \t\r]+$} $msg {} msg
1052 error_popup {Please supply a commit message.
1054 A good commit message has the following format:
1056 - First line: Describe in one sentance what you did.
1057 - Second line: Blank
1058 - Remaining lines: Describe why this change is good.
1064 # -- Run the pre-commit hook.
1066 set pchook [gitdir hooks pre-commit]
1068 # On Cygwin [file executable] might lie so we need to ask
1069 # the shell if the hook is executable. Yes that's annoying.
1071 if {[is_Windows] && [file isfile $pchook]} {
1072 set pchook [list sh -c [concat \
1073 "if test -x \"$pchook\";" \
1074 "then exec \"$pchook\" 2>&1;" \
1076 } elseif {[file executable $pchook]} {
1077 set pchook [list $pchook |& cat]
1079 commit_writetree $curHEAD $msg
1083 set ui_status_value {Calling pre-commit hook...}
1085 set fd_ph [open "| $pchook" r]
1086 fconfigure $fd_ph -blocking 0 -translation binary
1087 fileevent $fd_ph readable \
1088 [list commit_prehook_wait $fd_ph $curHEAD $msg]
1091 proc commit_prehook_wait {fd_ph curHEAD msg} {
1092 global pch_error ui_status_value
1094 append pch_error [read $fd_ph]
1095 fconfigure $fd_ph -blocking 1
1097 if {[catch {close $fd_ph}]} {
1098 set ui_status_value {Commit declined by pre-commit hook.}
1099 hook_failed_popup pre-commit $pch_error
1102 commit_writetree $curHEAD $msg
1107 fconfigure $fd_ph -blocking 0
1110 proc commit_writetree {curHEAD msg} {
1111 global ui_status_value
1113 set ui_status_value {Committing changes...}
1114 set fd_wt [open "| git write-tree" r]
1115 fileevent $fd_wt readable \
1116 [list commit_committree $fd_wt $curHEAD $msg]
1119 proc commit_committree {fd_wt curHEAD msg} {
1120 global HEAD PARENT MERGE_HEAD commit_type
1121 global single_commit all_heads current_branch
1122 global ui_status_value ui_comm selected_commit_type
1123 global file_states selected_paths rescan_active
1127 if {$tree_id eq {} || [catch {close $fd_wt} err]} {
1128 error_popup "write-tree failed:\n\n$err"
1129 set ui_status_value {Commit failed.}
1134 # -- Build the message.
1136 set msg_p [gitdir COMMIT_EDITMSG]
1137 set msg_wt [open $msg_p w]
1138 if {[catch {set enc $repo_config(i18n.commitencoding)}]} {
1141 fconfigure $msg_wt -encoding $enc -translation binary
1142 puts -nonewline $msg_wt $msg
1145 # -- Create the commit.
1147 set cmd [list git commit-tree $tree_id]
1148 set parents [concat $PARENT $MERGE_HEAD]
1149 if {[llength $parents] > 0} {
1150 foreach p $parents {
1154 # git commit-tree writes to stderr during initial commit.
1155 lappend cmd 2>/dev/null
1158 if {[catch {set cmt_id [eval exec $cmd]} err]} {
1159 error_popup "commit-tree failed:\n\n$err"
1160 set ui_status_value {Commit failed.}
1165 # -- Update the HEAD ref.
1168 if {$commit_type ne {normal}} {
1169 append reflogm " ($commit_type)"
1171 set i [string first "\n" $msg]
1173 append reflogm {: } [string range $msg 0 [expr {$i - 1}]]
1175 append reflogm {: } $msg
1177 set cmd [list git update-ref -m $reflogm HEAD $cmt_id $curHEAD]
1178 if {[catch {eval exec $cmd} err]} {
1179 error_popup "update-ref failed:\n\n$err"
1180 set ui_status_value {Commit failed.}
1185 # -- Make sure our current branch exists.
1187 if {$commit_type eq {initial}} {
1188 lappend all_heads $current_branch
1189 set all_heads [lsort -unique $all_heads]
1190 populate_branch_menu
1193 # -- Cleanup after ourselves.
1195 catch {file delete $msg_p}
1196 catch {file delete [gitdir MERGE_HEAD]}
1197 catch {file delete [gitdir MERGE_MSG]}
1198 catch {file delete [gitdir SQUASH_MSG]}
1199 catch {file delete [gitdir GITGUI_MSG]}
1201 # -- Let rerere do its thing.
1203 if {[file isdirectory [gitdir rr-cache]]} {
1204 catch {exec git rerere}
1207 # -- Run the post-commit hook.
1209 set pchook [gitdir hooks post-commit]
1210 if {[is_Windows] && [file isfile $pchook]} {
1211 set pchook [list sh -c [concat \
1212 "if test -x \"$pchook\";" \
1213 "then exec \"$pchook\";" \
1215 } elseif {![file executable $pchook]} {
1218 if {$pchook ne {}} {
1219 catch {exec $pchook &}
1222 $ui_comm delete 0.0 end
1224 $ui_comm edit modified false
1226 if {$single_commit} do_quit
1228 # -- Update in memory status
1230 set selected_commit_type new
1231 set commit_type normal
1234 set MERGE_HEAD [list]
1236 foreach path [array names file_states] {
1237 set s $file_states($path)
1239 switch -glob -- $m {
1247 unset file_states($path)
1248 catch {unset selected_paths($path)}
1251 set file_states($path) [list _O [lindex $s 1] {} {}]
1257 set file_states($path) [list \
1258 _[string index $m 1] \
1269 set ui_status_value \
1270 "Changes committed as [string range $cmt_id 0 7]."
1273 ######################################################################
1277 proc fetch_from {remote} {
1278 set w [new_console "fetch $remote" \
1279 "Fetching new changes from $remote"]
1280 set cmd [list git fetch]
1282 console_exec $w $cmd
1285 proc pull_remote {remote branch} {
1286 global HEAD commit_type file_states repo_config
1288 if {![lock_index update]} return
1290 # -- Our in memory state should match the repository.
1292 repository_state curType curHEAD curMERGE_HEAD
1293 if {$commit_type ne $curType || $HEAD ne $curHEAD} {
1294 info_popup {Last scanned state does not match repository state.
1296 Another Git program has modified this repository
1297 since the last scan. A rescan must be performed
1298 before a pull operation can be started.
1300 The rescan will be automatically started now.
1303 rescan {set ui_status_value {Ready.}}
1307 # -- No differences should exist before a pull.
1309 if {[array size file_states] != 0} {
1310 error_popup {Uncommitted but modified files are present.
1312 You should not perform a pull with unmodified
1313 files in your working directory as Git will be
1314 unable to recover from an incorrect merge.
1316 You should commit or revert all changes before
1317 starting a pull operation.
1323 set w [new_console "pull $remote $branch" \
1324 "Pulling new changes from branch $branch in $remote"]
1325 set cmd [list git pull]
1326 if {$repo_config(gui.pullsummary) eq {false}} {
1327 lappend cmd --no-summary
1331 console_exec $w $cmd [list post_pull_remote $remote $branch]
1334 proc post_pull_remote {remote branch success} {
1335 global HEAD PARENT MERGE_HEAD commit_type selected_commit_type
1336 global ui_status_value
1340 repository_state commit_type HEAD MERGE_HEAD
1342 set selected_commit_type new
1343 set ui_status_value "Pulling $branch from $remote complete."
1345 rescan [list set ui_status_value \
1346 "Conflicts detected while pulling $branch from $remote."]
1350 proc push_to {remote} {
1351 set w [new_console "push $remote" \
1352 "Pushing changes to $remote"]
1353 set cmd [list git push]
1355 console_exec $w $cmd
1358 ######################################################################
1362 proc mapicon {w state path} {
1365 if {[catch {set r $all_icons($state$w)}]} {
1366 puts "error: no icon for $w state={$state} $path"
1372 proc mapdesc {state path} {
1375 if {[catch {set r $all_descs($state)}]} {
1376 puts "error: no desc for state={$state} $path"
1382 proc escape_path {path} {
1383 regsub -all "\n" $path "\\n" path
1387 proc short_path {path} {
1388 return [escape_path [lindex [file split $path] end]]
1392 set null_sha1 [string repeat 0 40]
1394 proc merge_state {path new_state {head_info {}} {index_info {}}} {
1395 global file_states next_icon_id null_sha1
1397 set s0 [string index $new_state 0]
1398 set s1 [string index $new_state 1]
1400 if {[catch {set info $file_states($path)}]} {
1402 set icon n[incr next_icon_id]
1404 set state [lindex $info 0]
1405 set icon [lindex $info 1]
1406 if {$head_info eq {}} {set head_info [lindex $info 2]}
1407 if {$index_info eq {}} {set index_info [lindex $info 3]}
1410 if {$s0 eq {?}} {set s0 [string index $state 0]} \
1411 elseif {$s0 eq {_}} {set s0 _}
1413 if {$s1 eq {?}} {set s1 [string index $state 1]} \
1414 elseif {$s1 eq {_}} {set s1 _}
1416 if {$s0 eq {A} && $s1 eq {_} && $head_info eq {}} {
1417 set head_info [list 0 $null_sha1]
1418 } elseif {$s0 ne {_} && [string index $state 0] eq {_}
1419 && $head_info eq {}} {
1420 set head_info $index_info
1423 set file_states($path) [list $s0$s1 $icon \
1424 $head_info $index_info \
1429 proc display_file_helper {w path icon_name old_m new_m} {
1432 if {$new_m eq {_}} {
1433 set lno [lsearch -sorted $file_lists($w) $path]
1435 set file_lists($w) [lreplace $file_lists($w) $lno $lno]
1437 $w conf -state normal
1438 $w delete $lno.0 [expr {$lno + 1}].0
1439 $w conf -state disabled
1441 } elseif {$old_m eq {_} && $new_m ne {_}} {
1442 lappend file_lists($w) $path
1443 set file_lists($w) [lsort -unique $file_lists($w)]
1444 set lno [lsearch -sorted $file_lists($w) $path]
1446 $w conf -state normal
1447 $w image create $lno.0 \
1448 -align center -padx 5 -pady 1 \
1450 -image [mapicon $w $new_m $path]
1451 $w insert $lno.1 "[escape_path $path]\n"
1452 $w conf -state disabled
1453 } elseif {$old_m ne $new_m} {
1454 $w conf -state normal
1455 $w image conf $icon_name -image [mapicon $w $new_m $path]
1456 $w conf -state disabled
1460 proc display_file {path state} {
1461 global file_states selected_paths
1462 global ui_index ui_workdir
1464 set old_m [merge_state $path $state]
1465 set s $file_states($path)
1466 set new_m [lindex $s 0]
1467 set icon_name [lindex $s 1]
1469 set o [string index $old_m 0]
1470 set n [string index $new_m 0]
1477 display_file_helper $ui_index $path $icon_name $o $n
1479 if {[string index $old_m 0] eq {U}} {
1482 set o [string index $old_m 1]
1484 if {[string index $new_m 0] eq {U}} {
1487 set n [string index $new_m 1]
1489 display_file_helper $ui_workdir $path $icon_name $o $n
1491 if {$new_m eq {__}} {
1492 unset file_states($path)
1493 catch {unset selected_paths($path)}
1497 proc display_all_files_helper {w path icon_name m} {
1500 lappend file_lists($w) $path
1501 set lno [expr {[lindex [split [$w index end] .] 0] - 1}]
1502 $w image create end \
1503 -align center -padx 5 -pady 1 \
1505 -image [mapicon $w $m $path]
1506 $w insert end "[escape_path $path]\n"
1509 proc display_all_files {} {
1510 global ui_index ui_workdir
1511 global file_states file_lists
1514 $ui_index conf -state normal
1515 $ui_workdir conf -state normal
1517 $ui_index delete 0.0 end
1518 $ui_workdir delete 0.0 end
1521 set file_lists($ui_index) [list]
1522 set file_lists($ui_workdir) [list]
1524 foreach path [lsort [array names file_states]] {
1525 set s $file_states($path)
1527 set icon_name [lindex $s 1]
1529 set s [string index $m 0]
1530 if {$s ne {U} && $s ne {_}} {
1531 display_all_files_helper $ui_index $path \
1535 if {[string index $m 0] eq {U}} {
1538 set s [string index $m 1]
1541 display_all_files_helper $ui_workdir $path \
1546 $ui_index conf -state disabled
1547 $ui_workdir conf -state disabled
1550 proc update_indexinfo {msg pathList after} {
1551 global update_index_cp ui_status_value
1553 if {![lock_index update]} return
1555 set update_index_cp 0
1556 set pathList [lsort $pathList]
1557 set totalCnt [llength $pathList]
1558 set batch [expr {int($totalCnt * .01) + 1}]
1559 if {$batch > 25} {set batch 25}
1561 set ui_status_value [format \
1562 "$msg... %i/%i files (%.2f%%)" \
1566 set fd [open "| git update-index -z --index-info" w]
1573 fileevent $fd writable [list \
1574 write_update_indexinfo \
1584 proc write_update_indexinfo {fd pathList totalCnt batch msg after} {
1585 global update_index_cp ui_status_value
1586 global file_states current_diff_path
1588 if {$update_index_cp >= $totalCnt} {
1595 for {set i $batch} \
1596 {$update_index_cp < $totalCnt && $i > 0} \
1598 set path [lindex $pathList $update_index_cp]
1599 incr update_index_cp
1601 set s $file_states($path)
1602 switch -glob -- [lindex $s 0] {
1609 set info [lindex $s 2]
1610 if {$info eq {}} continue
1612 puts -nonewline $fd "$info\t[encoding convertto $path]\0"
1613 display_file $path $new
1616 set ui_status_value [format \
1617 "$msg... %i/%i files (%.2f%%)" \
1620 [expr {100.0 * $update_index_cp / $totalCnt}]]
1623 proc update_index {msg pathList after} {
1624 global update_index_cp ui_status_value
1626 if {![lock_index update]} return
1628 set update_index_cp 0
1629 set pathList [lsort $pathList]
1630 set totalCnt [llength $pathList]
1631 set batch [expr {int($totalCnt * .01) + 1}]
1632 if {$batch > 25} {set batch 25}
1634 set ui_status_value [format \
1635 "$msg... %i/%i files (%.2f%%)" \
1639 set fd [open "| git update-index --add --remove -z --stdin" w]
1646 fileevent $fd writable [list \
1647 write_update_index \
1657 proc write_update_index {fd pathList totalCnt batch msg after} {
1658 global update_index_cp ui_status_value
1659 global file_states current_diff_path
1661 if {$update_index_cp >= $totalCnt} {
1668 for {set i $batch} \
1669 {$update_index_cp < $totalCnt && $i > 0} \
1671 set path [lindex $pathList $update_index_cp]
1672 incr update_index_cp
1674 switch -glob -- [lindex $file_states($path) 0] {
1680 if {[file exists $path]} {
1689 puts -nonewline $fd "[encoding convertto $path]\0"
1690 display_file $path $new
1693 set ui_status_value [format \
1694 "$msg... %i/%i files (%.2f%%)" \
1697 [expr {100.0 * $update_index_cp / $totalCnt}]]
1700 proc checkout_index {msg pathList after} {
1701 global update_index_cp ui_status_value
1703 if {![lock_index update]} return
1705 set update_index_cp 0
1706 set pathList [lsort $pathList]
1707 set totalCnt [llength $pathList]
1708 set batch [expr {int($totalCnt * .01) + 1}]
1709 if {$batch > 25} {set batch 25}
1711 set ui_status_value [format \
1712 "$msg... %i/%i files (%.2f%%)" \
1716 set cmd [list git checkout-index]
1722 set fd [open "| $cmd " w]
1729 fileevent $fd writable [list \
1730 write_checkout_index \
1740 proc write_checkout_index {fd pathList totalCnt batch msg after} {
1741 global update_index_cp ui_status_value
1742 global file_states current_diff_path
1744 if {$update_index_cp >= $totalCnt} {
1751 for {set i $batch} \
1752 {$update_index_cp < $totalCnt && $i > 0} \
1754 set path [lindex $pathList $update_index_cp]
1755 incr update_index_cp
1756 switch -glob -- [lindex $file_states($path) 0] {
1760 puts -nonewline $fd "[encoding convertto $path]\0"
1761 display_file $path ?_
1766 set ui_status_value [format \
1767 "$msg... %i/%i files (%.2f%%)" \
1770 [expr {100.0 * $update_index_cp / $totalCnt}]]
1773 ######################################################################
1775 ## branch management
1777 proc is_tracking_branch {name} {
1778 global tracking_branches
1780 if {![catch {set info $tracking_branches($name)}]} {
1783 foreach t [array names tracking_branches] {
1784 if {[string match {*/\*} $t] && [string match $t $name]} {
1791 proc load_all_heads {} {
1794 set all_heads [list]
1795 set fd [open "| git for-each-ref --format=%(refname) refs/heads" r]
1796 while {[gets $fd line] > 0} {
1797 if {[is_tracking_branch $line]} continue
1798 if {![regsub ^refs/heads/ $line {} name]} continue
1799 lappend all_heads $name
1803 set all_heads [lsort $all_heads]
1806 proc populate_branch_menu {} {
1807 global all_heads disable_on_lock
1810 set last [$m index last]
1811 for {set i 0} {$i <= $last} {incr i} {
1812 if {[$m type $i] eq {separator}} {
1815 foreach a $disable_on_lock {
1816 if {[lindex $a 0] ne $m || [lindex $a 2] < $i} {
1820 set disable_on_lock $new_dol
1825 if {$all_heads ne {}} {
1828 foreach b $all_heads {
1829 $m add radiobutton \
1831 -command [list switch_branch $b] \
1832 -variable current_branch \
1835 lappend disable_on_lock \
1836 [list $m entryconf [$m index last] -state]
1840 proc all_tracking_branches {} {
1841 global tracking_branches
1843 set all_trackings {}
1845 foreach name [array names tracking_branches] {
1846 if {[regsub {/\*$} $name {} name]} {
1849 regsub ^refs/(heads|remotes)/ $name {} name
1850 lappend all_trackings $name
1855 set fd [open "| git for-each-ref --format=%(refname) $cmd" r]
1856 while {[gets $fd name] > 0} {
1857 regsub ^refs/(heads|remotes)/ $name {} name
1858 lappend all_trackings $name
1863 return [lsort -unique $all_trackings]
1866 proc do_create_branch_action {w} {
1867 global all_heads null_sha1 repo_config
1868 global create_branch_checkout create_branch_revtype
1869 global create_branch_head create_branch_trackinghead
1870 global create_branch_name create_branch_revexp
1872 set newbranch $create_branch_name
1873 if {$newbranch eq {}
1874 || $newbranch eq $repo_config(gui.newbranchtemplate)} {
1878 -title [wm title $w] \
1880 -message "Please supply a branch name."
1881 focus $w.desc.name_t
1884 if {![catch {exec git show-ref --verify -- "refs/heads/$newbranch"}]} {
1888 -title [wm title $w] \
1890 -message "Branch '$newbranch' already exists."
1891 focus $w.desc.name_t
1894 if {[catch {exec git check-ref-format "heads/$newbranch"}]} {
1898 -title [wm title $w] \
1900 -message "We do not like '$newbranch' as a branch name."
1901 focus $w.desc.name_t
1906 switch -- $create_branch_revtype {
1907 head {set rev $create_branch_head}
1908 tracking {set rev $create_branch_trackinghead}
1909 expression {set rev $create_branch_revexp}
1911 if {[catch {set cmt [exec git rev-parse --verify "${rev}^0"]}]} {
1915 -title [wm title $w] \
1917 -message "Invalid starting revision: $rev"
1920 set cmd [list git update-ref]
1922 lappend cmd "branch: Created from $rev"
1923 lappend cmd "refs/heads/$newbranch"
1925 lappend cmd $null_sha1
1926 if {[catch {eval exec $cmd} err]} {
1930 -title [wm title $w] \
1932 -message "Failed to create '$newbranch'.\n\n$err"
1936 lappend all_heads $newbranch
1937 set all_heads [lsort $all_heads]
1938 populate_branch_menu
1940 if {$create_branch_checkout} {
1941 switch_branch $newbranch
1945 proc radio_selector {varname value args} {
1946 upvar #0 $varname var
1950 trace add variable create_branch_head write \
1951 [list radio_selector create_branch_revtype head]
1952 trace add variable create_branch_trackinghead write \
1953 [list radio_selector create_branch_revtype tracking]
1955 trace add variable delete_branch_head write \
1956 [list radio_selector delete_branch_checktype head]
1957 trace add variable delete_branch_trackinghead write \
1958 [list radio_selector delete_branch_checktype tracking]
1960 proc do_create_branch {} {
1961 global all_heads current_branch repo_config
1962 global create_branch_checkout create_branch_revtype
1963 global create_branch_head create_branch_trackinghead
1964 global create_branch_name create_branch_revexp
1966 set w .branch_editor
1968 wm geometry $w "+[winfo rootx .]+[winfo rooty .]"
1970 label $w.header -text {Create New Branch} \
1972 pack $w.header -side top -fill x
1975 button $w.buttons.create -text Create \
1978 -command [list do_create_branch_action $w]
1979 pack $w.buttons.create -side right
1980 button $w.buttons.cancel -text {Cancel} \
1982 -command [list destroy $w]
1983 pack $w.buttons.cancel -side right -padx 5
1984 pack $w.buttons -side bottom -fill x -pady 10 -padx 10
1986 labelframe $w.desc \
1987 -text {Branch Description} \
1989 label $w.desc.name_l -text {Name:} -font font_ui
1990 entry $w.desc.name_t \
1994 -textvariable create_branch_name \
1998 if {%d == 1 && [regexp {[~^:?*\[\0- ]} %S]} {return 0}
2001 grid $w.desc.name_l $w.desc.name_t -sticky we -padx {0 5}
2002 grid columnconfigure $w.desc 1 -weight 1
2003 pack $w.desc -anchor nw -fill x -pady 5 -padx 5
2005 labelframe $w.from \
2006 -text {Starting Revision} \
2008 radiobutton $w.from.head_r \
2009 -text {Local Branch:} \
2011 -variable create_branch_revtype \
2013 eval tk_optionMenu $w.from.head_m create_branch_head $all_heads
2014 grid $w.from.head_r $w.from.head_m -sticky w
2015 set all_trackings [all_tracking_branches]
2016 if {$all_trackings ne {}} {
2017 set create_branch_trackinghead [lindex $all_trackings 0]
2018 radiobutton $w.from.tracking_r \
2019 -text {Tracking Branch:} \
2021 -variable create_branch_revtype \
2023 eval tk_optionMenu $w.from.tracking_m \
2024 create_branch_trackinghead \
2026 grid $w.from.tracking_r $w.from.tracking_m -sticky w
2028 radiobutton $w.from.exp_r \
2029 -text {Revision Expression:} \
2031 -variable create_branch_revtype \
2033 entry $w.from.exp_t \
2037 -textvariable create_branch_revexp \
2041 if {%d == 1 && [regexp {\s} %S]} {return 0}
2042 if {%d == 1 && [string length %S] > 0} {
2043 set create_branch_revtype expression
2047 grid $w.from.exp_r $w.from.exp_t -sticky we -padx {0 5}
2048 grid columnconfigure $w.from 1 -weight 1
2049 pack $w.from -anchor nw -fill x -pady 5 -padx 5
2051 labelframe $w.postActions \
2052 -text {Post Creation Actions} \
2054 checkbutton $w.postActions.checkout \
2055 -text {Checkout after creation} \
2056 -variable create_branch_checkout \
2058 pack $w.postActions.checkout -anchor nw
2059 pack $w.postActions -anchor nw -fill x -pady 5 -padx 5
2061 set create_branch_checkout 1
2062 set create_branch_head $current_branch
2063 set create_branch_revtype head
2064 set create_branch_name $repo_config(gui.newbranchtemplate)
2065 set create_branch_revexp {}
2067 bind $w <Visibility> "
2069 $w.desc.name_t icursor end
2070 focus $w.desc.name_t
2072 bind $w <Key-Escape> "destroy $w"
2073 bind $w <Key-Return> "do_create_branch_action $w;break"
2074 wm title $w "[appname] ([reponame]): Create Branch"
2078 proc do_delete_branch_action {w} {
2080 global delete_branch_checktype delete_branch_head delete_branch_trackinghead
2083 switch -- $delete_branch_checktype {
2084 head {set check_rev $delete_branch_head}
2085 tracking {set check_rev $delete_branch_trackinghead}
2086 always {set check_rev {:none}}
2088 if {$check_rev eq {:none}} {
2090 } elseif {[catch {set check_cmt [exec git rev-parse --verify "${check_rev}^0"]}]} {
2094 -title [wm title $w] \
2096 -message "Invalid check revision: $check_rev"
2100 set to_delete [list]
2101 set not_merged [list]
2102 foreach i [$w.list.l curselection] {
2103 set b [$w.list.l get $i]
2104 if {[catch {set o [exec git rev-parse --verify $b]}]} continue
2105 if {$check_cmt ne {}} {
2106 if {$b eq $check_rev} continue
2107 if {[catch {set m [exec git merge-base $o $check_cmt]}]} continue
2109 lappend not_merged $b
2113 lappend to_delete [list $b $o]
2115 if {$not_merged ne {}} {
2116 set msg "The following branches are not completely merged into $check_rev:
2118 - [join $not_merged "\n - "]"
2122 -title [wm title $w] \
2126 if {$to_delete eq {}} return
2127 if {$delete_branch_checktype eq {always}} {
2128 set msg {Recovering deleted branches is difficult.
2130 Delete the selected branches?}
2131 if {[tk_messageBox \
2134 -title [wm title $w] \
2136 -message $msg] ne yes} {
2142 foreach i $to_delete {
2145 if {[catch {exec git update-ref -d "refs/heads/$b" $o} err]} {
2146 append failed " - $b: $err\n"
2148 set x [lsearch -sorted $all_heads $b]
2150 set all_heads [lreplace $all_heads $x $x]
2155 if {$failed ne {}} {
2159 -title [wm title $w] \
2161 -message "Failed to delete branches:\n$failed"
2164 set all_heads [lsort $all_heads]
2165 populate_branch_menu
2169 proc do_delete_branch {} {
2170 global all_heads tracking_branches current_branch
2171 global delete_branch_checktype delete_branch_head delete_branch_trackinghead
2173 set w .branch_editor
2175 wm geometry $w "+[winfo rootx .]+[winfo rooty .]"
2177 label $w.header -text {Delete Local Branch} \
2179 pack $w.header -side top -fill x
2182 button $w.buttons.create -text Delete \
2184 -command [list do_delete_branch_action $w]
2185 pack $w.buttons.create -side right
2186 button $w.buttons.cancel -text {Cancel} \
2188 -command [list destroy $w]
2189 pack $w.buttons.cancel -side right -padx 5
2190 pack $w.buttons -side bottom -fill x -pady 10 -padx 10
2192 labelframe $w.list \
2193 -text {Local Branches} \
2198 -selectmode extended \
2200 foreach h $all_heads {
2201 if {$h ne $current_branch} {
2202 $w.list.l insert end $h
2205 pack $w.list.l -fill both -pady 5 -padx 5
2206 pack $w.list -fill both -pady 5 -padx 5
2208 labelframe $w.validate \
2209 -text {Delete Only If} \
2211 radiobutton $w.validate.head_r \
2212 -text {Merged Into Local Branch:} \
2214 -variable delete_branch_checktype \
2216 eval tk_optionMenu $w.validate.head_m delete_branch_head $all_heads
2217 grid $w.validate.head_r $w.validate.head_m -sticky w
2218 set all_trackings [all_tracking_branches]
2219 if {$all_trackings ne {}} {
2220 set delete_branch_trackinghead [lindex $all_trackings 0]
2221 radiobutton $w.validate.tracking_r \
2222 -text {Merged Into Tracking Branch:} \
2224 -variable delete_branch_checktype \
2226 eval tk_optionMenu $w.validate.tracking_m \
2227 delete_branch_trackinghead \
2229 grid $w.validate.tracking_r $w.validate.tracking_m -sticky w
2231 radiobutton $w.validate.always_r \
2232 -text {Always (Do not perform merge checks)} \
2234 -variable delete_branch_checktype \
2236 grid $w.validate.always_r -columnspan 2 -sticky w
2237 grid columnconfigure $w.validate 1 -weight 1
2238 pack $w.validate -anchor nw -fill x -pady 5 -padx 5
2240 set delete_branch_head $current_branch
2241 set delete_branch_checktype head
2243 bind $w <Visibility> "grab $w; focus $w"
2244 bind $w <Key-Escape> "destroy $w"
2245 wm title $w "[appname] ([reponame]): Delete Branch"
2249 proc switch_branch {new_branch} {
2250 global HEAD commit_type current_branch repo_config
2252 if {![lock_index switch]} return
2254 # -- Our in memory state should match the repository.
2256 repository_state curType curHEAD curMERGE_HEAD
2257 if {[string match amend* $commit_type]
2258 && $curType eq {normal}
2259 && $curHEAD eq $HEAD} {
2260 } elseif {$commit_type ne $curType || $HEAD ne $curHEAD} {
2261 info_popup {Last scanned state does not match repository state.
2263 Another Git program has modified this repository
2264 since the last scan. A rescan must be performed
2265 before the current branch can be changed.
2267 The rescan will be automatically started now.
2270 rescan {set ui_status_value {Ready.}}
2274 if {$repo_config(gui.trustmtime) eq {true}} {
2275 switch_branch_stage2 {} $new_branch
2277 set ui_status_value {Refreshing file status...}
2278 set cmd [list git update-index]
2280 lappend cmd --unmerged
2281 lappend cmd --ignore-missing
2282 lappend cmd --refresh
2283 set fd_rf [open "| $cmd" r]
2284 fconfigure $fd_rf -blocking 0 -translation binary
2285 fileevent $fd_rf readable \
2286 [list switch_branch_stage2 $fd_rf $new_branch]
2290 proc switch_branch_stage2 {fd_rf new_branch} {
2291 global ui_status_value HEAD
2295 if {![eof $fd_rf]} return
2299 set ui_status_value "Updating working directory to '$new_branch'..."
2300 set cmd [list git read-tree]
2303 lappend cmd --exclude-per-directory=.gitignore
2305 lappend cmd $new_branch
2306 set fd_rt [open "| $cmd" r]
2307 fconfigure $fd_rt -blocking 0 -translation binary
2308 fileevent $fd_rt readable \
2309 [list switch_branch_readtree_wait $fd_rt $new_branch]
2312 proc switch_branch_readtree_wait {fd_rt new_branch} {
2313 global selected_commit_type commit_type HEAD MERGE_HEAD PARENT
2314 global current_branch
2315 global ui_comm ui_status_value
2317 # -- We never get interesting output on stdout; only stderr.
2320 fconfigure $fd_rt -blocking 1
2321 if {![eof $fd_rt]} {
2322 fconfigure $fd_rt -blocking 0
2326 # -- The working directory wasn't in sync with the index and
2327 # we'd have to overwrite something to make the switch. A
2328 # merge is required.
2330 if {[catch {close $fd_rt} err]} {
2331 regsub {^fatal: } $err {} err
2332 warn_popup "File level merge required.
2336 Staying on branch '$current_branch'."
2337 set ui_status_value "Aborted checkout of '$new_branch' (file level merging is required)."
2342 # -- Update the symbolic ref. Core git doesn't even check for failure
2343 # here, it Just Works(tm). If it doesn't we are in some really ugly
2344 # state that is difficult to recover from within git-gui.
2346 if {[catch {exec git symbolic-ref HEAD "refs/heads/$new_branch"} err]} {
2347 error_popup "Failed to set current branch.
2349 This working directory is only partially switched.
2350 We successfully updated your files, but failed to
2351 update an internal Git file.
2353 This should not have occurred. [appname] will now
2361 # -- Update our repository state. If we were previously in amend mode
2362 # we need to toss the current buffer and do a full rescan to update
2363 # our file lists. If we weren't in amend mode our file lists are
2364 # accurate and we can avoid the rescan.
2367 set selected_commit_type new
2368 if {[string match amend* $commit_type]} {
2369 $ui_comm delete 0.0 end
2371 $ui_comm edit modified false
2372 rescan {set ui_status_value "Checked out branch '$current_branch'."}
2374 repository_state commit_type HEAD MERGE_HEAD
2376 set ui_status_value "Checked out branch '$current_branch'."
2380 ######################################################################
2382 ## remote management
2384 proc load_all_remotes {} {
2386 global all_remotes tracking_branches
2388 set all_remotes [list]
2389 array unset tracking_branches
2391 set rm_dir [gitdir remotes]
2392 if {[file isdirectory $rm_dir]} {
2393 set all_remotes [glob \
2397 -directory $rm_dir *]
2399 foreach name $all_remotes {
2401 set fd [open [file join $rm_dir $name] r]
2402 while {[gets $fd line] >= 0} {
2403 if {![regexp {^Pull:[ ]*([^:]+):(.+)$} \
2404 $line line src dst]} continue
2405 if {![regexp ^refs/ $dst]} {
2406 set dst "refs/heads/$dst"
2408 set tracking_branches($dst) [list $name $src]
2415 foreach line [array names repo_config remote.*.url] {
2416 if {![regexp ^remote\.(.*)\.url\$ $line line name]} continue
2417 lappend all_remotes $name
2419 if {[catch {set fl $repo_config(remote.$name.fetch)}]} {
2423 if {![regexp {^([^:]+):(.+)$} $line line src dst]} continue
2424 if {![regexp ^refs/ $dst]} {
2425 set dst "refs/heads/$dst"
2427 set tracking_branches($dst) [list $name $src]
2431 set all_remotes [lsort -unique $all_remotes]
2434 proc populate_fetch_menu {} {
2435 global all_remotes repo_config
2438 foreach r $all_remotes {
2440 if {![catch {set a $repo_config(remote.$r.url)}]} {
2441 if {![catch {set a $repo_config(remote.$r.fetch)}]} {
2446 set fd [open [gitdir remotes $r] r]
2447 while {[gets $fd n] >= 0} {
2448 if {[regexp {^Pull:[ \t]*([^:]+):} $n]} {
2459 -label "Fetch from $r..." \
2460 -command [list fetch_from $r] \
2466 proc populate_push_menu {} {
2467 global all_remotes repo_config
2470 foreach r $all_remotes {
2472 if {![catch {set a $repo_config(remote.$r.url)}]} {
2473 if {![catch {set a $repo_config(remote.$r.push)}]} {
2478 set fd [open [gitdir remotes $r] r]
2479 while {[gets $fd n] >= 0} {
2480 if {[regexp {^Push:[ \t]*([^:]+):} $n]} {
2491 -label "Push to $r..." \
2492 -command [list push_to $r] \
2498 ######################################################################
2503 #define mask_width 14
2504 #define mask_height 15
2505 static unsigned char mask_bits[] = {
2506 0xfe, 0x1f, 0xfe, 0x1f, 0xfe, 0x1f, 0xfe, 0x1f, 0xfe, 0x1f, 0xfe, 0x1f,
2507 0xfe, 0x1f, 0xfe, 0x1f, 0xfe, 0x1f, 0xfe, 0x1f, 0xfe, 0x1f, 0xfe, 0x1f,
2508 0xfe, 0x1f, 0xfe, 0x1f, 0xfe, 0x1f};
2511 image create bitmap file_plain -background white -foreground black -data {
2512 #define plain_width 14
2513 #define plain_height 15
2514 static unsigned char plain_bits[] = {
2515 0xfe, 0x01, 0x02, 0x03, 0x02, 0x05, 0x02, 0x09, 0x02, 0x1f, 0x02, 0x10,
2516 0x02, 0x10, 0x02, 0x10, 0x02, 0x10, 0x02, 0x10, 0x02, 0x10, 0x02, 0x10,
2517 0x02, 0x10, 0x02, 0x10, 0xfe, 0x1f};
2518 } -maskdata $filemask
2520 image create bitmap file_mod -background white -foreground blue -data {
2521 #define mod_width 14
2522 #define mod_height 15
2523 static unsigned char mod_bits[] = {
2524 0xfe, 0x01, 0x02, 0x03, 0x7a, 0x05, 0x02, 0x09, 0x7a, 0x1f, 0x02, 0x10,
2525 0xfa, 0x17, 0x02, 0x10, 0xfa, 0x17, 0x02, 0x10, 0xfa, 0x17, 0x02, 0x10,
2526 0xfa, 0x17, 0x02, 0x10, 0xfe, 0x1f};
2527 } -maskdata $filemask
2529 image create bitmap file_fulltick -background white -foreground "#007000" -data {
2530 #define file_fulltick_width 14
2531 #define file_fulltick_height 15
2532 static unsigned char file_fulltick_bits[] = {
2533 0xfe, 0x01, 0x02, 0x1a, 0x02, 0x0c, 0x02, 0x0c, 0x02, 0x16, 0x02, 0x16,
2534 0x02, 0x13, 0x00, 0x13, 0x86, 0x11, 0x8c, 0x11, 0xd8, 0x10, 0xf2, 0x10,
2535 0x62, 0x10, 0x02, 0x10, 0xfe, 0x1f};
2536 } -maskdata $filemask
2538 image create bitmap file_parttick -background white -foreground "#005050" -data {
2539 #define parttick_width 14
2540 #define parttick_height 15
2541 static unsigned char parttick_bits[] = {
2542 0xfe, 0x01, 0x02, 0x03, 0x7a, 0x05, 0x02, 0x09, 0x7a, 0x1f, 0x02, 0x10,
2543 0x7a, 0x14, 0x02, 0x16, 0x02, 0x13, 0x8a, 0x11, 0xda, 0x10, 0x72, 0x10,
2544 0x22, 0x10, 0x02, 0x10, 0xfe, 0x1f};
2545 } -maskdata $filemask
2547 image create bitmap file_question -background white -foreground black -data {
2548 #define file_question_width 14
2549 #define file_question_height 15
2550 static unsigned char file_question_bits[] = {
2551 0xfe, 0x01, 0x02, 0x02, 0xe2, 0x04, 0xf2, 0x09, 0x1a, 0x1b, 0x0a, 0x13,
2552 0x82, 0x11, 0xc2, 0x10, 0x62, 0x10, 0x62, 0x10, 0x02, 0x10, 0x62, 0x10,
2553 0x62, 0x10, 0x02, 0x10, 0xfe, 0x1f};
2554 } -maskdata $filemask
2556 image create bitmap file_removed -background white -foreground red -data {
2557 #define file_removed_width 14
2558 #define file_removed_height 15
2559 static unsigned char file_removed_bits[] = {
2560 0xfe, 0x01, 0x02, 0x03, 0x02, 0x05, 0x02, 0x09, 0x02, 0x1f, 0x02, 0x10,
2561 0x1a, 0x16, 0x32, 0x13, 0xe2, 0x11, 0xc2, 0x10, 0xe2, 0x11, 0x32, 0x13,
2562 0x1a, 0x16, 0x02, 0x10, 0xfe, 0x1f};
2563 } -maskdata $filemask
2565 image create bitmap file_merge -background white -foreground blue -data {
2566 #define file_merge_width 14
2567 #define file_merge_height 15
2568 static unsigned char file_merge_bits[] = {
2569 0xfe, 0x01, 0x02, 0x03, 0x62, 0x05, 0x62, 0x09, 0x62, 0x1f, 0x62, 0x10,
2570 0xfa, 0x11, 0xf2, 0x10, 0x62, 0x10, 0x02, 0x10, 0xfa, 0x17, 0x02, 0x10,
2571 0xfa, 0x17, 0x02, 0x10, 0xfe, 0x1f};
2572 } -maskdata $filemask
2574 set ui_index .vpane.files.index.list
2575 set ui_workdir .vpane.files.workdir.list
2577 set all_icons(_$ui_index) file_plain
2578 set all_icons(A$ui_index) file_fulltick
2579 set all_icons(M$ui_index) file_fulltick
2580 set all_icons(D$ui_index) file_removed
2581 set all_icons(U$ui_index) file_merge
2583 set all_icons(_$ui_workdir) file_plain
2584 set all_icons(M$ui_workdir) file_mod
2585 set all_icons(D$ui_workdir) file_question
2586 set all_icons(U$ui_workdir) file_merge
2587 set all_icons(O$ui_workdir) file_plain
2589 set max_status_desc 0
2593 {_M "Modified, not staged"}
2594 {M_ "Staged for commit"}
2595 {MM "Portions staged for commit"}
2596 {MD "Staged for commit, missing"}
2598 {_O "Untracked, not staged"}
2599 {A_ "Staged for commit"}
2600 {AM "Portions staged for commit"}
2601 {AD "Staged for commit, missing"}
2604 {D_ "Staged for removal"}
2605 {DO "Staged for removal, still present"}
2607 {U_ "Requires merge resolution"}
2608 {UU "Requires merge resolution"}
2609 {UM "Requires merge resolution"}
2610 {UD "Requires merge resolution"}
2612 if {$max_status_desc < [string length [lindex $i 1]]} {
2613 set max_status_desc [string length [lindex $i 1]]
2615 set all_descs([lindex $i 0]) [lindex $i 1]
2619 ######################################################################
2624 global tcl_platform tk_library
2625 if {[tk windowingsystem] eq {aqua}} {
2631 proc is_Windows {} {
2633 if {$tcl_platform(platform) eq {windows}} {
2639 proc bind_button3 {w cmd} {
2640 bind $w <Any-Button-3> $cmd
2642 bind $w <Control-Button-1> $cmd
2646 proc incr_font_size {font {amt 1}} {
2647 set sz [font configure $font -size]
2649 font configure $font -size $sz
2650 font configure ${font}bold -size $sz
2653 proc hook_failed_popup {hook msg} {
2658 label $w.m.l1 -text "$hook hook failed:" \
2663 -background white -borderwidth 1 \
2665 -width 80 -height 10 \
2667 -yscrollcommand [list $w.m.sby set]
2669 -text {You must correct the above errors before committing.} \
2673 scrollbar $w.m.sby -command [list $w.m.t yview]
2674 pack $w.m.l1 -side top -fill x
2675 pack $w.m.l2 -side bottom -fill x
2676 pack $w.m.sby -side right -fill y
2677 pack $w.m.t -side left -fill both -expand 1
2678 pack $w.m -side top -fill both -expand 1 -padx 5 -pady 10
2680 $w.m.t insert 1.0 $msg
2681 $w.m.t conf -state disabled
2683 button $w.ok -text OK \
2686 -command "destroy $w"
2687 pack $w.ok -side bottom -anchor e -pady 10 -padx 10
2689 bind $w <Visibility> "grab $w; focus $w"
2690 bind $w <Key-Return> "destroy $w"
2691 wm title $w "[appname] ([reponame]): error"
2695 set next_console_id 0
2697 proc new_console {short_title long_title} {
2698 global next_console_id console_data
2699 set w .console[incr next_console_id]
2700 set console_data($w) [list $short_title $long_title]
2701 return [console_init $w]
2704 proc console_init {w} {
2705 global console_cr console_data M1B
2707 set console_cr($w) 1.0
2710 label $w.m.l1 -text "[lindex $console_data($w) 1]:" \
2715 -background white -borderwidth 1 \
2717 -width 80 -height 10 \
2720 -yscrollcommand [list $w.m.sby set]
2721 label $w.m.s -text {Working... please wait...} \
2725 scrollbar $w.m.sby -command [list $w.m.t yview]
2726 pack $w.m.l1 -side top -fill x
2727 pack $w.m.s -side bottom -fill x
2728 pack $w.m.sby -side right -fill y
2729 pack $w.m.t -side left -fill both -expand 1
2730 pack $w.m -side top -fill both -expand 1 -padx 5 -pady 10
2732 menu $w.ctxm -tearoff 0
2733 $w.ctxm add command -label "Copy" \
2735 -command "tk_textCopy $w.m.t"
2736 $w.ctxm add command -label "Select All" \
2738 -command "focus $w.m.t;$w.m.t tag add sel 0.0 end"
2739 $w.ctxm add command -label "Copy All" \
2742 $w.m.t tag add sel 0.0 end
2744 $w.m.t tag remove sel 0.0 end
2747 button $w.ok -text {Close} \
2750 -command "destroy $w"
2751 pack $w.ok -side bottom -anchor e -pady 10 -padx 10
2753 bind_button3 $w.m.t "tk_popup $w.ctxm %X %Y"
2754 bind $w.m.t <$M1B-Key-a> "$w.m.t tag add sel 0.0 end;break"
2755 bind $w.m.t <$M1B-Key-A> "$w.m.t tag add sel 0.0 end;break"
2756 bind $w <Visibility> "focus $w"
2757 wm title $w "[appname] ([reponame]): [lindex $console_data($w) 0]"
2761 proc console_exec {w cmd {after {}}} {
2762 # -- Windows tosses the enviroment when we exec our child.
2763 # But most users need that so we have to relogin. :-(
2766 set cmd [list sh --login -c "cd \"[pwd]\" && [join $cmd { }]"]
2769 # -- Tcl won't let us redirect both stdout and stderr to
2770 # the same pipe. So pass it through cat...
2772 set cmd [concat | $cmd |& cat]
2774 set fd_f [open $cmd r]
2775 fconfigure $fd_f -blocking 0 -translation binary
2776 fileevent $fd_f readable [list console_read $w $fd_f $after]
2779 proc console_read {w fd after} {
2780 global console_cr console_data
2784 if {![winfo exists $w]} {console_init $w}
2785 $w.m.t conf -state normal
2787 set n [string length $buf]
2789 set cr [string first "\r" $buf $c]
2790 set lf [string first "\n" $buf $c]
2791 if {$cr < 0} {set cr [expr {$n + 1}]}
2792 if {$lf < 0} {set lf [expr {$n + 1}]}
2795 $w.m.t insert end [string range $buf $c $lf]
2796 set console_cr($w) [$w.m.t index {end -1c}]
2800 $w.m.t delete $console_cr($w) end
2801 $w.m.t insert end "\n"
2802 $w.m.t insert end [string range $buf $c $cr]
2807 $w.m.t conf -state disabled
2811 fconfigure $fd -blocking 1
2813 if {[catch {close $fd}]} {
2814 if {![winfo exists $w]} {console_init $w}
2815 $w.m.s conf -background red -text {Error: Command Failed}
2816 $w.ok conf -state normal
2818 } elseif {[winfo exists $w]} {
2819 $w.m.s conf -background green -text {Success}
2820 $w.ok conf -state normal
2823 array unset console_cr $w
2824 array unset console_data $w
2826 uplevel #0 $after $ok
2830 fconfigure $fd -blocking 0
2833 ######################################################################
2837 set starting_gitk_msg {Starting gitk... please wait...}
2839 proc do_gitk {revs} {
2840 global ui_status_value starting_gitk_msg
2848 set cmd "sh -c \"exec $cmd\""
2852 if {[catch {eval exec $cmd} err]} {
2853 error_popup "Failed to start gitk:\n\n$err"
2855 set ui_status_value $starting_gitk_msg
2857 if {$ui_status_value eq $starting_gitk_msg} {
2858 set ui_status_value {Ready.}
2865 set fd [open "| git count-objects -v" r]
2866 while {[gets $fd line] > 0} {
2867 if {[regexp {^([^:]+): (\d+)$} $line _ name value]} {
2868 set stats($name) $value
2874 foreach p [glob -directory [gitdir objects pack] \
2877 incr packed_sz [file size $p]
2879 if {$packed_sz > 0} {
2880 set stats(size-pack) [expr {$packed_sz / 1024}]
2885 wm geometry $w "+[winfo rootx .]+[winfo rooty .]"
2887 label $w.header -text {Database Statistics} \
2889 pack $w.header -side top -fill x
2891 frame $w.buttons -border 1
2892 button $w.buttons.close -text Close \
2894 -command [list destroy $w]
2895 button $w.buttons.gc -text {Compress Database} \
2897 -command "destroy $w;do_gc"
2898 pack $w.buttons.close -side right
2899 pack $w.buttons.gc -side left
2900 pack $w.buttons -side bottom -fill x -pady 10 -padx 10
2902 frame $w.stat -borderwidth 1 -relief solid
2904 {count {Number of loose objects}}
2905 {size {Disk space used by loose objects} { KiB}}
2906 {in-pack {Number of packed objects}}
2907 {packs {Number of packs}}
2908 {size-pack {Disk space used by packed objects} { KiB}}
2909 {prune-packable {Packed objects waiting for pruning}}
2910 {garbage {Garbage files}}
2912 set name [lindex $s 0]
2913 set label [lindex $s 1]
2914 if {[catch {set value $stats($name)}]} continue
2915 if {[llength $s] > 2} {
2916 set value "$value[lindex $s 2]"
2919 label $w.stat.l_$name -text "$label:" -anchor w -font font_ui
2920 label $w.stat.v_$name -text $value -anchor w -font font_ui
2921 grid $w.stat.l_$name $w.stat.v_$name -sticky we -padx {0 5}
2923 pack $w.stat -pady 10 -padx 10
2925 bind $w <Visibility> "grab $w; focus $w"
2926 bind $w <Key-Escape> [list destroy $w]
2927 bind $w <Key-Return> [list destroy $w]
2928 wm title $w "[appname] ([reponame]): Database Statistics"
2933 set w [new_console {gc} {Compressing the object database}]
2934 console_exec $w {git gc}
2937 proc do_fsck_objects {} {
2938 set w [new_console {fsck-objects} \
2939 {Verifying the object database with fsck-objects}]
2940 set cmd [list git fsck-objects]
2943 lappend cmd --strict
2944 console_exec $w $cmd
2950 global ui_comm is_quitting repo_config commit_type
2952 if {$is_quitting} return
2955 # -- Stash our current commit buffer.
2957 set save [gitdir GITGUI_MSG]
2958 set msg [string trim [$ui_comm get 0.0 end]]
2959 regsub -all -line {[ \r\t]+$} $msg {} msg
2960 if {(![string match amend* $commit_type]
2961 || [$ui_comm edit modified])
2964 set fd [open $save w]
2965 puts -nonewline $fd $msg
2969 catch {file delete $save}
2972 # -- Stash our current window geometry into this repository.
2974 set cfg_geometry [list]
2975 lappend cfg_geometry [wm geometry .]
2976 lappend cfg_geometry [lindex [.vpane sash coord 0] 1]
2977 lappend cfg_geometry [lindex [.vpane.files sash coord 0] 0]
2978 if {[catch {set rc_geometry $repo_config(gui.geometry)}]} {
2981 if {$cfg_geometry ne $rc_geometry} {
2982 catch {exec git repo-config gui.geometry $cfg_geometry}
2989 rescan {set ui_status_value {Ready.}}
2992 proc unstage_helper {txt paths} {
2993 global file_states current_diff_path
2995 if {![lock_index begin-update]} return
2999 foreach path $paths {
3000 switch -glob -- [lindex $file_states($path) 0] {
3004 lappend pathList $path
3005 if {$path eq $current_diff_path} {
3006 set after {reshow_diff;}
3011 if {$pathList eq {}} {
3017 [concat $after {set ui_status_value {Ready.}}]
3021 proc do_unstage_selection {} {
3022 global current_diff_path selected_paths
3024 if {[array size selected_paths] > 0} {
3026 {Unstaging selected files from commit} \
3027 [array names selected_paths]
3028 } elseif {$current_diff_path ne {}} {
3030 "Unstaging [short_path $current_diff_path] from commit" \
3031 [list $current_diff_path]
3035 proc add_helper {txt paths} {
3036 global file_states current_diff_path
3038 if {![lock_index begin-update]} return
3042 foreach path $paths {
3043 switch -glob -- [lindex $file_states($path) 0] {
3048 lappend pathList $path
3049 if {$path eq $current_diff_path} {
3050 set after {reshow_diff;}
3055 if {$pathList eq {}} {
3061 [concat $after {set ui_status_value {Ready to commit.}}]
3065 proc do_add_selection {} {
3066 global current_diff_path selected_paths
3068 if {[array size selected_paths] > 0} {
3070 {Adding selected files} \
3071 [array names selected_paths]
3072 } elseif {$current_diff_path ne {}} {
3074 "Adding [short_path $current_diff_path]" \
3075 [list $current_diff_path]
3079 proc do_add_all {} {
3083 foreach path [array names file_states] {
3084 switch -glob -- [lindex $file_states($path) 0] {
3087 ?D {lappend paths $path}
3090 add_helper {Adding all changed files} $paths
3093 proc revert_helper {txt paths} {
3094 global file_states current_diff_path
3096 if {![lock_index begin-update]} return
3100 foreach path $paths {
3101 switch -glob -- [lindex $file_states($path) 0] {
3105 lappend pathList $path
3106 if {$path eq $current_diff_path} {
3107 set after {reshow_diff;}
3113 set n [llength $pathList]
3117 } elseif {$n == 1} {
3118 set s "[short_path [lindex $pathList]]"
3120 set s "these $n files"
3123 set reply [tk_dialog \
3125 "[appname] ([reponame])" \
3126 "Revert changes in $s?
3128 Any unadded changes will be permanently lost by the revert." \
3138 [concat $after {set ui_status_value {Ready.}}]
3144 proc do_revert_selection {} {
3145 global current_diff_path selected_paths
3147 if {[array size selected_paths] > 0} {
3149 {Reverting selected files} \
3150 [array names selected_paths]
3151 } elseif {$current_diff_path ne {}} {
3153 "Reverting [short_path $current_diff_path]" \
3154 [list $current_diff_path]
3158 proc do_signoff {} {
3161 set me [committer_ident]
3162 if {$me eq {}} return
3164 set sob "Signed-off-by: $me"
3165 set last [$ui_comm get {end -1c linestart} {end -1c}]
3166 if {$last ne $sob} {
3167 $ui_comm edit separator
3169 && ![regexp {^[A-Z][A-Za-z]*-[A-Za-z-]+: *} $last]} {
3170 $ui_comm insert end "\n"
3172 $ui_comm insert end "\n$sob"
3173 $ui_comm edit separator
3178 proc do_select_commit_type {} {
3179 global commit_type selected_commit_type
3181 if {$selected_commit_type eq {new}
3182 && [string match amend* $commit_type]} {
3184 } elseif {$selected_commit_type eq {amend}
3185 && ![string match amend* $commit_type]} {
3188 # The amend request was rejected...
3190 if {![string match amend* $commit_type]} {
3191 set selected_commit_type new
3201 global appvers copyright
3202 global tcl_patchLevel tk_patchLevel
3206 wm geometry $w "+[winfo rootx .]+[winfo rooty .]"
3208 label $w.header -text "About [appname]" \
3210 pack $w.header -side top -fill x
3213 button $w.buttons.close -text {Close} \
3215 -command [list destroy $w]
3216 pack $w.buttons.close -side right
3217 pack $w.buttons -side bottom -fill x -pady 10 -padx 10
3220 -text "[appname] - a commit creation tool for Git.
3228 pack $w.desc -side top -fill x -padx 5 -pady 5
3231 append v "[appname] version $appvers\n"
3232 append v "[exec git version]\n"
3234 if {$tcl_patchLevel eq $tk_patchLevel} {
3235 append v "Tcl/Tk version $tcl_patchLevel"
3237 append v "Tcl version $tcl_patchLevel"
3238 append v ", Tk version $tk_patchLevel"
3249 pack $w.vers -side top -fill x -padx 5 -pady 5
3251 menu $w.ctxm -tearoff 0
3252 $w.ctxm add command \
3257 clipboard append -format STRING -type STRING -- \[$w.vers cget -text\]
3260 bind $w <Visibility> "grab $w; focus $w"
3261 bind $w <Key-Escape> "destroy $w"
3262 bind_button3 $w.vers "tk_popup $w.ctxm %X %Y; grab $w; focus $w"
3263 wm title $w "About [appname]"
3267 proc do_options {} {
3268 global repo_config global_config font_descs
3269 global repo_config_new global_config_new
3271 array unset repo_config_new
3272 array unset global_config_new
3273 foreach name [array names repo_config] {
3274 set repo_config_new($name) $repo_config($name)
3277 foreach name [array names repo_config] {
3279 gui.diffcontext {continue}
3281 set repo_config_new($name) $repo_config($name)
3283 foreach name [array names global_config] {
3284 set global_config_new($name) $global_config($name)
3287 set w .options_editor
3289 wm geometry $w "+[winfo rootx .]+[winfo rooty .]"
3291 label $w.header -text "[appname] Options" \
3293 pack $w.header -side top -fill x
3296 button $w.buttons.restore -text {Restore Defaults} \
3298 -command do_restore_defaults
3299 pack $w.buttons.restore -side left
3300 button $w.buttons.save -text Save \
3302 -command [list do_save_config $w]
3303 pack $w.buttons.save -side right
3304 button $w.buttons.cancel -text {Cancel} \
3306 -command [list destroy $w]
3307 pack $w.buttons.cancel -side right -padx 5
3308 pack $w.buttons -side bottom -fill x -pady 10 -padx 10
3310 labelframe $w.repo -text "[reponame] Repository" \
3312 labelframe $w.global -text {Global (All Repositories)} \
3314 pack $w.repo -side left -fill both -expand 1 -pady 5 -padx 5
3315 pack $w.global -side right -fill both -expand 1 -pady 5 -padx 5
3318 {b pullsummary {Show Pull Summary}}
3319 {b trustmtime {Trust File Modification Timestamps}}
3320 {i diffcontext {Number of Diff Context Lines}}
3321 {t newbranchtemplate {New Branch Name Template}}
3323 set type [lindex $option 0]
3324 set name [lindex $option 1]
3325 set text [lindex $option 2]
3326 foreach f {repo global} {
3329 checkbutton $w.$f.$name -text $text \
3330 -variable ${f}_config_new(gui.$name) \
3334 pack $w.$f.$name -side top -anchor w
3338 label $w.$f.$name.l -text "$text:" -font font_ui
3339 pack $w.$f.$name.l -side left -anchor w -fill x
3340 spinbox $w.$f.$name.v \
3341 -textvariable ${f}_config_new(gui.$name) \
3342 -from 1 -to 99 -increment 1 \
3345 bind $w.$f.$name.v <FocusIn> {%W selection range 0 end}
3346 pack $w.$f.$name.v -side right -anchor e -padx 5
3347 pack $w.$f.$name -side top -anchor w -fill x
3351 label $w.$f.$name.l -text "$text:" -font font_ui
3352 entry $w.$f.$name.v \
3356 -textvariable ${f}_config_new(gui.$name) \
3358 pack $w.$f.$name.l -side left -anchor w
3359 pack $w.$f.$name.v -side left -anchor w \
3362 pack $w.$f.$name -side top -anchor w -fill x
3368 set all_fonts [lsort [font families]]
3369 foreach option $font_descs {
3370 set name [lindex $option 0]
3371 set font [lindex $option 1]
3372 set text [lindex $option 2]
3374 set global_config_new(gui.$font^^family) \
3375 [font configure $font -family]
3376 set global_config_new(gui.$font^^size) \
3377 [font configure $font -size]
3379 frame $w.global.$name
3380 label $w.global.$name.l -text "$text:" -font font_ui
3381 pack $w.global.$name.l -side left -anchor w -fill x
3382 eval tk_optionMenu $w.global.$name.family \
3383 global_config_new(gui.$font^^family) \
3385 spinbox $w.global.$name.size \
3386 -textvariable global_config_new(gui.$font^^size) \
3387 -from 2 -to 80 -increment 1 \
3390 bind $w.global.$name.size <FocusIn> {%W selection range 0 end}
3391 pack $w.global.$name.size -side right -anchor e
3392 pack $w.global.$name.family -side right -anchor e
3393 pack $w.global.$name -side top -anchor w -fill x
3396 bind $w <Visibility> "grab $w; focus $w"
3397 bind $w <Key-Escape> "destroy $w"
3398 wm title $w "[appname] ([reponame]): Options"
3402 proc do_restore_defaults {} {
3403 global font_descs default_config repo_config
3404 global repo_config_new global_config_new
3406 foreach name [array names default_config] {
3407 set repo_config_new($name) $default_config($name)
3408 set global_config_new($name) $default_config($name)
3411 foreach option $font_descs {
3412 set name [lindex $option 0]
3413 set repo_config(gui.$name) $default_config(gui.$name)
3417 foreach option $font_descs {
3418 set name [lindex $option 0]
3419 set font [lindex $option 1]
3420 set global_config_new(gui.$font^^family) \
3421 [font configure $font -family]
3422 set global_config_new(gui.$font^^size) \
3423 [font configure $font -size]
3427 proc do_save_config {w} {
3428 if {[catch {save_config} err]} {
3429 error_popup "Failed to completely save options:\n\n$err"
3435 proc do_windows_shortcut {} {
3439 set desktop [exec cygpath \
3447 set fn [tk_getSaveFile \
3449 -title "[appname] ([reponame]): Create Desktop Icon" \
3450 -initialdir $desktop \
3451 -initialfile "Git [reponame].bat"]
3455 set sh [exec cygpath \
3459 set me [exec cygpath \
3463 set gd [exec cygpath \
3467 set gw [exec cygpath \
3470 [file dirname [gitdir]]]
3471 regsub -all ' $me "'\\''" me
3472 regsub -all ' $gd "'\\''" gd
3473 puts $fd "@ECHO Entering $gw"
3474 puts $fd "@ECHO Starting git-gui... please wait..."
3475 puts -nonewline $fd "@\"$sh\" --login -c \""
3476 puts -nonewline $fd "GIT_DIR='$gd'"
3477 puts -nonewline $fd " '$me'"
3481 error_popup "Cannot write script:\n\n$err"
3486 proc do_macosx_app {} {
3489 set fn [tk_getSaveFile \
3491 -title "[appname] ([reponame]): Create Desktop Icon" \
3492 -initialdir [file join $env(HOME) Desktop] \
3493 -initialfile "Git [reponame].app"]
3496 set Contents [file join $fn Contents]
3497 set MacOS [file join $Contents MacOS]
3498 set exe [file join $MacOS git-gui]
3502 set fd [open [file join $Contents Info.plist] w]
3503 puts $fd {<?xml version="1.0" encoding="UTF-8"?>
3504 <!DOCTYPE plist PUBLIC "-//Apple Computer//DTD PLIST 1.0//EN" "http://www.apple.com/DTDs/PropertyList-1.0.dtd">
3505 <plist version="1.0">
3507 <key>CFBundleDevelopmentRegion</key>
3508 <string>English</string>
3509 <key>CFBundleExecutable</key>
3510 <string>git-gui</string>
3511 <key>CFBundleIdentifier</key>
3512 <string>org.spearce.git-gui</string>
3513 <key>CFBundleInfoDictionaryVersion</key>
3514 <string>6.0</string>
3515 <key>CFBundlePackageType</key>
3516 <string>APPL</string>
3517 <key>CFBundleSignature</key>
3518 <string>????</string>
3519 <key>CFBundleVersion</key>
3520 <string>1.0</string>
3521 <key>NSPrincipalClass</key>
3522 <string>NSApplication</string>
3527 set fd [open $exe w]
3528 set gd [file normalize [gitdir]]
3529 set ep [file normalize [exec git --exec-path]]
3530 regsub -all ' $gd "'\\''" gd
3531 regsub -all ' $ep "'\\''" ep
3532 puts $fd "#!/bin/sh"
3533 foreach name [array names env] {
3534 if {[string match GIT_* $name]} {
3535 regsub -all ' $env($name) "'\\''" v
3536 puts $fd "export $name='$v'"
3539 puts $fd "export PATH='$ep':\$PATH"
3540 puts $fd "export GIT_DIR='$gd'"
3541 puts $fd "exec [file normalize $argv0]"
3544 file attributes $exe -permissions u+x,g+x,o+x
3546 error_popup "Cannot write icon:\n\n$err"
3551 proc toggle_or_diff {w x y} {
3552 global file_states file_lists current_diff_path ui_index ui_workdir
3553 global last_clicked selected_paths
3555 set pos [split [$w index @$x,$y] .]
3556 set lno [lindex $pos 0]
3557 set col [lindex $pos 1]
3558 set path [lindex $file_lists($w) [expr {$lno - 1}]]
3564 set last_clicked [list $w $lno]
3565 array unset selected_paths
3566 $ui_index tag remove in_sel 0.0 end
3567 $ui_workdir tag remove in_sel 0.0 end
3570 if {$current_diff_path eq $path} {
3571 set after {reshow_diff;}
3575 if {$w eq $ui_index} {
3577 "Unstaging [short_path $path] from commit" \
3579 [concat $after {set ui_status_value {Ready.}}]
3580 } elseif {$w eq $ui_workdir} {
3582 "Adding [short_path $path]" \
3584 [concat $after {set ui_status_value {Ready.}}]
3587 show_diff $path $w $lno
3591 proc add_one_to_selection {w x y} {
3592 global file_lists last_clicked selected_paths
3594 set lno [lindex [split [$w index @$x,$y] .] 0]
3595 set path [lindex $file_lists($w) [expr {$lno - 1}]]
3601 if {$last_clicked ne {}
3602 && [lindex $last_clicked 0] ne $w} {
3603 array unset selected_paths
3604 [lindex $last_clicked 0] tag remove in_sel 0.0 end
3607 set last_clicked [list $w $lno]
3608 if {[catch {set in_sel $selected_paths($path)}]} {
3612 unset selected_paths($path)
3613 $w tag remove in_sel $lno.0 [expr {$lno + 1}].0
3615 set selected_paths($path) 1
3616 $w tag add in_sel $lno.0 [expr {$lno + 1}].0
3620 proc add_range_to_selection {w x y} {
3621 global file_lists last_clicked selected_paths
3623 if {[lindex $last_clicked 0] ne $w} {
3624 toggle_or_diff $w $x $y
3628 set lno [lindex [split [$w index @$x,$y] .] 0]
3629 set lc [lindex $last_clicked 1]
3638 foreach path [lrange $file_lists($w) \
3639 [expr {$begin - 1}] \
3640 [expr {$end - 1}]] {
3641 set selected_paths($path) 1
3643 $w tag add in_sel $begin.0 [expr {$end + 1}].0
3646 ######################################################################
3650 set cursor_ptr arrow
3651 font create font_diff -family Courier -size 10
3655 eval font configure font_ui [font actual [.dummy cget -font]]
3659 font create font_uibold
3660 font create font_diffbold
3665 } elseif {[is_MacOSX]} {
3673 proc apply_config {} {
3674 global repo_config font_descs
3676 foreach option $font_descs {
3677 set name [lindex $option 0]
3678 set font [lindex $option 1]
3680 foreach {cn cv} $repo_config(gui.$name) {
3681 font configure $font $cn $cv
3684 error_popup "Invalid font specified in gui.$name:\n\n$err"
3686 foreach {cn cv} [font configure $font] {
3687 font configure ${font}bold $cn $cv
3689 font configure ${font}bold -weight bold
3693 set default_config(gui.trustmtime) false
3694 set default_config(gui.pullsummary) true
3695 set default_config(gui.diffcontext) 5
3696 set default_config(gui.newbranchtemplate) {}
3697 set default_config(gui.fontui) [font configure font_ui]
3698 set default_config(gui.fontdiff) [font configure font_diff]
3700 {fontui font_ui {Main Font}}
3701 {fontdiff font_diff {Diff/Console Font}}
3706 ######################################################################
3712 menu .mbar -tearoff 0
3713 .mbar add cascade -label Repository -menu .mbar.repository
3714 .mbar add cascade -label Edit -menu .mbar.edit
3715 if {!$single_commit} {
3716 .mbar add cascade -label Branch -menu .mbar.branch
3718 .mbar add cascade -label Commit -menu .mbar.commit
3719 if {!$single_commit} {
3720 .mbar add cascade -label Fetch -menu .mbar.fetch
3721 .mbar add cascade -label Push -menu .mbar.push
3723 . configure -menu .mbar
3725 # -- Repository Menu
3727 menu .mbar.repository
3728 .mbar.repository add command \
3729 -label {Visualize Current Branch} \
3730 -command {do_gitk {}} \
3732 .mbar.repository add command \
3733 -label {Visualize All Branches} \
3734 -command {do_gitk {--all}} \
3736 .mbar.repository add separator
3738 if {!$single_commit} {
3739 .mbar.repository add command -label {Database Statistics} \
3743 .mbar.repository add command -label {Compress Database} \
3747 .mbar.repository add command -label {Verify Database} \
3748 -command do_fsck_objects \
3751 .mbar.repository add separator
3754 .mbar.repository add command \
3755 -label {Create Desktop Icon} \
3756 -command do_windows_shortcut \
3758 } elseif {[is_MacOSX]} {
3759 .mbar.repository add command \
3760 -label {Create Desktop Icon} \
3761 -command do_macosx_app \
3766 .mbar.repository add command -label Quit \
3768 -accelerator $M1T-Q \
3774 .mbar.edit add command -label Undo \
3775 -command {catch {[focus] edit undo}} \
3776 -accelerator $M1T-Z \
3778 .mbar.edit add command -label Redo \
3779 -command {catch {[focus] edit redo}} \
3780 -accelerator $M1T-Y \
3782 .mbar.edit add separator
3783 .mbar.edit add command -label Cut \
3784 -command {catch {tk_textCut [focus]}} \
3785 -accelerator $M1T-X \
3787 .mbar.edit add command -label Copy \
3788 -command {catch {tk_textCopy [focus]}} \
3789 -accelerator $M1T-C \
3791 .mbar.edit add command -label Paste \
3792 -command {catch {tk_textPaste [focus]; [focus] see insert}} \
3793 -accelerator $M1T-V \
3795 .mbar.edit add command -label Delete \
3796 -command {catch {[focus] delete sel.first sel.last}} \
3799 .mbar.edit add separator
3800 .mbar.edit add command -label {Select All} \
3801 -command {catch {[focus] tag add sel 0.0 end}} \
3802 -accelerator $M1T-A \
3807 if {!$single_commit} {
3810 .mbar.branch add command -label {Create...} \
3811 -command do_create_branch \
3812 -accelerator $M1T-N \
3814 lappend disable_on_lock [list .mbar.branch entryconf \
3815 [.mbar.branch index last] -state]
3817 .mbar.branch add command -label {Delete...} \
3818 -command do_delete_branch \
3820 lappend disable_on_lock [list .mbar.branch entryconf \
3821 [.mbar.branch index last] -state]
3828 .mbar.commit add radiobutton \
3829 -label {New Commit} \
3830 -command do_select_commit_type \
3831 -variable selected_commit_type \
3834 lappend disable_on_lock \
3835 [list .mbar.commit entryconf [.mbar.commit index last] -state]
3837 .mbar.commit add radiobutton \
3838 -label {Amend Last Commit} \
3839 -command do_select_commit_type \
3840 -variable selected_commit_type \
3843 lappend disable_on_lock \
3844 [list .mbar.commit entryconf [.mbar.commit index last] -state]
3846 .mbar.commit add separator
3848 .mbar.commit add command -label Rescan \
3849 -command do_rescan \
3852 lappend disable_on_lock \
3853 [list .mbar.commit entryconf [.mbar.commit index last] -state]
3855 .mbar.commit add command -label {Add To Commit} \
3856 -command do_add_selection \
3858 lappend disable_on_lock \
3859 [list .mbar.commit entryconf [.mbar.commit index last] -state]
3861 .mbar.commit add command -label {Add All To Commit} \
3862 -command do_add_all \
3863 -accelerator $M1T-I \
3865 lappend disable_on_lock \
3866 [list .mbar.commit entryconf [.mbar.commit index last] -state]
3868 .mbar.commit add command -label {Unstage From Commit} \
3869 -command do_unstage_selection \
3871 lappend disable_on_lock \
3872 [list .mbar.commit entryconf [.mbar.commit index last] -state]
3874 .mbar.commit add command -label {Revert Changes} \
3875 -command do_revert_selection \
3877 lappend disable_on_lock \
3878 [list .mbar.commit entryconf [.mbar.commit index last] -state]
3880 .mbar.commit add separator
3882 .mbar.commit add command -label {Sign Off} \
3883 -command do_signoff \
3884 -accelerator $M1T-S \
3887 .mbar.commit add command -label Commit \
3888 -command do_commit \
3889 -accelerator $M1T-Return \
3891 lappend disable_on_lock \
3892 [list .mbar.commit entryconf [.mbar.commit index last] -state]
3894 # -- Transport menus
3896 if {!$single_commit} {
3902 # -- Apple Menu (Mac OS X only)
3904 .mbar add cascade -label Apple -menu .mbar.apple
3907 .mbar.apple add command -label "About [appname]" \
3910 .mbar.apple add command -label "[appname] Options..." \
3911 -command do_options \
3916 .mbar.edit add separator
3917 .mbar.edit add command -label {Options...} \
3918 -command do_options \
3923 if {[file exists /usr/local/miga/lib/gui-miga]
3924 && [file exists .pvcsrc]} {
3926 global ui_status_value
3927 if {![lock_index update]} return
3928 set cmd [list sh --login -c "/usr/local/miga/lib/gui-miga \"[pwd]\""]
3929 set miga_fd [open "|$cmd" r]
3930 fconfigure $miga_fd -blocking 0
3931 fileevent $miga_fd readable [list miga_done $miga_fd]
3932 set ui_status_value {Running miga...}
3934 proc miga_done {fd} {
3939 rescan [list set ui_status_value {Ready.}]
3942 .mbar add cascade -label Tools -menu .mbar.tools
3944 .mbar.tools add command -label "Migrate" \
3947 lappend disable_on_lock \
3948 [list .mbar.tools entryconf [.mbar.tools index last] -state]
3953 .mbar add cascade -label Help -menu .mbar.help
3956 .mbar.help add command -label "About [appname]" \
3968 -text {Current Branch:} \
3973 -textvariable current_branch \
3977 pack .branch.l1 -side left
3978 pack .branch.cb -side left -fill x
3979 pack .branch -side top -fill x
3981 # -- Main Window Layout
3983 panedwindow .vpane -orient vertical
3984 panedwindow .vpane.files -orient horizontal
3985 .vpane add .vpane.files -sticky nsew -height 100 -width 200
3986 pack .vpane -anchor n -side top -fill both -expand 1
3988 # -- Index File List
3990 frame .vpane.files.index -height 100 -width 200
3991 label .vpane.files.index.title -text {Changes To Be Committed} \
3994 text $ui_index -background white -borderwidth 0 \
3995 -width 20 -height 10 \
3998 -cursor $cursor_ptr \
3999 -xscrollcommand {.vpane.files.index.sx set} \
4000 -yscrollcommand {.vpane.files.index.sy set} \
4002 scrollbar .vpane.files.index.sx -orient h -command [list $ui_index xview]
4003 scrollbar .vpane.files.index.sy -orient v -command [list $ui_index yview]
4004 pack .vpane.files.index.title -side top -fill x
4005 pack .vpane.files.index.sx -side bottom -fill x
4006 pack .vpane.files.index.sy -side right -fill y
4007 pack $ui_index -side left -fill both -expand 1
4008 .vpane.files add .vpane.files.index -sticky nsew
4010 # -- Working Directory File List
4012 frame .vpane.files.workdir -height 100 -width 200
4013 label .vpane.files.workdir.title -text {Changed But Not Updated} \
4016 text $ui_workdir -background white -borderwidth 0 \
4017 -width 20 -height 10 \
4020 -cursor $cursor_ptr \
4021 -xscrollcommand {.vpane.files.workdir.sx set} \
4022 -yscrollcommand {.vpane.files.workdir.sy set} \
4024 scrollbar .vpane.files.workdir.sx -orient h -command [list $ui_workdir xview]
4025 scrollbar .vpane.files.workdir.sy -orient v -command [list $ui_workdir yview]
4026 pack .vpane.files.workdir.title -side top -fill x
4027 pack .vpane.files.workdir.sx -side bottom -fill x
4028 pack .vpane.files.workdir.sy -side right -fill y
4029 pack $ui_workdir -side left -fill both -expand 1
4030 .vpane.files add .vpane.files.workdir -sticky nsew
4032 foreach i [list $ui_index $ui_workdir] {
4033 $i tag conf in_diff -font font_uibold
4034 $i tag conf in_sel \
4035 -background [$i cget -foreground] \
4036 -foreground [$i cget -background]
4040 # -- Diff and Commit Area
4042 frame .vpane.lower -height 300 -width 400
4043 frame .vpane.lower.commarea
4044 frame .vpane.lower.diff -relief sunken -borderwidth 1
4045 pack .vpane.lower.commarea -side top -fill x
4046 pack .vpane.lower.diff -side bottom -fill both -expand 1
4047 .vpane add .vpane.lower -sticky nsew
4049 # -- Commit Area Buttons
4051 frame .vpane.lower.commarea.buttons
4052 label .vpane.lower.commarea.buttons.l -text {} \
4056 pack .vpane.lower.commarea.buttons.l -side top -fill x
4057 pack .vpane.lower.commarea.buttons -side left -fill y
4059 button .vpane.lower.commarea.buttons.rescan -text {Rescan} \
4060 -command do_rescan \
4062 pack .vpane.lower.commarea.buttons.rescan -side top -fill x
4063 lappend disable_on_lock \
4064 {.vpane.lower.commarea.buttons.rescan conf -state}
4066 button .vpane.lower.commarea.buttons.incall -text {Add All} \
4067 -command do_add_all \
4069 pack .vpane.lower.commarea.buttons.incall -side top -fill x
4070 lappend disable_on_lock \
4071 {.vpane.lower.commarea.buttons.incall conf -state}
4073 button .vpane.lower.commarea.buttons.signoff -text {Sign Off} \
4074 -command do_signoff \
4076 pack .vpane.lower.commarea.buttons.signoff -side top -fill x
4078 button .vpane.lower.commarea.buttons.commit -text {Commit} \
4079 -command do_commit \
4081 pack .vpane.lower.commarea.buttons.commit -side top -fill x
4082 lappend disable_on_lock \
4083 {.vpane.lower.commarea.buttons.commit conf -state}
4085 # -- Commit Message Buffer
4087 frame .vpane.lower.commarea.buffer
4088 frame .vpane.lower.commarea.buffer.header
4089 set ui_comm .vpane.lower.commarea.buffer.t
4090 set ui_coml .vpane.lower.commarea.buffer.header.l
4091 radiobutton .vpane.lower.commarea.buffer.header.new \
4092 -text {New Commit} \
4093 -command do_select_commit_type \
4094 -variable selected_commit_type \
4097 lappend disable_on_lock \
4098 [list .vpane.lower.commarea.buffer.header.new conf -state]
4099 radiobutton .vpane.lower.commarea.buffer.header.amend \
4100 -text {Amend Last Commit} \
4101 -command do_select_commit_type \
4102 -variable selected_commit_type \
4105 lappend disable_on_lock \
4106 [list .vpane.lower.commarea.buffer.header.amend conf -state]
4111 proc trace_commit_type {varname args} {
4112 global ui_coml commit_type
4113 switch -glob -- $commit_type {
4114 initial {set txt {Initial Commit Message:}}
4115 amend {set txt {Amended Commit Message:}}
4116 amend-initial {set txt {Amended Initial Commit Message:}}
4117 amend-merge {set txt {Amended Merge Commit Message:}}
4118 merge {set txt {Merge Commit Message:}}
4119 * {set txt {Commit Message:}}
4121 $ui_coml conf -text $txt
4123 trace add variable commit_type write trace_commit_type
4124 pack $ui_coml -side left -fill x
4125 pack .vpane.lower.commarea.buffer.header.amend -side right
4126 pack .vpane.lower.commarea.buffer.header.new -side right
4128 text $ui_comm -background white -borderwidth 1 \
4131 -autoseparators true \
4133 -width 75 -height 9 -wrap none \
4135 -yscrollcommand {.vpane.lower.commarea.buffer.sby set}
4136 scrollbar .vpane.lower.commarea.buffer.sby \
4137 -command [list $ui_comm yview]
4138 pack .vpane.lower.commarea.buffer.header -side top -fill x
4139 pack .vpane.lower.commarea.buffer.sby -side right -fill y
4140 pack $ui_comm -side left -fill y
4141 pack .vpane.lower.commarea.buffer -side left -fill y
4143 # -- Commit Message Buffer Context Menu
4145 set ctxm .vpane.lower.commarea.buffer.ctxm
4146 menu $ctxm -tearoff 0
4150 -command {tk_textCut $ui_comm}
4154 -command {tk_textCopy $ui_comm}
4158 -command {tk_textPaste $ui_comm}
4162 -command {$ui_comm delete sel.first sel.last}
4165 -label {Select All} \
4167 -command {focus $ui_comm;$ui_comm tag add sel 0.0 end}
4172 $ui_comm tag add sel 0.0 end
4173 tk_textCopy $ui_comm
4174 $ui_comm tag remove sel 0.0 end
4181 bind_button3 $ui_comm "tk_popup $ctxm %X %Y"
4185 set current_diff_path {}
4186 set current_diff_side {}
4187 set diff_actions [list]
4188 proc trace_current_diff_path {varname args} {
4189 global current_diff_path diff_actions file_states
4190 if {$current_diff_path eq {}} {
4196 set p $current_diff_path
4197 set s [mapdesc [lindex $file_states($p) 0] $p]
4199 set p [escape_path $p]
4203 .vpane.lower.diff.header.status configure -text $s
4204 .vpane.lower.diff.header.file configure -text $f
4205 .vpane.lower.diff.header.path configure -text $p
4206 foreach w $diff_actions {
4210 trace add variable current_diff_path write trace_current_diff_path
4212 frame .vpane.lower.diff.header -background orange
4213 label .vpane.lower.diff.header.status \
4214 -background orange \
4215 -width $max_status_desc \
4219 label .vpane.lower.diff.header.file \
4220 -background orange \
4224 label .vpane.lower.diff.header.path \
4225 -background orange \
4229 pack .vpane.lower.diff.header.status -side left
4230 pack .vpane.lower.diff.header.file -side left
4231 pack .vpane.lower.diff.header.path -fill x
4232 set ctxm .vpane.lower.diff.header.ctxm
4233 menu $ctxm -tearoff 0
4242 -- $current_diff_path
4244 lappend diff_actions [list $ctxm entryconf [$ctxm index last] -state]
4245 bind_button3 .vpane.lower.diff.header.path "tk_popup $ctxm %X %Y"
4249 frame .vpane.lower.diff.body
4250 set ui_diff .vpane.lower.diff.body.t
4251 text $ui_diff -background white -borderwidth 0 \
4252 -width 80 -height 15 -wrap none \
4254 -xscrollcommand {.vpane.lower.diff.body.sbx set} \
4255 -yscrollcommand {.vpane.lower.diff.body.sby set} \
4257 scrollbar .vpane.lower.diff.body.sbx -orient horizontal \
4258 -command [list $ui_diff xview]
4259 scrollbar .vpane.lower.diff.body.sby -orient vertical \
4260 -command [list $ui_diff yview]
4261 pack .vpane.lower.diff.body.sbx -side bottom -fill x
4262 pack .vpane.lower.diff.body.sby -side right -fill y
4263 pack $ui_diff -side left -fill both -expand 1
4264 pack .vpane.lower.diff.header -side top -fill x
4265 pack .vpane.lower.diff.body -side bottom -fill both -expand 1
4267 $ui_diff tag conf d_cr -elide true
4268 $ui_diff tag conf d_@ -foreground blue -font font_diffbold
4269 $ui_diff tag conf d_+ -foreground {#00a000}
4270 $ui_diff tag conf d_- -foreground red
4272 $ui_diff tag conf d_++ -foreground {#00a000}
4273 $ui_diff tag conf d_-- -foreground red
4274 $ui_diff tag conf d_+s \
4275 -foreground {#00a000} \
4276 -background {#e2effa}
4277 $ui_diff tag conf d_-s \
4279 -background {#e2effa}
4280 $ui_diff tag conf d_s+ \
4281 -foreground {#00a000} \
4283 $ui_diff tag conf d_s- \
4287 $ui_diff tag conf d<<<<<<< \
4288 -foreground orange \
4290 $ui_diff tag conf d======= \
4291 -foreground orange \
4293 $ui_diff tag conf d>>>>>>> \
4294 -foreground orange \
4297 $ui_diff tag raise sel
4299 # -- Diff Body Context Menu
4301 set ctxm .vpane.lower.diff.body.ctxm
4302 menu $ctxm -tearoff 0
4306 -command reshow_diff
4307 lappend diff_actions [list $ctxm entryconf [$ctxm index last] -state]
4311 -command {tk_textCopy $ui_diff}
4312 lappend diff_actions [list $ctxm entryconf [$ctxm index last] -state]
4314 -label {Select All} \
4316 -command {focus $ui_diff;$ui_diff tag add sel 0.0 end}
4317 lappend diff_actions [list $ctxm entryconf [$ctxm index last] -state]
4322 $ui_diff tag add sel 0.0 end
4323 tk_textCopy $ui_diff
4324 $ui_diff tag remove sel 0.0 end
4326 lappend diff_actions [list $ctxm entryconf [$ctxm index last] -state]
4329 -label {Apply/Reverse Hunk} \
4331 -command {apply_hunk $cursorX $cursorY}
4332 set ui_diff_applyhunk [$ctxm index last]
4333 lappend diff_actions [list $ctxm entryconf $ui_diff_applyhunk -state]
4336 -label {Decrease Font Size} \
4338 -command {incr_font_size font_diff -1}
4339 lappend diff_actions [list $ctxm entryconf [$ctxm index last] -state]
4341 -label {Increase Font Size} \
4343 -command {incr_font_size font_diff 1}
4344 lappend diff_actions [list $ctxm entryconf [$ctxm index last] -state]
4347 -label {Show Less Context} \
4349 -command {if {$repo_config(gui.diffcontext) >= 2} {
4350 incr repo_config(gui.diffcontext) -1
4353 lappend diff_actions [list $ctxm entryconf [$ctxm index last] -state]
4355 -label {Show More Context} \
4358 incr repo_config(gui.diffcontext)
4361 lappend diff_actions [list $ctxm entryconf [$ctxm index last] -state]
4363 $ctxm add command -label {Options...} \
4366 bind_button3 $ui_diff "
4369 if {\$ui_index eq \$current_diff_side} {
4370 $ctxm entryconf $ui_diff_applyhunk -label {Unstage Hunk From Commit}
4372 $ctxm entryconf $ui_diff_applyhunk -label {Stage Hunk For Commit}
4374 tk_popup $ctxm %X %Y
4376 unset ui_diff_applyhunk
4380 set ui_status_value {Initializing...}
4381 label .status -textvariable ui_status_value \
4387 pack .status -anchor w -side bottom -fill x
4392 set gm $repo_config(gui.geometry)
4393 wm geometry . [lindex $gm 0]
4394 .vpane sash place 0 \
4395 [lindex [.vpane sash coord 0] 0] \
4397 .vpane.files sash place 0 \
4399 [lindex [.vpane.files sash coord 0] 1]
4405 bind $ui_comm <$M1B-Key-Return> {do_commit;break}
4406 bind $ui_comm <$M1B-Key-i> {do_add_all;break}
4407 bind $ui_comm <$M1B-Key-I> {do_add_all;break}
4408 bind $ui_comm <$M1B-Key-x> {tk_textCut %W;break}
4409 bind $ui_comm <$M1B-Key-X> {tk_textCut %W;break}
4410 bind $ui_comm <$M1B-Key-c> {tk_textCopy %W;break}
4411 bind $ui_comm <$M1B-Key-C> {tk_textCopy %W;break}
4412 bind $ui_comm <$M1B-Key-v> {tk_textPaste %W; %W see insert; break}
4413 bind $ui_comm <$M1B-Key-V> {tk_textPaste %W; %W see insert; break}
4414 bind $ui_comm <$M1B-Key-a> {%W tag add sel 0.0 end;break}
4415 bind $ui_comm <$M1B-Key-A> {%W tag add sel 0.0 end;break}
4417 bind $ui_diff <$M1B-Key-x> {tk_textCopy %W;break}
4418 bind $ui_diff <$M1B-Key-X> {tk_textCopy %W;break}
4419 bind $ui_diff <$M1B-Key-c> {tk_textCopy %W;break}
4420 bind $ui_diff <$M1B-Key-C> {tk_textCopy %W;break}
4421 bind $ui_diff <$M1B-Key-v> {break}
4422 bind $ui_diff <$M1B-Key-V> {break}
4423 bind $ui_diff <$M1B-Key-a> {%W tag add sel 0.0 end;break}
4424 bind $ui_diff <$M1B-Key-A> {%W tag add sel 0.0 end;break}
4425 bind $ui_diff <Key-Up> {catch {%W yview scroll -1 units};break}
4426 bind $ui_diff <Key-Down> {catch {%W yview scroll 1 units};break}
4427 bind $ui_diff <Key-Left> {catch {%W xview scroll -1 units};break}
4428 bind $ui_diff <Key-Right> {catch {%W xview scroll 1 units};break}
4429 bind $ui_diff <Button-1> {focus %W}
4431 if {!$single_commit} {
4432 bind . <$M1B-Key-n> do_create_branch
4433 bind . <$M1B-Key-N> do_create_branch
4436 bind . <Destroy> do_quit
4437 bind all <Key-F5> do_rescan
4438 bind all <$M1B-Key-r> do_rescan
4439 bind all <$M1B-Key-R> do_rescan
4440 bind . <$M1B-Key-s> do_signoff
4441 bind . <$M1B-Key-S> do_signoff
4442 bind . <$M1B-Key-i> do_add_all
4443 bind . <$M1B-Key-I> do_add_all
4444 bind . <$M1B-Key-Return> do_commit
4445 bind all <$M1B-Key-q> do_quit
4446 bind all <$M1B-Key-Q> do_quit
4447 bind all <$M1B-Key-w> {destroy [winfo toplevel %W]}
4448 bind all <$M1B-Key-W> {destroy [winfo toplevel %W]}
4449 foreach i [list $ui_index $ui_workdir] {
4450 bind $i <Button-1> "toggle_or_diff $i %x %y; break"
4451 bind $i <$M1B-Button-1> "add_one_to_selection $i %x %y; break"
4452 bind $i <Shift-Button-1> "add_range_to_selection $i %x %y; break"
4456 set file_lists($ui_index) [list]
4457 set file_lists($ui_workdir) [list]
4461 set MERGE_HEAD [list]
4464 set current_branch {}
4465 set current_diff_path {}
4466 set selected_commit_type new
4468 wm title . "[appname] ([file normalize [file dirname [gitdir]]])"
4469 focus -force $ui_comm
4471 # -- Warn the user about environmental problems. Cygwin's Tcl
4472 # does *not* pass its env array onto any processes it spawns.
4473 # This means that git processes get none of our environment.
4478 set msg "Possible environment issues exist.
4480 The following environment variables are probably
4481 going to be ignored by any Git subprocess run
4485 foreach name [array names env] {
4486 switch -regexp -- $name {
4487 {^GIT_INDEX_FILE$} -
4488 {^GIT_OBJECT_DIRECTORY$} -
4489 {^GIT_ALTERNATE_OBJECT_DIRECTORIES$} -
4491 {^GIT_EXTERNAL_DIFF$} -
4495 {^GIT_CONFIG_LOCAL$} -
4496 {^GIT_(AUTHOR|COMMITTER)_DATE$} {
4497 append msg " - $name\n"
4500 {^GIT_(AUTHOR|COMMITTER)_(NAME|EMAIL)$} {
4501 append msg " - $name\n"
4503 set suggest_user $name
4507 if {$ignored_env > 0} {
4509 This is due to a known issue with the
4510 Tcl binary distributed by Cygwin."
4512 if {$suggest_user ne {}} {
4515 A good replacement for $suggest_user
4516 is placing values for the user.name and
4517 user.email settings into your personal
4523 unset ignored_env msg suggest_user name
4526 # -- Only initialize complex UI if we are going to stay running.
4528 if {!$single_commit} {
4532 populate_branch_menu
4537 # -- Only suggest a gc run if we are going to stay running.
4539 if {!$single_commit} {
4540 set object_limit 2000
4541 if {[is_Windows]} {set object_limit 200}
4542 regexp {^([0-9]+) objects,} [exec git count-objects] _junk objects_current
4543 if {$objects_current >= $object_limit} {
4545 "This repository currently has $objects_current loose objects.
4547 To maintain optimal performance it is strongly
4548 recommended that you compress the database
4549 when more than $object_limit loose objects exist.
4551 Compress the database now?"] eq yes} {
4555 unset object_limit _junk objects_current
4558 lock_index begin-read