2 # Tcl ignores the next line -*- tcl -*- \
5 set appvers
{@@GITGUI_VERSION@@
}
7 Copyright ©
2006, 2007 Shawn Pearce
, et. al.
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
]
43 return [eval [concat
[list
file join $_gitdir] $args]]
48 if {$_gitexec eq
{}} {
49 if {[catch
{set _gitexec
[git
--exec-path]} err
]} {
50 error
"Git not installed?\n\n$err"
56 return [eval [concat
[list
file join $_gitexec] $args]]
65 global tcl_platform tk_library
66 if {[tk windowingsystem
] eq
{aqua
}} {
74 if {$tcl_platform(platform
) eq
{windows
}} {
81 global tcl_platform _iscygwin
82 if {$_iscygwin eq
{}} {
83 if {$tcl_platform(platform
) eq
{windows
}} {
84 if {[catch
{set p
[exec cygpath
--windir]} err
]} {
96 proc is_enabled
{option
} {
97 global enabled_options
98 if {[catch
{set on
$enabled_options($option)}]} {return 0}
102 proc enable_option
{option
} {
103 global enabled_options
104 set enabled_options
($option) 1
107 proc disable_option
{option
} {
108 global enabled_options
109 set enabled_options
($option) 0
112 ######################################################################
116 proc is_many_config
{name
} {
117 switch
-glob -- $name {
126 proc is_config_true
{name
} {
128 if {[catch
{set v
$repo_config($name)}]} {
130 } elseif
{$v eq
{true
} ||
$v eq
{1} ||
$v eq
{yes}} {
137 proc load_config
{include_global
} {
138 global repo_config global_config default_config
140 array
unset global_config
141 if {$include_global} {
143 set fd_rc
[open
"| git config --global --list" r
]
144 while {[gets
$fd_rc line
] >= 0} {
145 if {[regexp
{^
([^
=]+)=(.
*)$
} $line line name value
]} {
146 if {[is_many_config
$name]} {
147 lappend global_config
($name) $value
149 set global_config
($name) $value
157 array
unset repo_config
159 set fd_rc
[open
"| git config --list" r
]
160 while {[gets
$fd_rc line
] >= 0} {
161 if {[regexp
{^
([^
=]+)=(.
*)$
} $line line name value
]} {
162 if {[is_many_config
$name]} {
163 lappend repo_config
($name) $value
165 set repo_config
($name) $value
172 foreach name
[array names default_config
] {
173 if {[catch
{set v
$global_config($name)}]} {
174 set global_config
($name) $default_config($name)
176 if {[catch
{set v
$repo_config($name)}]} {
177 set repo_config
($name) $default_config($name)
182 proc save_config
{} {
183 global default_config font_descs
184 global repo_config global_config
185 global repo_config_new global_config_new
187 foreach option
$font_descs {
188 set name
[lindex
$option 0]
189 set font
[lindex
$option 1]
190 font configure
$font \
191 -family $global_config_new(gui.
$font^^family
) \
192 -size $global_config_new(gui.
$font^^size
)
193 font configure
${font}bold \
194 -family $global_config_new(gui.
$font^^family
) \
195 -size $global_config_new(gui.
$font^^size
)
196 set global_config_new
(gui.
$name) [font configure
$font]
197 unset global_config_new
(gui.
$font^^family
)
198 unset global_config_new
(gui.
$font^^size
)
201 foreach name
[array names default_config
] {
202 set value
$global_config_new($name)
203 if {$value ne
$global_config($name)} {
204 if {$value eq
$default_config($name)} {
205 catch
{git config
--global --unset $name}
207 regsub
-all "\[{}\]" $value {"} value
208 git config --global $name $value
210 set global_config($name) $value
211 if {$value eq $repo_config($name)} {
212 catch {git config --unset $name}
213 set repo_config($name) $value
218 foreach name [array names default_config] {
219 set value $repo_config_new($name)
220 if {$value ne $repo_config($name)} {
221 if {$value eq $global_config($name)} {
222 catch {git config --unset $name}
224 regsub -all "\
[{}\
]" $value {"} value
225 git config
$name $value
227 set repo_config
($name) $value
232 ######################################################################
237 return [eval exec git
$args]
240 proc error_popup
{msg
} {
242 if {[reponame
] ne
{}} {
243 append title
" ([reponame])"
245 set cmd
[list tk_messageBox \
248 -title "$title: error" \
250 if {[winfo ismapped .
]} {
251 lappend cmd
-parent .
256 proc warn_popup
{msg
} {
258 if {[reponame
] ne
{}} {
259 append title
" ([reponame])"
261 set cmd
[list tk_messageBox \
264 -title "$title: warning" \
266 if {[winfo ismapped .
]} {
267 lappend cmd
-parent .
272 proc info_popup
{msg
{parent .
}} {
274 if {[reponame
] ne
{}} {
275 append title
" ([reponame])"
285 proc ask_popup
{msg
} {
287 if {[reponame
] ne
{}} {
288 append title
" ([reponame])"
290 return [tk_messageBox \
298 ######################################################################
302 if {{--version} eq
$argv ||
{version
} eq
$argv} {
303 puts
"git-gui version $appvers"
310 if {[catch
{set v
[git
--version]} err
]} {
311 catch
{wm withdraw .
}
312 error_popup
"Cannot determine Git version:
316 [appname] requires Git $req_maj.$req_min or later."
319 if {[regexp
{^git version
(\d
+)\.
(\d
+)} $v _junk act_maj act_min
]} {
320 if {$act_maj < $req_maj
321 ||
($act_maj == $req_maj && $act_min < $req_min)} {
322 catch
{wm withdraw .
}
323 error_popup
"[appname] requires Git $req_maj.$req_min or later.
329 catch
{wm withdraw .
}
330 error_popup
"Cannot parse Git version string:\n\n$v"
333 unset -nocomplain v _junk act_maj act_min req_maj req_min
335 ######################################################################
339 if { [catch
{set _gitdir
$env(GIT_DIR
)}]
340 && [catch
{set _gitdir
[git rev-parse
--git-dir]} err
]} {
341 catch
{wm withdraw .
}
342 error_popup
"Cannot find the git directory:\n\n$err"
345 if {![file isdirectory
$_gitdir] && [is_Cygwin
]} {
346 catch
{set _gitdir
[exec cygpath
--unix $_gitdir]}
348 if {![file isdirectory
$_gitdir]} {
349 catch
{wm withdraw .
}
350 error_popup
"Git directory not found:\n\n$_gitdir"
353 if {[lindex
[file split $_gitdir] end
] ne
{.git
}} {
354 catch
{wm withdraw .
}
355 error_popup
"Cannot use funny .git directory:\n\n$_gitdir"
358 if {[catch
{cd [file dirname $_gitdir]} err
]} {
359 catch
{wm withdraw .
}
360 error_popup
"No working directory [file dirname $_gitdir]:\n\n$err"
363 set _reponame
[lindex
[file split \
364 [file normalize
[file dirname $_gitdir]]] \
367 ######################################################################
371 set current_diff_path
{}
372 set current_diff_side
{}
373 set diff_actions
[list
]
374 set ui_status_value
{Initializing...
}
378 set MERGE_HEAD
[list
]
381 set current_branch
{}
382 set current_diff_path
{}
383 set selected_commit_type new
385 ######################################################################
393 set disable_on_lock
[list
]
394 set index_lock_type none
396 proc lock_index
{type} {
397 global index_lock_type disable_on_lock
399 if {$index_lock_type eq
{none
}} {
400 set index_lock_type
$type
401 foreach w
$disable_on_lock {
402 uplevel
#0 $w disabled
405 } elseif
{$index_lock_type eq
"begin-$type"} {
406 set index_lock_type
$type
412 proc unlock_index
{} {
413 global index_lock_type disable_on_lock
415 set index_lock_type none
416 foreach w
$disable_on_lock {
421 ######################################################################
425 proc repository_state
{ctvar hdvar mhvar
} {
426 global current_branch
427 upvar
$ctvar ct
$hdvar hd
$mhvar mh
431 if {[catch
{set current_branch
[git symbolic-ref HEAD
]}]} {
432 set current_branch
{}
434 regsub ^refs
/((heads|tags|remotes
)/)? \
440 if {[catch
{set hd
[git rev-parse
--verify HEAD
]}]} {
446 set merge_head
[gitdir MERGE_HEAD
]
447 if {[file exists
$merge_head]} {
449 set fd_mh
[open
$merge_head r
]
450 while {[gets
$fd_mh line
] >= 0} {
461 global PARENT empty_tree
463 set p
[lindex
$PARENT 0]
467 if {$empty_tree eq
{}} {
468 set empty_tree
[git mktree
<< {}]
473 proc rescan
{after
{honor_trustmtime
1}} {
474 global HEAD PARENT MERGE_HEAD commit_type
475 global ui_index ui_workdir ui_status_value ui_comm
476 global rescan_active file_states
479 if {$rescan_active > 0 ||
![lock_index
read]} return
481 repository_state newType newHEAD newMERGE_HEAD
482 if {[string match amend
* $commit_type]
483 && $newType eq
{normal
}
484 && $newHEAD eq
$HEAD} {
488 set MERGE_HEAD
$newMERGE_HEAD
489 set commit_type
$newType
492 array
unset file_states
494 if {![$ui_comm edit modified
]
495 ||
[string trim
[$ui_comm get
0.0 end
]] eq
{}} {
496 if {[load_message GITGUI_MSG
]} {
497 } elseif
{[load_message MERGE_MSG
]} {
498 } elseif
{[load_message SQUASH_MSG
]} {
501 $ui_comm edit modified false
504 if {[is_enabled branch
]} {
509 if {$honor_trustmtime && $repo_config(gui.trustmtime
) eq
{true
}} {
510 rescan_stage2
{} $after
513 set ui_status_value
{Refreshing
file status...
}
514 set cmd
[list git update-index
]
516 lappend cmd
--unmerged
517 lappend cmd
--ignore-missing
518 lappend cmd
--refresh
519 set fd_rf
[open
"| $cmd" r
]
520 fconfigure
$fd_rf -blocking 0 -translation binary
521 fileevent
$fd_rf readable \
522 [list rescan_stage2
$fd_rf $after]
526 proc rescan_stage2
{fd after
} {
527 global ui_status_value
528 global rescan_active buf_rdi buf_rdf buf_rlo
532 if {![eof
$fd]} return
536 set ls_others
[list | git ls-files
--others -z \
537 --exclude-per-directory=.gitignore
]
538 set info_exclude
[gitdir info exclude
]
539 if {[file readable
$info_exclude]} {
540 lappend ls_others
"--exclude-from=$info_exclude"
548 set ui_status_value
{Scanning
for modified files ...
}
549 set fd_di
[open
"| git diff-index --cached -z [PARENT]" r
]
550 set fd_df
[open
"| git diff-files -z" r
]
551 set fd_lo
[open
$ls_others r
]
553 fconfigure
$fd_di -blocking 0 -translation binary
-encoding binary
554 fconfigure
$fd_df -blocking 0 -translation binary
-encoding binary
555 fconfigure
$fd_lo -blocking 0 -translation binary
-encoding binary
556 fileevent
$fd_di readable
[list read_diff_index
$fd_di $after]
557 fileevent
$fd_df readable
[list read_diff_files
$fd_df $after]
558 fileevent
$fd_lo readable
[list read_ls_others
$fd_lo $after]
561 proc load_message
{file} {
565 if {[file isfile
$f]} {
566 if {[catch
{set fd
[open
$f r
]}]} {
569 set content
[string trim
[read $fd]]
571 regsub
-all -line {[ \r\t]+$
} $content {} content
572 $ui_comm delete
0.0 end
573 $ui_comm insert end
$content
579 proc read_diff_index
{fd after
} {
582 append buf_rdi
[read $fd]
584 set n
[string length
$buf_rdi]
586 set z1
[string first
"\0" $buf_rdi $c]
589 set z2
[string first
"\0" $buf_rdi $z1]
593 set i
[split [string range
$buf_rdi $c [expr {$z1 - 2}]] { }]
594 set p
[string range
$buf_rdi $z1 [expr {$z2 - 1}]]
596 [encoding convertfrom
$p] \
598 [list
[lindex
$i 0] [lindex
$i 2]] \
604 set buf_rdi
[string range
$buf_rdi $c end
]
609 rescan_done
$fd buf_rdi
$after
612 proc read_diff_files
{fd after
} {
615 append buf_rdf
[read $fd]
617 set n
[string length
$buf_rdf]
619 set z1
[string first
"\0" $buf_rdf $c]
622 set z2
[string first
"\0" $buf_rdf $z1]
626 set i
[split [string range
$buf_rdf $c [expr {$z1 - 2}]] { }]
627 set p
[string range
$buf_rdf $z1 [expr {$z2 - 1}]]
629 [encoding convertfrom
$p] \
632 [list
[lindex
$i 0] [lindex
$i 2]]
637 set buf_rdf
[string range
$buf_rdf $c end
]
642 rescan_done
$fd buf_rdf
$after
645 proc read_ls_others
{fd after
} {
648 append buf_rlo
[read $fd]
649 set pck
[split $buf_rlo "\0"]
650 set buf_rlo
[lindex
$pck end
]
651 foreach p
[lrange
$pck 0 end-1
] {
652 merge_state
[encoding convertfrom
$p] ?O
654 rescan_done
$fd buf_rlo
$after
657 proc rescan_done
{fd buf after
} {
659 global file_states repo_config
662 if {![eof
$fd]} return
665 if {[incr rescan_active
-1] > 0} return
674 proc prune_selection
{} {
675 global file_states selected_paths
677 foreach path
[array names selected_paths
] {
678 if {[catch
{set still_here
$file_states($path)}]} {
679 unset selected_paths
($path)
684 ######################################################################
689 global ui_diff current_diff_path current_diff_header
690 global ui_index ui_workdir
692 $ui_diff conf
-state normal
693 $ui_diff delete
0.0 end
694 $ui_diff conf
-state disabled
696 set current_diff_path
{}
697 set current_diff_header
{}
699 $ui_index tag remove in_diff
0.0 end
700 $ui_workdir tag remove in_diff
0.0 end
703 proc reshow_diff
{} {
704 global ui_status_value file_states file_lists
705 global current_diff_path current_diff_side
707 set p
$current_diff_path
709 # No diff is being shown.
710 } elseif
{$current_diff_side eq
{}
711 ||
[catch
{set s
$file_states($p)}]
712 ||
[lsearch
-sorted -exact $file_lists($current_diff_side) $p] == -1} {
715 show_diff
$p $current_diff_side
719 proc handle_empty_diff
{} {
720 global current_diff_path file_states file_lists
722 set path
$current_diff_path
723 set s
$file_states($path)
724 if {[lindex
$s 0] ne
{_M
}} return
726 info_popup
"No differences detected.
728 [short_path $path] has no changes.
730 The modification date of this file was updated
731 by another application, but the content within
732 the file was not changed.
734 A rescan will be automatically started to find
735 other files which may have the same state."
738 display_file
$path __
739 rescan
{set ui_status_value
{Ready.
}} 0
742 proc show_diff
{path w
{lno
{}}} {
743 global file_states file_lists
744 global is_3way_diff diff_active repo_config
745 global ui_diff ui_status_value ui_index ui_workdir
746 global current_diff_path current_diff_side current_diff_header
748 if {$diff_active ||
![lock_index
read]} return
752 set lno
[lsearch
-sorted -exact $file_lists($w) $path]
758 $w tag add in_diff
$lno.0 [expr {$lno + 1}].0
761 set s
$file_states($path)
765 set current_diff_path
$path
766 set current_diff_side
$w
767 set current_diff_header
{}
768 set ui_status_value
"Loading diff of [escape_path $path]..."
770 # - Git won't give us the diff, there's nothing to compare to!
773 set max_sz
[expr {128 * 1024}]
775 set fd
[open
$path r
]
776 set content
[read $fd $max_sz]
778 set sz
[file size
$path]
782 set ui_status_value
"Unable to display [escape_path $path]"
783 error_popup
"Error loading file:\n\n$err"
786 $ui_diff conf
-state normal
787 if {![catch
{set type [exec file $path]}]} {
788 set n
[string length
$path]
789 if {[string equal
-length $n $path $type]} {
790 set type [string range
$type $n end
]
791 regsub
{^
:?\s
*} $type {} type
793 $ui_diff insert end
"* $type\n" d_@
795 if {[string first
"\0" $content] != -1} {
796 $ui_diff insert end \
797 "* Binary file (not showing content)." \
801 $ui_diff insert end \
802 "* Untracked file is $sz bytes.
803 * Showing only first $max_sz bytes.
806 $ui_diff insert end
$content
808 $ui_diff insert end
"
809 * Untracked file clipped here by [appname].
810 * To see the entire file, use an external editor.
814 $ui_diff conf
-state disabled
817 set ui_status_value
{Ready.
}
822 if {$w eq
$ui_index} {
823 lappend cmd diff-index
825 } elseif
{$w eq
$ui_workdir} {
826 if {[string index
$m 0] eq
{U
}} {
829 lappend cmd diff-files
834 lappend cmd
--no-color
835 if {$repo_config(gui.diffcontext
) > 0} {
836 lappend cmd
"-U$repo_config(gui.diffcontext)"
838 if {$w eq
$ui_index} {
844 if {[catch
{set fd
[open
$cmd r
]} err
]} {
847 set ui_status_value
"Unable to display [escape_path $path]"
848 error_popup
"Error loading diff:\n\n$err"
856 fileevent
$fd readable
[list read_diff
$fd]
859 proc read_diff
{fd
} {
860 global ui_diff ui_status_value diff_active
861 global is_3way_diff current_diff_header
863 $ui_diff conf
-state normal
864 while {[gets
$fd line
] >= 0} {
865 # -- Cleanup uninteresting diff header lines.
867 if { [string match
{diff --git *} $line]
868 ||
[string match
{diff --cc *} $line]
869 ||
[string match
{diff --combined *} $line]
870 ||
[string match
{--- *} $line]
871 ||
[string match
{+++ *} $line]} {
872 append current_diff_header
$line "\n"
875 if {[string match
{index
*} $line]} continue
876 if {$line eq
{deleted
file mode
120000}} {
877 set line
"deleted symlink"
880 # -- Automatically detect if this is a 3 way diff.
882 if {[string match
{@@@
*} $line]} {set is_3way_diff
1}
884 if {[string match
{mode
*} $line]
885 ||
[string match
{new
file *} $line]
886 ||
[string match
{deleted
file *} $line]
887 ||
[string match
{Binary files
* and
* differ
} $line]
888 ||
$line eq
{\ No newline
at end of
file}
889 ||
[regexp
{^\
* Unmerged path
} $line]} {
891 } elseif
{$is_3way_diff} {
892 set op
[string range
$line 0 1]
902 if {[regexp
{^\
+\
+([<>]{7} |
={7})} $line _g op
]} {
903 set line
[string replace
$line 0 1 { }]
910 puts
"error: Unhandled 3 way diff marker: {$op}"
915 set op
[string index
$line 0]
921 if {[regexp
{^\
+([<>]{7} |
={7})} $line _g op
]} {
922 set line
[string replace
$line 0 0 { }]
929 puts
"error: Unhandled 2 way diff marker: {$op}"
934 $ui_diff insert end
$line $tags
935 if {[string index
$line end
] eq
"\r"} {
936 $ui_diff tag add d_cr
{end
- 2c
}
938 $ui_diff insert end
"\n" $tags
940 $ui_diff conf
-state disabled
946 set ui_status_value
{Ready.
}
948 if {[$ui_diff index end
] eq
{2.0}} {
954 proc apply_hunk
{x y
} {
955 global current_diff_path current_diff_header current_diff_side
956 global ui_diff ui_index file_states
958 if {$current_diff_path eq
{} ||
$current_diff_header eq
{}} return
959 if {![lock_index apply_hunk
]} return
961 set apply_cmd
{git apply
--cached --whitespace=nowarn
}
962 set mi
[lindex
$file_states($current_diff_path) 0]
963 if {$current_diff_side eq
$ui_index} {
965 lappend apply_cmd
--reverse
966 if {[string index
$mi 0] ne
{M
}} {
972 if {[string index
$mi 1] ne
{M
}} {
978 set s_lno
[lindex
[split [$ui_diff index @
$x,$y] .
] 0]
979 set s_lno
[$ui_diff search
-backwards -regexp ^@@
$s_lno.0 0.0]
985 set e_lno
[$ui_diff search
-forwards -regexp ^@@
"$s_lno + 1 lines" end
]
991 set p
[open
"| $apply_cmd" w
]
992 fconfigure
$p -translation binary
-encoding binary
993 puts
-nonewline $p $current_diff_header
994 puts
-nonewline $p [$ui_diff get
$s_lno $e_lno]
996 error_popup
"Failed to $mode selected hunk.\n\n$err"
1001 $ui_diff conf
-state normal
1002 $ui_diff delete
$s_lno $e_lno
1003 $ui_diff conf
-state disabled
1005 if {[$ui_diff get
1.0 end
] eq
"\n"} {
1011 if {$current_diff_side eq
$ui_index} {
1013 } elseif
{[string index
$mi 0] eq
{_
}} {
1019 display_file
$current_diff_path $mi
1025 ######################################################################
1029 proc load_last_commit
{} {
1030 global HEAD PARENT MERGE_HEAD commit_type ui_comm
1033 if {[llength
$PARENT] == 0} {
1034 error_popup
{There is nothing to amend.
1036 You are about to create the initial commit.
1037 There is no commit before this to amend.
1042 repository_state curType curHEAD curMERGE_HEAD
1043 if {$curType eq
{merge
}} {
1044 error_popup
{Cannot amend
while merging.
1046 You are currently
in the middle of a merge that
1047 has not been fully completed. You cannot amend
1048 the prior commit unless you first abort the
1049 current merge activity.
1057 set fd
[open
"| git cat-file commit $curHEAD" r
]
1058 fconfigure
$fd -encoding binary
-translation lf
1059 if {[catch
{set enc
$repo_config(i18n.commitencoding
)}]} {
1062 while {[gets
$fd line
] > 0} {
1063 if {[string match
{parent
*} $line]} {
1064 lappend parents
[string range
$line 7 end
]
1065 } elseif
{[string match
{encoding
*} $line]} {
1066 set enc
[string tolower
[string range
$line 9 end
]]
1069 fconfigure
$fd -encoding $enc
1070 set msg
[string trim
[read $fd]]
1073 error_popup
"Error loading commit data for amend:\n\n$err"
1079 set MERGE_HEAD
[list
]
1080 switch
-- [llength
$parents] {
1081 0 {set commit_type amend-initial
}
1082 1 {set commit_type amend
}
1083 default
{set commit_type amend-merge
}
1086 $ui_comm delete
0.0 end
1087 $ui_comm insert end
$msg
1089 $ui_comm edit modified false
1090 rescan
{set ui_status_value
{Ready.
}}
1093 proc create_new_commit
{} {
1094 global commit_type ui_comm
1096 set commit_type normal
1097 $ui_comm delete
0.0 end
1099 $ui_comm edit modified false
1100 rescan
{set ui_status_value
{Ready.
}}
1103 set GIT_COMMITTER_IDENT
{}
1105 proc committer_ident
{} {
1106 global GIT_COMMITTER_IDENT
1108 if {$GIT_COMMITTER_IDENT eq
{}} {
1109 if {[catch
{set me
[git var GIT_COMMITTER_IDENT
]} err
]} {
1110 error_popup
"Unable to obtain your identity:\n\n$err"
1113 if {![regexp
{^
(.
*) [0-9]+ [-+0-9]+$
} \
1114 $me me GIT_COMMITTER_IDENT
]} {
1115 error_popup
"Invalid GIT_COMMITTER_IDENT:\n\n$me"
1120 return $GIT_COMMITTER_IDENT
1123 proc commit_tree
{} {
1124 global HEAD commit_type file_states ui_comm repo_config
1125 global ui_status_value pch_error
1127 if {[committer_ident
] eq
{}} return
1128 if {![lock_index update
]} return
1130 # -- Our in memory state should match the repository.
1132 repository_state curType curHEAD curMERGE_HEAD
1133 if {[string match amend
* $commit_type]
1134 && $curType eq
{normal
}
1135 && $curHEAD eq
$HEAD} {
1136 } elseif
{$commit_type ne
$curType ||
$HEAD ne
$curHEAD} {
1137 info_popup
{Last scanned state does not match repository state.
1139 Another Git program has modified this repository
1140 since the last scan. A rescan must be performed
1141 before another commit can be created.
1143 The rescan will be automatically started now.
1146 rescan
{set ui_status_value
{Ready.
}}
1150 # -- At least one file should differ in the index.
1153 foreach path
[array names file_states
] {
1154 switch
-glob -- [lindex
$file_states($path) 0] {
1158 M?
{set files_ready
1}
1160 error_popup
"Unmerged files cannot be committed.
1162 File [short_path $path] has merge conflicts.
1163 You must resolve them and add the file before committing.
1169 error_popup
"Unknown file state [lindex $s 0] detected.
1171 File [short_path $path] cannot be committed by this program.
1176 if {!$files_ready && ![string match
*merge
$curType]} {
1177 info_popup
{No changes to commit.
1179 You must add
at least
1 file before you can commit.
1185 # -- A message is required.
1187 set msg
[string trim
[$ui_comm get
1.0 end
]]
1188 regsub
-all -line {[ \t\r]+$
} $msg {} msg
1190 error_popup
{Please supply a commit message.
1192 A good commit message has the following format
:
1194 - First line
: Describe
in one sentance what you did.
1195 - Second line
: Blank
1196 - Remaining lines
: Describe why this change is good.
1202 # -- Run the pre-commit hook.
1204 set pchook
[gitdir hooks pre-commit
]
1206 # On Cygwin [file executable] might lie so we need to ask
1207 # the shell if the hook is executable. Yes that's annoying.
1209 if {[is_Cygwin
] && [file isfile
$pchook]} {
1210 set pchook
[list sh
-c [concat \
1211 "if test -x \"$pchook\";" \
1212 "then exec \"$pchook\" 2>&1;" \
1214 } elseif
{[file executable
$pchook]} {
1215 set pchook
[list
$pchook |
& cat]
1217 commit_writetree
$curHEAD $msg
1221 set ui_status_value
{Calling pre-commit hook...
}
1223 set fd_ph
[open
"| $pchook" r
]
1224 fconfigure
$fd_ph -blocking 0 -translation binary
1225 fileevent
$fd_ph readable \
1226 [list commit_prehook_wait
$fd_ph $curHEAD $msg]
1229 proc commit_prehook_wait
{fd_ph curHEAD msg
} {
1230 global pch_error ui_status_value
1232 append pch_error
[read $fd_ph]
1233 fconfigure
$fd_ph -blocking 1
1235 if {[catch
{close
$fd_ph}]} {
1236 set ui_status_value
{Commit declined by pre-commit hook.
}
1237 hook_failed_popup pre-commit
$pch_error
1240 commit_writetree
$curHEAD $msg
1245 fconfigure
$fd_ph -blocking 0
1248 proc commit_writetree
{curHEAD msg
} {
1249 global ui_status_value
1251 set ui_status_value
{Committing changes...
}
1252 set fd_wt
[open
"| git write-tree" r
]
1253 fileevent
$fd_wt readable \
1254 [list commit_committree
$fd_wt $curHEAD $msg]
1257 proc commit_committree
{fd_wt curHEAD msg
} {
1258 global HEAD PARENT MERGE_HEAD commit_type
1259 global all_heads current_branch
1260 global ui_status_value ui_comm selected_commit_type
1261 global file_states selected_paths rescan_active
1265 if {$tree_id eq
{} ||
[catch
{close
$fd_wt} err
]} {
1266 error_popup
"write-tree failed:\n\n$err"
1267 set ui_status_value
{Commit failed.
}
1272 # -- Verify this wasn't an empty change.
1274 if {$commit_type eq
{normal
}} {
1275 set old_tree
[git rev-parse
"$PARENT^{tree}"]
1276 if {$tree_id eq
$old_tree} {
1277 info_popup
{No changes to commit.
1279 No files were modified by this commit and it
1280 was not a merge commit.
1282 A rescan will be automatically started now.
1285 rescan
{set ui_status_value
{No changes to commit.
}}
1290 # -- Build the message.
1292 set msg_p
[gitdir COMMIT_EDITMSG
]
1293 set msg_wt
[open
$msg_p w
]
1294 if {[catch
{set enc
$repo_config(i18n.commitencoding
)}]} {
1297 fconfigure
$msg_wt -encoding $enc -translation binary
1298 puts
-nonewline $msg_wt $msg
1301 # -- Create the commit.
1303 set cmd
[list git commit-tree
$tree_id]
1304 foreach p
[concat
$PARENT $MERGE_HEAD] {
1308 if {[catch
{set cmt_id
[eval exec $cmd]} err
]} {
1309 error_popup
"commit-tree failed:\n\n$err"
1310 set ui_status_value
{Commit failed.
}
1315 # -- Update the HEAD ref.
1318 if {$commit_type ne
{normal
}} {
1319 append reflogm
" ($commit_type)"
1321 set i
[string first
"\n" $msg]
1323 append reflogm
{: } [string range
$msg 0 [expr {$i - 1}]]
1325 append reflogm
{: } $msg
1327 set cmd
[list git update-ref
-m $reflogm HEAD
$cmt_id $curHEAD]
1328 if {[catch
{eval exec $cmd} err
]} {
1329 error_popup
"update-ref failed:\n\n$err"
1330 set ui_status_value
{Commit failed.
}
1335 # -- Cleanup after ourselves.
1337 catch
{file delete
$msg_p}
1338 catch
{file delete
[gitdir MERGE_HEAD
]}
1339 catch
{file delete
[gitdir MERGE_MSG
]}
1340 catch
{file delete
[gitdir SQUASH_MSG
]}
1341 catch
{file delete
[gitdir GITGUI_MSG
]}
1343 # -- Let rerere do its thing.
1345 if {[file isdirectory
[gitdir rr-cache
]]} {
1349 # -- Run the post-commit hook.
1351 set pchook
[gitdir hooks post-commit
]
1352 if {[is_Cygwin
] && [file isfile
$pchook]} {
1353 set pchook
[list sh
-c [concat \
1354 "if test -x \"$pchook\";" \
1355 "then exec \"$pchook\";" \
1357 } elseif
{![file executable
$pchook]} {
1360 if {$pchook ne
{}} {
1361 catch
{exec $pchook &}
1364 $ui_comm delete
0.0 end
1366 $ui_comm edit modified false
1368 if {[is_enabled singlecommit
]} do_quit
1370 # -- Make sure our current branch exists.
1372 if {$commit_type eq
{initial
}} {
1373 lappend all_heads
$current_branch
1374 set all_heads
[lsort
-unique $all_heads]
1375 populate_branch_menu
1378 # -- Update in memory status
1380 set selected_commit_type new
1381 set commit_type normal
1384 set MERGE_HEAD
[list
]
1386 foreach path
[array names file_states
] {
1387 set s
$file_states($path)
1389 switch
-glob -- $m {
1397 unset file_states
($path)
1398 catch
{unset selected_paths
($path)}
1401 set file_states
($path) [list _O
[lindex
$s 1] {} {}]
1407 set file_states
($path) [list \
1408 _
[string index
$m 1] \
1419 set ui_status_value \
1420 "Changes committed as [string range $cmt_id 0 7]."
1423 ######################################################################
1427 proc fetch_from
{remote
} {
1428 set w
[new_console \
1430 "Fetching new changes from $remote"]
1431 set cmd
[list git fetch
]
1433 console_exec
$w $cmd console_done
1436 proc push_to
{remote
} {
1437 set w
[new_console \
1439 "Pushing changes to $remote"]
1440 set cmd
[list git push
]
1443 console_exec
$w $cmd console_done
1446 ######################################################################
1450 proc mapicon
{w state path
} {
1453 if {[catch
{set r
$all_icons($state$w)}]} {
1454 puts
"error: no icon for $w state={$state} $path"
1460 proc mapdesc
{state path
} {
1463 if {[catch
{set r
$all_descs($state)}]} {
1464 puts
"error: no desc for state={$state} $path"
1470 proc escape_path
{path
} {
1471 regsub
-all {\\} $path "\\\\" path
1472 regsub
-all "\n" $path "\\n" path
1476 proc short_path
{path
} {
1477 return [escape_path
[lindex
[file split $path] end
]]
1481 set null_sha1
[string repeat
0 40]
1483 proc merge_state
{path new_state
{head_info
{}} {index_info
{}}} {
1484 global file_states next_icon_id null_sha1
1486 set s0
[string index
$new_state 0]
1487 set s1
[string index
$new_state 1]
1489 if {[catch
{set info
$file_states($path)}]} {
1491 set icon n
[incr next_icon_id
]
1493 set state
[lindex
$info 0]
1494 set icon
[lindex
$info 1]
1495 if {$head_info eq
{}} {set head_info
[lindex
$info 2]}
1496 if {$index_info eq
{}} {set index_info
[lindex
$info 3]}
1499 if {$s0 eq
{?
}} {set s0
[string index
$state 0]} \
1500 elseif
{$s0 eq
{_
}} {set s0 _
}
1502 if {$s1 eq
{?
}} {set s1
[string index
$state 1]} \
1503 elseif
{$s1 eq
{_
}} {set s1 _
}
1505 if {$s0 eq
{A
} && $s1 eq
{_
} && $head_info eq
{}} {
1506 set head_info
[list
0 $null_sha1]
1507 } elseif
{$s0 ne
{_
} && [string index
$state 0] eq
{_
}
1508 && $head_info eq
{}} {
1509 set head_info
$index_info
1512 set file_states
($path) [list
$s0$s1 $icon \
1513 $head_info $index_info \
1518 proc display_file_helper
{w path icon_name old_m new_m
} {
1521 if {$new_m eq
{_
}} {
1522 set lno
[lsearch
-sorted -exact $file_lists($w) $path]
1524 set file_lists
($w) [lreplace
$file_lists($w) $lno $lno]
1526 $w conf
-state normal
1527 $w delete
$lno.0 [expr {$lno + 1}].0
1528 $w conf
-state disabled
1530 } elseif
{$old_m eq
{_
} && $new_m ne
{_
}} {
1531 lappend file_lists
($w) $path
1532 set file_lists
($w) [lsort
-unique $file_lists($w)]
1533 set lno
[lsearch
-sorted -exact $file_lists($w) $path]
1535 $w conf
-state normal
1536 $w image create
$lno.0 \
1537 -align center
-padx 5 -pady 1 \
1539 -image [mapicon
$w $new_m $path]
1540 $w insert
$lno.1 "[escape_path $path]\n"
1541 $w conf
-state disabled
1542 } elseif
{$old_m ne
$new_m} {
1543 $w conf
-state normal
1544 $w image conf
$icon_name -image [mapicon
$w $new_m $path]
1545 $w conf
-state disabled
1549 proc display_file
{path state
} {
1550 global file_states selected_paths
1551 global ui_index ui_workdir
1553 set old_m
[merge_state
$path $state]
1554 set s
$file_states($path)
1555 set new_m
[lindex
$s 0]
1556 set icon_name
[lindex
$s 1]
1558 set o
[string index
$old_m 0]
1559 set n
[string index
$new_m 0]
1566 display_file_helper
$ui_index $path $icon_name $o $n
1568 if {[string index
$old_m 0] eq
{U
}} {
1571 set o
[string index
$old_m 1]
1573 if {[string index
$new_m 0] eq
{U
}} {
1576 set n
[string index
$new_m 1]
1578 display_file_helper
$ui_workdir $path $icon_name $o $n
1580 if {$new_m eq
{__
}} {
1581 unset file_states
($path)
1582 catch
{unset selected_paths
($path)}
1586 proc display_all_files_helper
{w path icon_name m
} {
1589 lappend file_lists
($w) $path
1590 set lno
[expr {[lindex
[split [$w index end
] .
] 0] - 1}]
1591 $w image create end \
1592 -align center
-padx 5 -pady 1 \
1594 -image [mapicon
$w $m $path]
1595 $w insert end
"[escape_path $path]\n"
1598 proc display_all_files
{} {
1599 global ui_index ui_workdir
1600 global file_states file_lists
1603 $ui_index conf
-state normal
1604 $ui_workdir conf
-state normal
1606 $ui_index delete
0.0 end
1607 $ui_workdir delete
0.0 end
1610 set file_lists
($ui_index) [list
]
1611 set file_lists
($ui_workdir) [list
]
1613 foreach path
[lsort
[array names file_states
]] {
1614 set s
$file_states($path)
1616 set icon_name
[lindex
$s 1]
1618 set s
[string index
$m 0]
1619 if {$s ne
{U
} && $s ne
{_
}} {
1620 display_all_files_helper
$ui_index $path \
1624 if {[string index
$m 0] eq
{U
}} {
1627 set s
[string index
$m 1]
1630 display_all_files_helper
$ui_workdir $path \
1635 $ui_index conf
-state disabled
1636 $ui_workdir conf
-state disabled
1639 proc update_indexinfo
{msg pathList after
} {
1640 global update_index_cp ui_status_value
1642 if {![lock_index update
]} return
1644 set update_index_cp
0
1645 set pathList
[lsort
$pathList]
1646 set totalCnt
[llength
$pathList]
1647 set batch [expr {int
($totalCnt * .01) + 1}]
1648 if {$batch > 25} {set batch 25}
1650 set ui_status_value
[format \
1651 "$msg... %i/%i files (%.2f%%)" \
1655 set fd
[open
"| git update-index -z --index-info" w
]
1662 fileevent
$fd writable
[list \
1663 write_update_indexinfo \
1673 proc write_update_indexinfo
{fd pathList totalCnt
batch msg after
} {
1674 global update_index_cp ui_status_value
1675 global file_states current_diff_path
1677 if {$update_index_cp >= $totalCnt} {
1684 for {set i
$batch} \
1685 {$update_index_cp < $totalCnt && $i > 0} \
1687 set path
[lindex
$pathList $update_index_cp]
1688 incr update_index_cp
1690 set s
$file_states($path)
1691 switch
-glob -- [lindex
$s 0] {
1698 set info
[lindex
$s 2]
1699 if {$info eq
{}} continue
1701 puts
-nonewline $fd "$info\t[encoding convertto $path]\0"
1702 display_file
$path $new
1705 set ui_status_value
[format \
1706 "$msg... %i/%i files (%.2f%%)" \
1709 [expr {100.0 * $update_index_cp / $totalCnt}]]
1712 proc update_index
{msg pathList after
} {
1713 global update_index_cp ui_status_value
1715 if {![lock_index update
]} return
1717 set update_index_cp
0
1718 set pathList
[lsort
$pathList]
1719 set totalCnt
[llength
$pathList]
1720 set batch [expr {int
($totalCnt * .01) + 1}]
1721 if {$batch > 25} {set batch 25}
1723 set ui_status_value
[format \
1724 "$msg... %i/%i files (%.2f%%)" \
1728 set fd
[open
"| git update-index --add --remove -z --stdin" w
]
1735 fileevent
$fd writable
[list \
1736 write_update_index \
1746 proc write_update_index
{fd pathList totalCnt
batch msg after
} {
1747 global update_index_cp ui_status_value
1748 global file_states current_diff_path
1750 if {$update_index_cp >= $totalCnt} {
1757 for {set i
$batch} \
1758 {$update_index_cp < $totalCnt && $i > 0} \
1760 set path
[lindex
$pathList $update_index_cp]
1761 incr update_index_cp
1763 switch
-glob -- [lindex
$file_states($path) 0] {
1769 if {[file exists
$path]} {
1778 puts
-nonewline $fd "[encoding convertto $path]\0"
1779 display_file
$path $new
1782 set ui_status_value
[format \
1783 "$msg... %i/%i files (%.2f%%)" \
1786 [expr {100.0 * $update_index_cp / $totalCnt}]]
1789 proc checkout_index
{msg pathList after
} {
1790 global update_index_cp ui_status_value
1792 if {![lock_index update
]} return
1794 set update_index_cp
0
1795 set pathList
[lsort
$pathList]
1796 set totalCnt
[llength
$pathList]
1797 set batch [expr {int
($totalCnt * .01) + 1}]
1798 if {$batch > 25} {set batch 25}
1800 set ui_status_value
[format \
1801 "$msg... %i/%i files (%.2f%%)" \
1805 set cmd
[list git checkout-index
]
1811 set fd
[open
"| $cmd " w
]
1818 fileevent
$fd writable
[list \
1819 write_checkout_index \
1829 proc write_checkout_index
{fd pathList totalCnt
batch msg after
} {
1830 global update_index_cp ui_status_value
1831 global file_states current_diff_path
1833 if {$update_index_cp >= $totalCnt} {
1840 for {set i
$batch} \
1841 {$update_index_cp < $totalCnt && $i > 0} \
1843 set path
[lindex
$pathList $update_index_cp]
1844 incr update_index_cp
1845 switch
-glob -- [lindex
$file_states($path) 0] {
1849 puts
-nonewline $fd "[encoding convertto $path]\0"
1850 display_file
$path ?_
1855 set ui_status_value
[format \
1856 "$msg... %i/%i files (%.2f%%)" \
1859 [expr {100.0 * $update_index_cp / $totalCnt}]]
1862 ######################################################################
1864 ## branch management
1866 proc is_tracking_branch
{name
} {
1867 global tracking_branches
1869 if {![catch
{set info
$tracking_branches($name)}]} {
1872 foreach t
[array names tracking_branches
] {
1873 if {[string match
{*/\
*} $t] && [string match
$t $name]} {
1880 proc load_all_heads
{} {
1883 set all_heads
[list
]
1884 set fd
[open
"| git for-each-ref --format=%(refname) refs/heads" r
]
1885 while {[gets
$fd line
] > 0} {
1886 if {[is_tracking_branch
$line]} continue
1887 if {![regsub ^refs
/heads
/ $line {} name
]} continue
1888 lappend all_heads
$name
1892 set all_heads
[lsort
$all_heads]
1895 proc populate_branch_menu
{} {
1896 global all_heads disable_on_lock
1899 set last
[$m index last
]
1900 for {set i
0} {$i <= $last} {incr i
} {
1901 if {[$m type $i] eq
{separator
}} {
1904 foreach a
$disable_on_lock {
1905 if {[lindex
$a 0] ne
$m ||
[lindex
$a 2] < $i} {
1909 set disable_on_lock
$new_dol
1914 if {$all_heads ne
{}} {
1917 foreach b
$all_heads {
1918 $m add radiobutton \
1920 -command [list switch_branch
$b] \
1921 -variable current_branch \
1924 lappend disable_on_lock \
1925 [list
$m entryconf
[$m index last
] -state]
1929 proc all_tracking_branches
{} {
1930 global tracking_branches
1932 set all_trackings
{}
1934 foreach name
[array names tracking_branches
] {
1935 if {[regsub
{/\
*$
} $name {} name
]} {
1938 regsub ^refs
/(heads|remotes
)/ $name {} name
1939 lappend all_trackings
$name
1944 set fd
[open
"| git for-each-ref --format=%(refname) $cmd" r
]
1945 while {[gets
$fd name
] > 0} {
1946 regsub ^refs
/(heads|remotes
)/ $name {} name
1947 lappend all_trackings
$name
1952 return [lsort
-unique $all_trackings]
1955 proc load_all_tags
{} {
1957 set fd
[open
"| git for-each-ref --format=%(refname) refs/tags" r
]
1958 while {[gets
$fd line
] > 0} {
1959 if {![regsub ^refs
/tags
/ $line {} name
]} continue
1960 lappend all_tags
$name
1964 return [lsort
$all_tags]
1967 proc do_create_branch_action
{w
} {
1968 global all_heads null_sha1 repo_config
1969 global create_branch_checkout create_branch_revtype
1970 global create_branch_head create_branch_trackinghead
1971 global create_branch_name create_branch_revexp
1972 global create_branch_tag
1974 set newbranch
$create_branch_name
1975 if {$newbranch eq
{}
1976 ||
$newbranch eq
$repo_config(gui.newbranchtemplate
)} {
1980 -title [wm title
$w] \
1982 -message "Please supply a branch name."
1983 focus
$w.desc.name_t
1986 if {![catch
{git show-ref
--verify -- "refs/heads/$newbranch"}]} {
1990 -title [wm title
$w] \
1992 -message "Branch '$newbranch' already exists."
1993 focus
$w.desc.name_t
1996 if {[catch
{git check-ref-format
"heads/$newbranch"}]} {
2000 -title [wm title
$w] \
2002 -message "We do not like '$newbranch' as a branch name."
2003 focus
$w.desc.name_t
2008 switch
-- $create_branch_revtype {
2009 head {set rev $create_branch_head}
2010 tracking
{set rev $create_branch_trackinghead}
2011 tag
{set rev $create_branch_tag}
2012 expression
{set rev $create_branch_revexp}
2014 if {[catch
{set cmt
[git rev-parse
--verify "${rev}^0"]}]} {
2018 -title [wm title
$w] \
2020 -message "Invalid starting revision: $rev"
2023 set cmd
[list git update-ref
]
2025 lappend cmd
"branch: Created from $rev"
2026 lappend cmd
"refs/heads/$newbranch"
2028 lappend cmd
$null_sha1
2029 if {[catch
{eval exec $cmd} err
]} {
2033 -title [wm title
$w] \
2035 -message "Failed to create '$newbranch'.\n\n$err"
2039 lappend all_heads
$newbranch
2040 set all_heads
[lsort
$all_heads]
2041 populate_branch_menu
2043 if {$create_branch_checkout} {
2044 switch_branch
$newbranch
2048 proc radio_selector
{varname value args
} {
2049 upvar
#0 $varname var
2053 trace add variable create_branch_head
write \
2054 [list radio_selector create_branch_revtype
head]
2055 trace add variable create_branch_trackinghead
write \
2056 [list radio_selector create_branch_revtype tracking
]
2057 trace add variable create_branch_tag
write \
2058 [list radio_selector create_branch_revtype tag
]
2060 trace add variable delete_branch_head
write \
2061 [list radio_selector delete_branch_checktype
head]
2062 trace add variable delete_branch_trackinghead
write \
2063 [list radio_selector delete_branch_checktype tracking
]
2065 proc do_create_branch
{} {
2066 global all_heads current_branch repo_config
2067 global create_branch_checkout create_branch_revtype
2068 global create_branch_head create_branch_trackinghead
2069 global create_branch_name create_branch_revexp
2070 global create_branch_tag
2072 set w .branch_editor
2074 wm geometry
$w "+[winfo rootx .]+[winfo rooty .]"
2076 label
$w.header
-text {Create New Branch
} \
2078 pack
$w.header
-side top
-fill x
2081 button
$w.buttons.create
-text Create \
2084 -command [list do_create_branch_action
$w]
2085 pack
$w.buttons.create
-side right
2086 button
$w.buttons.cancel
-text {Cancel
} \
2088 -command [list destroy
$w]
2089 pack
$w.buttons.cancel
-side right
-padx 5
2090 pack
$w.buttons
-side bottom
-fill x
-pady 10 -padx 10
2092 labelframe
$w.desc \
2093 -text {Branch Description
} \
2095 label
$w.desc.name_l
-text {Name
:} -font font_ui
2096 entry
$w.desc.name_t \
2100 -textvariable create_branch_name \
2104 if {%d
== 1 && [regexp
{[~^
:?
*\
[\
0- ]} %S
]} {return 0}
2107 grid
$w.desc.name_l
$w.desc.name_t
-sticky we
-padx {0 5}
2108 grid columnconfigure
$w.desc
1 -weight 1
2109 pack
$w.desc
-anchor nw
-fill x
-pady 5 -padx 5
2111 labelframe
$w.from \
2112 -text {Starting Revision
} \
2114 radiobutton
$w.from.head_r \
2115 -text {Local Branch
:} \
2117 -variable create_branch_revtype \
2119 eval tk_optionMenu
$w.from.head_m create_branch_head
$all_heads
2120 grid
$w.from.head_r
$w.from.head_m
-sticky w
2121 set all_trackings
[all_tracking_branches
]
2122 if {$all_trackings ne
{}} {
2123 set create_branch_trackinghead
[lindex
$all_trackings 0]
2124 radiobutton
$w.from.tracking_r \
2125 -text {Tracking Branch
:} \
2127 -variable create_branch_revtype \
2129 eval tk_optionMenu
$w.from.tracking_m \
2130 create_branch_trackinghead \
2132 grid
$w.from.tracking_r
$w.from.tracking_m
-sticky w
2134 set all_tags
[load_all_tags
]
2135 if {$all_tags ne
{}} {
2136 set create_branch_tag
[lindex
$all_tags 0]
2137 radiobutton
$w.from.tag_r \
2140 -variable create_branch_revtype \
2142 eval tk_optionMenu
$w.from.tag_m \
2145 grid
$w.from.tag_r
$w.from.tag_m
-sticky w
2147 radiobutton
$w.from.exp_r \
2148 -text {Revision Expression
:} \
2150 -variable create_branch_revtype \
2152 entry
$w.from.exp_t \
2156 -textvariable create_branch_revexp \
2160 if {%d
== 1 && [regexp
{\s
} %S
]} {return 0}
2161 if {%d
== 1 && [string length
%S
] > 0} {
2162 set create_branch_revtype expression
2166 grid
$w.from.exp_r
$w.from.exp_t
-sticky we
-padx {0 5}
2167 grid columnconfigure
$w.from
1 -weight 1
2168 pack
$w.from
-anchor nw
-fill x
-pady 5 -padx 5
2170 labelframe
$w.postActions \
2171 -text {Post Creation Actions
} \
2173 checkbutton
$w.postActions.checkout \
2174 -text {Checkout after creation
} \
2175 -variable create_branch_checkout \
2177 pack
$w.postActions.checkout
-anchor nw
2178 pack
$w.postActions
-anchor nw
-fill x
-pady 5 -padx 5
2180 set create_branch_checkout
1
2181 set create_branch_head
$current_branch
2182 set create_branch_revtype
head
2183 set create_branch_name
$repo_config(gui.newbranchtemplate
)
2184 set create_branch_revexp
{}
2186 bind $w <Visibility
> "
2188 $w.desc.name_t icursor end
2189 focus $w.desc.name_t
2191 bind $w <Key-Escape
> "destroy $w"
2192 bind $w <Key-Return
> "do_create_branch_action $w;break"
2193 wm title
$w "[appname] ([reponame]): Create Branch"
2197 proc do_delete_branch_action
{w
} {
2199 global delete_branch_checktype delete_branch_head delete_branch_trackinghead
2202 switch
-- $delete_branch_checktype {
2203 head {set check_rev
$delete_branch_head}
2204 tracking
{set check_rev
$delete_branch_trackinghead}
2205 always
{set check_rev
{:none
}}
2207 if {$check_rev eq
{:none
}} {
2209 } elseif
{[catch
{set check_cmt
[git rev-parse
--verify "${check_rev}^0"]}]} {
2213 -title [wm title
$w] \
2215 -message "Invalid check revision: $check_rev"
2219 set to_delete
[list
]
2220 set not_merged
[list
]
2221 foreach i
[$w.list.l curselection
] {
2222 set b
[$w.list.l get
$i]
2223 if {[catch
{set o
[git rev-parse
--verify $b]}]} continue
2224 if {$check_cmt ne
{}} {
2225 if {$b eq
$check_rev} continue
2226 if {[catch
{set m
[git merge-base
$o $check_cmt]}]} continue
2228 lappend not_merged
$b
2232 lappend to_delete
[list
$b $o]
2234 if {$not_merged ne
{}} {
2235 set msg
"The following branches are not completely merged into $check_rev:
2237 - [join $not_merged "\n - "]"
2241 -title [wm title
$w] \
2245 if {$to_delete eq
{}} return
2246 if {$delete_branch_checktype eq
{always
}} {
2247 set msg
{Recovering deleted branches is difficult.
2249 Delete the selected branches?
}
2250 if {[tk_messageBox \
2253 -title [wm title
$w] \
2255 -message $msg] ne
yes} {
2261 foreach i
$to_delete {
2264 if {[catch
{git update-ref
-d "refs/heads/$b" $o} err
]} {
2265 append failed
" - $b: $err\n"
2267 set x
[lsearch
-sorted -exact $all_heads $b]
2269 set all_heads
[lreplace
$all_heads $x $x]
2274 if {$failed ne
{}} {
2278 -title [wm title
$w] \
2280 -message "Failed to delete branches:\n$failed"
2283 set all_heads
[lsort
$all_heads]
2284 populate_branch_menu
2288 proc do_delete_branch
{} {
2289 global all_heads tracking_branches current_branch
2290 global delete_branch_checktype delete_branch_head delete_branch_trackinghead
2292 set w .branch_editor
2294 wm geometry
$w "+[winfo rootx .]+[winfo rooty .]"
2296 label
$w.header
-text {Delete Local Branch
} \
2298 pack
$w.header
-side top
-fill x
2301 button
$w.buttons.create
-text Delete \
2303 -command [list do_delete_branch_action
$w]
2304 pack
$w.buttons.create
-side right
2305 button
$w.buttons.cancel
-text {Cancel
} \
2307 -command [list destroy
$w]
2308 pack
$w.buttons.cancel
-side right
-padx 5
2309 pack
$w.buttons
-side bottom
-fill x
-pady 10 -padx 10
2311 labelframe
$w.list \
2312 -text {Local Branches
} \
2317 -selectmode extended \
2318 -yscrollcommand [list
$w.list.sby
set] \
2320 foreach h
$all_heads {
2321 if {$h ne
$current_branch} {
2322 $w.list.l insert end
$h
2325 scrollbar
$w.list.sby
-command [list
$w.list.l yview
]
2326 pack
$w.list.sby
-side right
-fill y
2327 pack
$w.list.l
-side left
-fill both
-expand 1
2328 pack
$w.list
-fill both
-expand 1 -pady 5 -padx 5
2330 labelframe
$w.validate \
2331 -text {Delete Only If
} \
2333 radiobutton
$w.validate.head_r \
2334 -text {Merged Into Local Branch
:} \
2336 -variable delete_branch_checktype \
2338 eval tk_optionMenu
$w.validate.head_m delete_branch_head
$all_heads
2339 grid
$w.validate.head_r
$w.validate.head_m
-sticky w
2340 set all_trackings
[all_tracking_branches
]
2341 if {$all_trackings ne
{}} {
2342 set delete_branch_trackinghead
[lindex
$all_trackings 0]
2343 radiobutton
$w.validate.tracking_r \
2344 -text {Merged Into Tracking Branch
:} \
2346 -variable delete_branch_checktype \
2348 eval tk_optionMenu
$w.validate.tracking_m \
2349 delete_branch_trackinghead \
2351 grid
$w.validate.tracking_r
$w.validate.tracking_m
-sticky w
2353 radiobutton
$w.validate.always_r \
2354 -text {Always
(Do not perform merge checks
)} \
2356 -variable delete_branch_checktype \
2358 grid
$w.validate.always_r
-columnspan 2 -sticky w
2359 grid columnconfigure
$w.validate
1 -weight 1
2360 pack
$w.validate
-anchor nw
-fill x
-pady 5 -padx 5
2362 set delete_branch_head
$current_branch
2363 set delete_branch_checktype
head
2365 bind $w <Visibility
> "grab $w; focus $w"
2366 bind $w <Key-Escape
> "destroy $w"
2367 wm title
$w "[appname] ([reponame]): Delete Branch"
2371 proc switch_branch
{new_branch
} {
2372 global HEAD commit_type current_branch repo_config
2374 if {![lock_index switch
]} return
2376 # -- Our in memory state should match the repository.
2378 repository_state curType curHEAD curMERGE_HEAD
2379 if {[string match amend
* $commit_type]
2380 && $curType eq
{normal
}
2381 && $curHEAD eq
$HEAD} {
2382 } elseif
{$commit_type ne
$curType ||
$HEAD ne
$curHEAD} {
2383 info_popup
{Last scanned state does not match repository state.
2385 Another Git program has modified this repository
2386 since the last scan. A rescan must be performed
2387 before the current branch can be changed.
2389 The rescan will be automatically started now.
2392 rescan
{set ui_status_value
{Ready.
}}
2396 # -- Don't do a pointless switch.
2398 if {$current_branch eq
$new_branch} {
2403 if {$repo_config(gui.trustmtime
) eq
{true
}} {
2404 switch_branch_stage2
{} $new_branch
2406 set ui_status_value
{Refreshing
file status...
}
2407 set cmd
[list git update-index
]
2409 lappend cmd
--unmerged
2410 lappend cmd
--ignore-missing
2411 lappend cmd
--refresh
2412 set fd_rf
[open
"| $cmd" r
]
2413 fconfigure
$fd_rf -blocking 0 -translation binary
2414 fileevent
$fd_rf readable \
2415 [list switch_branch_stage2
$fd_rf $new_branch]
2419 proc switch_branch_stage2
{fd_rf new_branch
} {
2420 global ui_status_value HEAD
2424 if {![eof
$fd_rf]} return
2428 set ui_status_value
"Updating working directory to '$new_branch'..."
2429 set cmd
[list git read-tree
]
2432 lappend cmd
--exclude-per-directory=.gitignore
2434 lappend cmd
$new_branch
2435 set fd_rt
[open
"| $cmd" r
]
2436 fconfigure
$fd_rt -blocking 0 -translation binary
2437 fileevent
$fd_rt readable \
2438 [list switch_branch_readtree_wait
$fd_rt $new_branch]
2441 proc switch_branch_readtree_wait
{fd_rt new_branch
} {
2442 global selected_commit_type commit_type HEAD MERGE_HEAD PARENT
2443 global current_branch
2444 global ui_comm ui_status_value
2446 # -- We never get interesting output on stdout; only stderr.
2449 fconfigure
$fd_rt -blocking 1
2450 if {![eof
$fd_rt]} {
2451 fconfigure
$fd_rt -blocking 0
2455 # -- The working directory wasn't in sync with the index and
2456 # we'd have to overwrite something to make the switch. A
2457 # merge is required.
2459 if {[catch
{close
$fd_rt} err
]} {
2460 regsub
{^fatal
: } $err {} err
2461 warn_popup
"File level merge required.
2465 Staying on branch '$current_branch'."
2466 set ui_status_value
"Aborted checkout of '$new_branch' (file level merging is required)."
2471 # -- Update the symbolic ref. Core git doesn't even check for failure
2472 # here, it Just Works(tm). If it doesn't we are in some really ugly
2473 # state that is difficult to recover from within git-gui.
2475 if {[catch
{git symbolic-ref HEAD
"refs/heads/$new_branch"} err
]} {
2476 error_popup
"Failed to set current branch.
2478 This working directory is only partially switched.
2479 We successfully updated your files, but failed to
2480 update an internal Git file.
2482 This should not have occurred. [appname] will now
2490 # -- Update our repository state. If we were previously in amend mode
2491 # we need to toss the current buffer and do a full rescan to update
2492 # our file lists. If we weren't in amend mode our file lists are
2493 # accurate and we can avoid the rescan.
2496 set selected_commit_type new
2497 if {[string match amend
* $commit_type]} {
2498 $ui_comm delete
0.0 end
2500 $ui_comm edit modified false
2501 rescan
{set ui_status_value
"Checked out branch '$current_branch'."}
2503 repository_state commit_type HEAD MERGE_HEAD
2505 set ui_status_value
"Checked out branch '$current_branch'."
2509 ######################################################################
2511 ## remote management
2513 proc load_all_remotes
{} {
2515 global all_remotes tracking_branches
2517 set all_remotes
[list
]
2518 array
unset tracking_branches
2520 set rm_dir
[gitdir remotes
]
2521 if {[file isdirectory
$rm_dir]} {
2522 set all_remotes
[glob \
2526 -directory $rm_dir *]
2528 foreach name
$all_remotes {
2530 set fd
[open
[file join $rm_dir $name] r
]
2531 while {[gets
$fd line
] >= 0} {
2532 if {![regexp
{^Pull
:[ ]*([^
:]+):(.
+)$
} \
2533 $line line src dst
]} continue
2534 if {![regexp ^refs
/ $dst]} {
2535 set dst
"refs/heads/$dst"
2537 set tracking_branches
($dst) [list
$name $src]
2544 foreach line
[array names repo_config remote.
*.url
] {
2545 if {![regexp ^remote\.
(.
*)\.url\$
$line line name
]} continue
2546 lappend all_remotes
$name
2548 if {[catch
{set fl
$repo_config(remote.
$name.fetch
)}]} {
2552 if {![regexp
{^
([^
:]+):(.
+)$
} $line line src dst
]} continue
2553 if {![regexp ^refs
/ $dst]} {
2554 set dst
"refs/heads/$dst"
2556 set tracking_branches
($dst) [list
$name $src]
2560 set all_remotes
[lsort
-unique $all_remotes]
2563 proc populate_fetch_menu
{} {
2564 global all_remotes repo_config
2567 foreach r
$all_remotes {
2569 if {![catch
{set a
$repo_config(remote.
$r.url
)}]} {
2570 if {![catch
{set a
$repo_config(remote.
$r.fetch
)}]} {
2575 set fd
[open
[gitdir remotes
$r] r
]
2576 while {[gets
$fd n
] >= 0} {
2577 if {[regexp
{^Pull
:[ \t]*([^
:]+):} $n]} {
2588 -label "Fetch from $r..." \
2589 -command [list fetch_from
$r] \
2595 proc populate_push_menu
{} {
2596 global all_remotes repo_config
2600 foreach r
$all_remotes {
2602 if {![catch
{set a
$repo_config(remote.
$r.url
)}]} {
2603 if {![catch
{set a
$repo_config(remote.
$r.push
)}]} {
2608 set fd
[open
[gitdir remotes
$r] r
]
2609 while {[gets
$fd n
] >= 0} {
2610 if {[regexp
{^Push
:[ \t]*([^
:]+):} $n]} {
2624 -label "Push to $r..." \
2625 -command [list push_to
$r] \
2632 proc start_push_anywhere_action
{w
} {
2633 global push_urltype push_remote push_url push_thin push_tags
2636 switch
-- $push_urltype {
2637 remote
{set r_url
$push_remote}
2638 url
{set r_url
$push_url}
2640 if {$r_url eq
{}} return
2642 set cmd
[list git push
]
2652 foreach i
[$w.
source.l curselection
] {
2653 set b
[$w.
source.l get
$i]
2654 lappend cmd
"refs/heads/$b:refs/heads/$b"
2659 } elseif
{$cnt == 1} {
2665 set cons
[new_console
"push $r_url" "Pushing $cnt $unit to $r_url"]
2666 console_exec
$cons $cmd console_done
2670 trace add variable push_remote
write \
2671 [list radio_selector push_urltype remote
]
2673 proc do_push_anywhere
{} {
2674 global all_heads all_remotes current_branch
2675 global push_urltype push_remote push_url push_thin push_tags
2679 wm geometry
$w "+[winfo rootx .]+[winfo rooty .]"
2681 label
$w.header
-text {Push Branches
} -font font_uibold
2682 pack
$w.header
-side top
-fill x
2685 button
$w.buttons.create
-text Push \
2687 -command [list start_push_anywhere_action
$w]
2688 pack
$w.buttons.create
-side right
2689 button
$w.buttons.cancel
-text {Cancel
} \
2691 -command [list destroy
$w]
2692 pack
$w.buttons.cancel
-side right
-padx 5
2693 pack
$w.buttons
-side bottom
-fill x
-pady 10 -padx 10
2695 labelframe
$w.
source \
2696 -text {Source Branches
} \
2698 listbox
$w.
source.l \
2701 -selectmode extended \
2702 -yscrollcommand [list
$w.
source.sby
set] \
2704 foreach h
$all_heads {
2705 $w.
source.l insert end
$h
2706 if {$h eq
$current_branch} {
2707 $w.
source.l
select set end
2710 scrollbar
$w.
source.sby
-command [list
$w.
source.l yview
]
2711 pack
$w.
source.sby
-side right
-fill y
2712 pack
$w.
source.l
-side left
-fill both
-expand 1
2713 pack
$w.
source -fill both
-expand 1 -pady 5 -padx 5
2715 labelframe
$w.dest \
2716 -text {Destination Repository
} \
2718 if {$all_remotes ne
{}} {
2719 radiobutton
$w.dest.remote_r \
2722 -variable push_urltype \
2724 eval tk_optionMenu
$w.dest.remote_m push_remote
$all_remotes
2725 grid
$w.dest.remote_r
$w.dest.remote_m
-sticky w
2726 if {[lsearch
-sorted -exact $all_remotes origin
] != -1} {
2727 set push_remote origin
2729 set push_remote
[lindex
$all_remotes 0]
2731 set push_urltype remote
2733 set push_urltype url
2735 radiobutton
$w.dest.url_r \
2736 -text {Arbitrary URL
:} \
2738 -variable push_urltype \
2740 entry
$w.dest.url_t \
2744 -textvariable push_url \
2748 if {%d
== 1 && [regexp
{\s
} %S
]} {return 0}
2749 if {%d
== 1 && [string length
%S
] > 0} {
2750 set push_urltype url
2754 grid
$w.dest.url_r
$w.dest.url_t
-sticky we
-padx {0 5}
2755 grid columnconfigure
$w.dest
1 -weight 1
2756 pack
$w.dest
-anchor nw
-fill x
-pady 5 -padx 5
2758 labelframe
$w.options \
2759 -text {Transfer Options
} \
2761 checkbutton
$w.options.thin \
2762 -text {Use thin pack
(for slow network connections
)} \
2763 -variable push_thin \
2765 grid
$w.options.thin
-columnspan 2 -sticky w
2766 checkbutton
$w.options.tags \
2767 -text {Include tags
} \
2768 -variable push_tags \
2770 grid
$w.options.tags
-columnspan 2 -sticky w
2771 grid columnconfigure
$w.options
1 -weight 1
2772 pack
$w.options
-anchor nw
-fill x
-pady 5 -padx 5
2778 bind $w <Visibility
> "grab $w"
2779 bind $w <Key-Escape
> "destroy $w"
2780 wm title
$w "[appname] ([reponame]): Push"
2784 ######################################################################
2789 global HEAD commit_type file_states
2791 if {[string match amend
* $commit_type]} {
2792 info_popup
{Cannot merge
while amending.
2794 You must finish amending this commit before
2795 starting any
type of merge.
2800 if {[committer_ident
] eq
{}} {return 0}
2801 if {![lock_index merge
]} {return 0}
2803 # -- Our in memory state should match the repository.
2805 repository_state curType curHEAD curMERGE_HEAD
2806 if {$commit_type ne
$curType ||
$HEAD ne
$curHEAD} {
2807 info_popup
{Last scanned state does not match repository state.
2809 Another Git program has modified this repository
2810 since the last scan. A rescan must be performed
2811 before a merge can be performed.
2813 The rescan will be automatically started now.
2816 rescan
{set ui_status_value
{Ready.
}}
2820 foreach path
[array names file_states
] {
2821 switch
-glob -- [lindex
$file_states($path) 0] {
2823 continue; # and pray it works!
2826 error_popup
"You are in the middle of a conflicted merge.
2828 File [short_path $path] has merge conflicts.
2830 You must resolve them, add the file, and commit to
2831 complete the current merge. Only then can you
2832 begin another merge.
2838 error_popup
"You are in the middle of a change.
2840 File [short_path $path] is modified.
2842 You should complete the current commit before
2843 starting a merge. Doing so will help you abort
2844 a failed merge, should the need arise.
2855 proc visualize_local_merge
{w
} {
2857 foreach i
[$w.
source.l curselection
] {
2858 lappend revs
[$w.
source.l get
$i]
2860 if {$revs eq
{}} return
2861 lappend revs
--not HEAD
2865 proc start_local_merge_action
{w
} {
2866 global HEAD ui_status_value current_branch
2868 set cmd
[list git merge
]
2871 foreach i
[$w.
source.l curselection
] {
2872 set b
[$w.
source.l get
$i]
2880 } elseif
{$revcnt == 1} {
2882 } elseif
{$revcnt <= 15} {
2888 -title [wm title
$w] \
2890 -message "Too many branches selected.
2892 You have requested to merge $revcnt branches
2893 in an octopus merge. This exceeds Git's
2894 internal limit of 15 branches per merge.
2896 Please select fewer branches. To merge more
2897 than 15 branches, merge the branches in batches.
2902 set msg
"Merging $current_branch, [join $names {, }]"
2903 set ui_status_value
"$msg..."
2904 set cons
[new_console
"Merge" $msg]
2905 console_exec
$cons $cmd [list finish_merge
$revcnt]
2906 bind $w <Destroy
> {}
2910 proc finish_merge
{revcnt w ok
} {
2913 set msg
{Merge completed successfully.
}
2916 info_popup
"Octopus merge failed.
2918 Your merge of $revcnt branches has failed.
2920 There are file-level conflicts between the
2921 branches which must be resolved manually.
2923 The working directory will now be reset.
2925 You can attempt this merge again
2926 by merging only one branch at a time." $w
2928 set fd
[open
"| git read-tree --reset -u HEAD" r
]
2929 fconfigure
$fd -blocking 0 -translation binary
2930 fileevent
$fd readable
[list reset_hard_wait
$fd]
2931 set ui_status_value
{Aborting... please
wait...
}
2935 set msg
{Merge failed. Conflict resolution is required.
}
2938 rescan
[list
set ui_status_value
$msg]
2941 proc do_local_merge
{} {
2942 global current_branch
2944 if {![can_merge
]} return
2948 wm geometry
$w "+[winfo rootx .]+[winfo rooty .]"
2951 -text "Merge Into $current_branch" \
2953 pack
$w.header
-side top
-fill x
2956 button
$w.buttons.visualize
-text Visualize \
2958 -command [list visualize_local_merge
$w]
2959 pack
$w.buttons.visualize
-side left
2960 button
$w.buttons.create
-text Merge \
2962 -command [list start_local_merge_action
$w]
2963 pack
$w.buttons.create
-side right
2964 button
$w.buttons.cancel
-text {Cancel
} \
2966 -command [list destroy
$w]
2967 pack
$w.buttons.cancel
-side right
-padx 5
2968 pack
$w.buttons
-side bottom
-fill x
-pady 10 -padx 10
2970 labelframe
$w.
source \
2971 -text {Source Branches
} \
2973 listbox
$w.
source.l \
2976 -selectmode extended \
2977 -yscrollcommand [list
$w.
source.sby
set] \
2979 scrollbar
$w.
source.sby
-command [list
$w.
source.l yview
]
2980 pack
$w.
source.sby
-side right
-fill y
2981 pack
$w.
source.l
-side left
-fill both
-expand 1
2982 pack
$w.
source -fill both
-expand 1 -pady 5 -padx 5
2984 set cmd
[list git for-each-ref
]
2985 lappend cmd
{--format=%(objectname
) %(*objectname
) %(refname
)}
2986 lappend cmd refs
/heads
2987 lappend cmd refs
/remotes
2988 lappend cmd refs
/tags
2989 set fr_fd
[open
"| $cmd" r
]
2990 fconfigure
$fr_fd -translation binary
2991 while {[gets
$fr_fd line
] > 0} {
2992 set line
[split $line { }]
2993 set sha1
([lindex
$line 0]) [lindex
$line 2]
2994 set sha1
([lindex
$line 1]) [lindex
$line 2]
2999 set fr_fd
[open
"| git rev-list --all --not HEAD"]
3000 while {[gets
$fr_fd line
] > 0} {
3001 if {[catch
{set ref
$sha1($line)}]} continue
3002 regsub ^refs
/(heads|remotes|tags
)/ $ref {} ref
3003 lappend to_show
$ref
3007 foreach ref
[lsort
-unique $to_show] {
3008 $w.
source.l insert end
$ref
3011 bind $w <Visibility
> "grab $w"
3012 bind $w <Key-Escape
> "unlock_index;destroy $w"
3013 bind $w <Destroy
> unlock_index
3014 wm title
$w "[appname] ([reponame]): Merge"
3018 proc do_reset_hard
{} {
3019 global HEAD commit_type file_states
3021 if {[string match amend
* $commit_type]} {
3022 info_popup
{Cannot abort
while amending.
3024 You must finish amending this commit.
3029 if {![lock_index abort
]} return
3031 if {[string match
*merge
* $commit_type]} {
3037 if {[ask_popup
"Abort $op?
3039 Aborting the current $op will cause
3040 *ALL* uncommitted changes to be lost.
3042 Continue with aborting the current $op?"] eq
{yes}} {
3043 set fd
[open
"| git read-tree --reset -u HEAD" r
]
3044 fconfigure
$fd -blocking 0 -translation binary
3045 fileevent
$fd readable
[list reset_hard_wait
$fd]
3046 set ui_status_value
{Aborting... please
wait...
}
3052 proc reset_hard_wait
{fd
} {
3060 $ui_comm delete
0.0 end
3061 $ui_comm edit modified false
3063 catch
{file delete
[gitdir MERGE_HEAD
]}
3064 catch
{file delete
[gitdir rr-cache MERGE_RR
]}
3065 catch
{file delete
[gitdir SQUASH_MSG
]}
3066 catch
{file delete
[gitdir MERGE_MSG
]}
3067 catch
{file delete
[gitdir GITGUI_MSG
]}
3069 rescan
{set ui_status_value
{Abort completed. Ready.
}}
3073 ######################################################################
3077 set next_browser_id
0
3079 proc new_browser
{commit
} {
3080 global next_browser_id cursor_ptr M1B
3081 global browser_commit browser_status browser_stack browser_path browser_busy
3083 if {[winfo ismapped .
]} {
3084 set w .browser
[incr next_browser_id
]
3091 set w_list
$w.list.l
3092 set browser_commit
($w_list) $commit
3093 set browser_status
($w_list) {Starting...
}
3094 set browser_stack
($w_list) {}
3095 set browser_path
($w_list) $browser_commit($w_list):
3096 set browser_busy
($w_list) 1
3098 label
$w.path
-textvariable browser_path
($w_list) \
3104 pack
$w.path
-anchor w
-side top
-fill x
3107 text
$w_list -background white
-borderwidth 0 \
3108 -cursor $cursor_ptr \
3113 -xscrollcommand [list
$w.list.sbx
set] \
3114 -yscrollcommand [list
$w.list.sby
set] \
3116 $w_list tag conf in_sel \
3117 -background [$w_list cget
-foreground] \
3118 -foreground [$w_list cget
-background]
3119 scrollbar
$w.list.sbx
-orient h
-command [list
$w_list xview
]
3120 scrollbar
$w.list.sby
-orient v
-command [list
$w_list yview
]
3121 pack
$w.list.sbx
-side bottom
-fill x
3122 pack
$w.list.sby
-side right
-fill y
3123 pack
$w_list -side left
-fill both
-expand 1
3124 pack
$w.list
-side top
-fill both
-expand 1
3126 label
$w.status
-textvariable browser_status
($w_list) \
3132 pack
$w.status
-anchor w
-side bottom
-fill x
3134 bind $w_list <Button-1
> "browser_click 0 $w_list @%x,%y;break"
3135 bind $w_list <Double-Button-1
> "browser_click 1 $w_list @%x,%y;break"
3136 bind $w_list <$M1B-Up> "browser_parent $w_list;break"
3137 bind $w_list <$M1B-Left> "browser_parent $w_list;break"
3138 bind $w_list <Up
> "browser_move -1 $w_list;break"
3139 bind $w_list <Down
> "browser_move 1 $w_list;break"
3140 bind $w_list <$M1B-Right> "browser_enter $w_list;break"
3141 bind $w_list <Return
> "browser_enter $w_list;break"
3142 bind $w_list <Prior
> "browser_page -1 $w_list;break"
3143 bind $w_list <Next
> "browser_page 1 $w_list;break"
3144 bind $w_list <Left
> break
3145 bind $w_list <Right
> break
3147 bind $tl <Visibility
> "focus $w"
3148 bind $tl <Destroy
> "
3149 array unset browser_buffer $w_list
3150 array unset browser_files $w_list
3151 array unset browser_status $w_list
3152 array unset browser_stack $w_list
3153 array unset browser_path $w_list
3154 array unset browser_commit $w_list
3155 array unset browser_busy $w_list
3157 wm title
$tl "[appname] ([reponame]): File Browser"
3158 ls_tree
$w_list $browser_commit($w_list) {}
3161 proc browser_move
{dir w
} {
3162 global browser_files browser_busy
3164 if {$browser_busy($w)} return
3165 set lno
[lindex
[split [$w index in_sel.first
] .
] 0]
3167 if {[lindex
$browser_files($w) [expr {$lno - 1}]] ne
{}} {
3168 $w tag remove in_sel
0.0 end
3169 $w tag add in_sel
$lno.0 [expr {$lno + 1}].0
3174 proc browser_page
{dir w
} {
3175 global browser_files browser_busy
3177 if {$browser_busy($w)} return
3178 $w yview scroll
$dir pages
3180 [lindex
[$w yview
] 0]
3181 * [llength
$browser_files($w)]
3183 if {[lindex
$browser_files($w) [expr {$lno - 1}]] ne
{}} {
3184 $w tag remove in_sel
0.0 end
3185 $w tag add in_sel
$lno.0 [expr {$lno + 1}].0
3190 proc browser_parent
{w
} {
3191 global browser_files browser_status browser_path
3192 global browser_stack browser_busy
3194 if {$browser_busy($w)} return
3195 set info
[lindex
$browser_files($w) 0]
3196 if {[lindex
$info 0] eq
{parent
}} {
3197 set parent
[lindex
$browser_stack($w) end-1
]
3198 set browser_stack
($w) [lrange
$browser_stack($w) 0 end-2
]
3199 if {$browser_stack($w) eq
{}} {
3200 regsub
{:.
*$
} $browser_path($w) {:} browser_path
($w)
3202 regsub
{/[^
/]+$
} $browser_path($w) {} browser_path
($w)
3204 set browser_status
($w) "Loading $browser_path($w)..."
3205 ls_tree
$w [lindex
$parent 0] [lindex
$parent 1]
3209 proc browser_enter
{w
} {
3210 global browser_files browser_status browser_path
3211 global browser_commit browser_stack browser_busy
3213 if {$browser_busy($w)} return
3214 set lno
[lindex
[split [$w index in_sel.first
] .
] 0]
3215 set info
[lindex
$browser_files($w) [expr {$lno - 1}]]
3217 switch
-- [lindex
$info 0] {
3222 set name
[lindex
$info 2]
3223 set escn
[escape_path
$name]
3224 set browser_status
($w) "Loading $escn..."
3225 append browser_path
($w) $escn
3226 ls_tree
$w [lindex
$info 1] $name
3229 set name
[lindex
$info 2]
3231 foreach n
$browser_stack($w) {
3232 append p
[lindex
$n 1]
3235 show_blame
$browser_commit($w) $p
3241 proc browser_click
{was_double_click w pos
} {
3242 global browser_files browser_busy
3244 if {$browser_busy($w)} return
3245 set lno
[lindex
[split [$w index
$pos] .
] 0]
3248 if {[lindex
$browser_files($w) [expr {$lno - 1}]] ne
{}} {
3249 $w tag remove in_sel
0.0 end
3250 $w tag add in_sel
$lno.0 [expr {$lno + 1}].0
3251 if {$was_double_click} {
3257 proc ls_tree
{w tree_id name
} {
3258 global browser_buffer browser_files browser_stack browser_busy
3260 set browser_buffer
($w) {}
3261 set browser_files
($w) {}
3262 set browser_busy
($w) 1
3264 $w conf
-state normal
3265 $w tag remove in_sel
0.0 end
3267 if {$browser_stack($w) ne
{}} {
3268 $w image create end \
3269 -align center
-padx 5 -pady 1 \
3272 $w insert end
{[Up To Parent
]}
3273 lappend browser_files
($w) parent
3275 lappend browser_stack
($w) [list
$tree_id $name]
3276 $w conf
-state disabled
3278 set cmd
[list git ls-tree
-z $tree_id]
3279 set fd
[open
"| $cmd" r
]
3280 fconfigure
$fd -blocking 0 -translation binary
-encoding binary
3281 fileevent
$fd readable
[list read_ls_tree
$fd $w]
3284 proc read_ls_tree
{fd w
} {
3285 global browser_buffer browser_files browser_status browser_busy
3287 if {![winfo exists
$w]} {
3292 append browser_buffer
($w) [read $fd]
3293 set pck
[split $browser_buffer($w) "\0"]
3294 set browser_buffer
($w) [lindex
$pck end
]
3296 set n
[llength
$browser_files($w)]
3297 $w conf
-state normal
3298 foreach p
[lrange
$pck 0 end-1
] {
3299 set info
[split $p "\t"]
3300 set path
[lindex
$info 1]
3301 set info
[split [lindex
$info 0] { }]
3302 set type [lindex
$info 1]
3303 set object
[lindex
$info 2]
3314 set image file_question
3318 if {$n > 0} {$w insert end
"\n"}
3319 $w image create end \
3320 -align center
-padx 5 -pady 1 \
3321 -name icon
[incr n
] \
3323 $w insert end
[escape_path
$path]
3324 lappend browser_files
($w) [list
$type $object $path]
3326 $w conf
-state disabled
3330 set browser_status
($w) Ready.
3331 set browser_busy
($w) 0
3332 array
unset browser_buffer
$w
3334 $w tag add in_sel
1.0 2.0
3340 proc show_blame
{commit path
} {
3341 global next_browser_id blame_status blame_data
3343 if {[winfo ismapped .
]} {
3344 set w .browser
[incr next_browser_id
]
3351 set blame_status
($w) {Loading current
file content...
}
3353 label
$w.path
-text "$commit:$path" \
3359 pack
$w.path
-side top
-fill x
3362 text
$w.out.loaded_t \
3363 -background white
-borderwidth 0 \
3369 $w.out.loaded_t tag conf annotated
-background grey
3371 text
$w.out.linenumber_t \
3372 -background white
-borderwidth 0 \
3378 $w.out.linenumber_t tag conf linenumber
-justify right
3380 text
$w.out.file_t \
3381 -background white
-borderwidth 0 \
3386 -xscrollcommand [list
$w.out.sbx
set] \
3389 scrollbar
$w.out.sbx
-orient h
-command [list
$w.out.file_t xview
]
3390 scrollbar
$w.out.sby
-orient v \
3391 -command [list scrollbar2many
[list \
3393 $w.out.linenumber_t \
3397 $w.out.linenumber_t \
3402 grid conf
$w.out.sbx
-column 2 -sticky we
3403 grid columnconfigure
$w.out
2 -weight 1
3404 grid rowconfigure
$w.out
0 -weight 1
3405 pack
$w.out
-fill both
-expand 1
3407 label
$w.status
-textvariable blame_status
($w) \
3413 pack
$w.status
-side bottom
-fill x
3417 -background white
-borderwidth 0 \
3422 -xscrollcommand [list
$w.cm.sbx
set] \
3423 -yscrollcommand [list
$w.cm.sby
set] \
3425 scrollbar
$w.cm.sbx
-orient h
-command [list
$w.cm.t xview
]
3426 scrollbar
$w.cm.sby
-orient v
-command [list
$w.cm.t yview
]
3427 pack
$w.cm.sby
-side right
-fill y
3428 pack
$w.cm.sbx
-side bottom
-fill x
3429 pack
$w.cm.t
-expand 1 -fill both
3430 pack
$w.cm
-side bottom
-fill x
3432 menu
$w.ctxm
-tearoff 0
3433 $w.ctxm add
command -label "Copy Commit" \
3435 -command "blame_copycommit $w \$cursorW @\$cursorX,\$cursorY"
3439 $w.out.linenumber_t \
3441 $i tag conf in_sel \
3442 -background [$i cget
-foreground] \
3443 -foreground [$i cget
-background]
3444 $i conf
-yscrollcommand \
3445 [list many2scrollbar
[list \
3447 $w.out.linenumber_t \
3450 bind $i <Button-1
> "
3453 $w.out.linenumber_t \\
3462 tk_popup $w.ctxm %X %Y
3466 bind $w.cm.t
<Button-1
> "focus $w.cm.t"
3467 bind $tl <Visibility
> "focus $tl"
3468 bind $tl <Destroy
> "
3469 array unset blame_status {$w}
3470 array unset blame_data $w,*
3472 wm title
$tl "[appname] ([reponame]): File Viewer"
3474 set blame_data
($w,commit_count
) 0
3475 set blame_data
($w,commit_list
) {}
3476 set blame_data
($w,total_lines
) 0
3477 set blame_data
($w,blame_lines
) 0
3478 set blame_data
($w,highlight_commit
) {}
3479 set blame_data
($w,highlight_line
) -1
3481 set cmd
[list git cat-file blob
"$commit:$path"]
3482 set fd
[open
"| $cmd" r
]
3483 fconfigure
$fd -blocking 0 -translation lf
-encoding binary
3484 fileevent
$fd readable
[list read_blame_catfile \
3485 $fd $w $commit $path \
3486 $w.cm.t
$w.out.loaded_t
$w.out.linenumber_t
$w.out.file_t
]
3489 proc read_blame_catfile
{fd w commit path w_cmit w_load w_line w_file
} {
3490 global blame_status blame_data
3492 if {![winfo exists
$w_file]} {
3497 set n
$blame_data($w,total_lines
)
3498 $w_load conf
-state normal
3499 $w_line conf
-state normal
3500 $w_file conf
-state normal
3501 while {[gets
$fd line
] >= 0} {
3502 regsub
"\r\$" $line {} line
3504 $w_load insert end
"\n"
3505 $w_line insert end
"$n\n" linenumber
3506 $w_file insert end
"$line\n"
3508 $w_load conf
-state disabled
3509 $w_line conf
-state disabled
3510 $w_file conf
-state disabled
3511 set blame_data
($w,total_lines
) $n
3515 blame_incremental_status
$w
3516 set cmd
[list git blame
-M -C --incremental]
3517 lappend cmd
$commit -- $path
3518 set fd
[open
"| $cmd" r
]
3519 fconfigure
$fd -blocking 0 -translation lf
-encoding binary
3520 fileevent
$fd readable
[list read_blame_incremental
$fd $w \
3521 $w_load $w_cmit $w_line $w_file]
3525 proc read_blame_incremental
{fd w w_load w_cmit w_line w_file
} {
3526 global blame_status blame_data
3528 if {![winfo exists
$w_file]} {
3533 while {[gets
$fd line
] >= 0} {
3534 if {[regexp
{^
([a-z0-9
]{40}) (\d
+) (\d
+) (\d
+)$
} $line line \
3535 cmit original_line final_line line_count
]} {
3536 set blame_data
($w,commit
) $cmit
3537 set blame_data
($w,original_line
) $original_line
3538 set blame_data
($w,final_line
) $final_line
3539 set blame_data
($w,line_count
) $line_count
3541 if {[catch
{set g
$blame_data($w,$cmit,order
)}]} {
3542 $w_line tag conf g
$cmit
3543 $w_file tag conf g
$cmit
3544 $w_line tag raise in_sel
3545 $w_file tag raise in_sel
3546 $w_file tag raise sel
3547 set blame_data
($w,$cmit,order
) $blame_data($w,commit_count
)
3548 incr blame_data
($w,commit_count
)
3549 lappend blame_data
($w,commit_list
) $cmit
3551 } elseif
{[string match
{filename
*} $line]} {
3552 set file [string range
$line 9 end
]
3553 set n
$blame_data($w,line_count
)
3554 set lno
$blame_data($w,final_line
)
3555 set cmit
$blame_data($w,commit
)
3558 if {[catch
{set g g
$blame_data($w,line
$lno,commit
)}]} {
3559 $w_load tag add annotated
$lno.0 "$lno.0 lineend + 1c"
3561 $w_line tag remove g
$g $lno.0 "$lno.0 lineend + 1c"
3562 $w_file tag remove g
$g $lno.0 "$lno.0 lineend + 1c"
3565 set blame_data
($w,line
$lno,commit
) $cmit
3566 set blame_data
($w,line
$lno,file) $file
3567 $w_line tag add g
$cmit $lno.0 "$lno.0 lineend + 1c"
3568 $w_file tag add g
$cmit $lno.0 "$lno.0 lineend + 1c"
3570 if {$blame_data($w,highlight_line
) == -1} {
3571 if {[lindex
[$w_file yview
] 0] == 0} {
3573 blame_showcommit
$w $w_cmit $w_line $w_file $lno
3575 } elseif
{$blame_data($w,highlight_line
) == $lno} {
3576 blame_showcommit
$w $w_cmit $w_line $w_file $lno
3581 incr blame_data
($w,blame_lines
)
3584 set hc
$blame_data($w,highlight_commit
)
3586 && [expr {$blame_data($w,$hc,order
) + 1}]
3587 == $blame_data($w,$cmit,order
)} {
3588 blame_showcommit
$w $w_cmit $w_line $w_file \
3589 $blame_data($w,highlight_line
)
3591 } elseif
{[regexp
{^
([a-z-
]+) (.
*)$
} $line line header data
]} {
3592 set blame_data
($w,$blame_data($w,commit
),$header) $data
3598 set blame_status
($w) {Annotation complete.
}
3600 blame_incremental_status
$w
3604 proc blame_incremental_status
{w
} {
3605 global blame_status blame_data
3607 set have
$blame_data($w,blame_lines
)
3608 set total
$blame_data($w,total_lines
)
3610 if {$total} {set pdone
[expr {100 * $have / $total}]}
3612 set blame_status
($w) [format \
3613 "Loading annotations... %i of %i lines annotated (%2i%%)" \
3614 $have $total $pdone]
3617 proc blame_click
{w w_cmit w_line w_file cur_w pos
} {
3618 set lno
[lindex
[split [$cur_w index
$pos] .
] 0]
3619 if {$lno eq
{}} return
3621 $w_line tag remove in_sel
0.0 end
3622 $w_file tag remove in_sel
0.0 end
3623 $w_line tag add in_sel
$lno.0 "$lno.0 + 1 line"
3624 $w_file tag add in_sel
$lno.0 "$lno.0 + 1 line"
3626 blame_showcommit
$w $w_cmit $w_line $w_file $lno
3635 proc blame_showcommit
{w w_cmit w_line w_file lno
} {
3636 global blame_colors blame_data repo_config
3638 set cmit
$blame_data($w,highlight_commit
)
3640 set idx
$blame_data($w,$cmit,order
)
3642 foreach c
$blame_colors {
3643 set h
[lindex
$blame_data($w,commit_list
) [expr {$idx - 1 + $i}]]
3644 $w_line tag conf g
$h -background white
3645 $w_file tag conf g
$h -background white
3650 $w_cmit conf
-state normal
3651 $w_cmit delete
0.0 end
3652 if {[catch
{set cmit
$blame_data($w,line
$lno,commit
)}]} {
3654 $w_cmit insert end
"Loading annotation..."
3656 set idx
$blame_data($w,$cmit,order
)
3658 foreach c
$blame_colors {
3659 set h
[lindex
$blame_data($w,commit_list
) [expr {$idx - 1 + $i}]]
3660 $w_line tag conf g
$h -background $c
3661 $w_file tag conf g
$h -background $c
3665 if {[catch
{set msg
$blame_data($w,$cmit,message
)}]} {
3668 set fd
[open
"| git cat-file commit $cmit" r
]
3669 fconfigure
$fd -encoding binary
-translation lf
3670 if {[catch
{set enc
$repo_config(i18n.commitencoding
)}]} {
3673 while {[gets
$fd line
] > 0} {
3674 if {[string match
{encoding
*} $line]} {
3675 set enc
[string tolower
[string range
$line 9 end
]]
3678 fconfigure
$fd -encoding $enc
3679 set msg
[string trim
[read $fd]]
3682 set blame_data
($w,$cmit,message
) $msg
3688 catch
{set author_name
$blame_data($w,$cmit,author
)}
3689 catch
{set author_email
$blame_data($w,$cmit,author-mail
)}
3690 catch
{set author_time
[clock format
$blame_data($w,$cmit,author-time
)]}
3692 set committer_name
{}
3693 set committer_email
{}
3694 set committer_time
{}
3695 catch
{set committer_name
$blame_data($w,$cmit,committer
)}
3696 catch
{set committer_email
$blame_data($w,$cmit,committer-mail
)}
3697 catch
{set committer_time
[clock format
$blame_data($w,$cmit,committer-time
)]}
3699 $w_cmit insert end
"commit $cmit\n"
3700 $w_cmit insert end
"Author: $author_name $author_email $author_time\n"
3701 $w_cmit insert end
"Committer: $committer_name $committer_email $committer_time\n"
3702 $w_cmit insert end
"Original File: [escape_path $blame_data($w,line$lno,file)]\n"
3703 $w_cmit insert end
"\n"
3704 $w_cmit insert end
$msg
3706 $w_cmit conf
-state disabled
3708 set blame_data
($w,highlight_line
) $lno
3709 set blame_data
($w,highlight_commit
) $cmit
3712 proc blame_copycommit
{w i pos
} {
3714 set lno
[lindex
[split [$i index
$pos] .
] 0]
3715 if {![catch
{set commit
$blame_data($w,line
$lno,commit
)}]} {
3724 ######################################################################
3729 #define mask_width 14
3730 #define mask_height 15
3731 static unsigned char mask_bits
[] = {
3732 0xfe, 0x1f, 0xfe, 0x1f, 0xfe, 0x1f, 0xfe, 0x1f, 0xfe, 0x1f, 0xfe, 0x1f,
3733 0xfe, 0x1f, 0xfe, 0x1f, 0xfe, 0x1f, 0xfe, 0x1f, 0xfe, 0x1f, 0xfe, 0x1f,
3734 0xfe, 0x1f, 0xfe, 0x1f, 0xfe, 0x1f};
3737 image create bitmap file_plain
-background white
-foreground black
-data {
3738 #define plain_width 14
3739 #define plain_height 15
3740 static unsigned char plain_bits
[] = {
3741 0xfe, 0x01, 0x02, 0x03, 0x02, 0x05, 0x02, 0x09, 0x02, 0x1f, 0x02, 0x10,
3742 0x02, 0x10, 0x02, 0x10, 0x02, 0x10, 0x02, 0x10, 0x02, 0x10, 0x02, 0x10,
3743 0x02, 0x10, 0x02, 0x10, 0xfe, 0x1f};
3744 } -maskdata $filemask
3746 image create bitmap file_mod
-background white
-foreground blue
-data {
3747 #define mod_width 14
3748 #define mod_height 15
3749 static unsigned char mod_bits
[] = {
3750 0xfe, 0x01, 0x02, 0x03, 0x7a, 0x05, 0x02, 0x09, 0x7a, 0x1f, 0x02, 0x10,
3751 0xfa, 0x17, 0x02, 0x10, 0xfa, 0x17, 0x02, 0x10, 0xfa, 0x17, 0x02, 0x10,
3752 0xfa, 0x17, 0x02, 0x10, 0xfe, 0x1f};
3753 } -maskdata $filemask
3755 image create bitmap file_fulltick
-background white
-foreground "#007000" -data {
3756 #define file_fulltick_width 14
3757 #define file_fulltick_height 15
3758 static unsigned char file_fulltick_bits
[] = {
3759 0xfe, 0x01, 0x02, 0x1a, 0x02, 0x0c, 0x02, 0x0c, 0x02, 0x16, 0x02, 0x16,
3760 0x02, 0x13, 0x00, 0x13, 0x86, 0x11, 0x8c, 0x11, 0xd8, 0x10, 0xf2, 0x10,
3761 0x62, 0x10, 0x02, 0x10, 0xfe, 0x1f};
3762 } -maskdata $filemask
3764 image create bitmap file_parttick
-background white
-foreground "#005050" -data {
3765 #define parttick_width 14
3766 #define parttick_height 15
3767 static unsigned char parttick_bits
[] = {
3768 0xfe, 0x01, 0x02, 0x03, 0x7a, 0x05, 0x02, 0x09, 0x7a, 0x1f, 0x02, 0x10,
3769 0x7a, 0x14, 0x02, 0x16, 0x02, 0x13, 0x8a, 0x11, 0xda, 0x10, 0x72, 0x10,
3770 0x22, 0x10, 0x02, 0x10, 0xfe, 0x1f};
3771 } -maskdata $filemask
3773 image create bitmap file_question
-background white
-foreground black
-data {
3774 #define file_question_width 14
3775 #define file_question_height 15
3776 static unsigned char file_question_bits
[] = {
3777 0xfe, 0x01, 0x02, 0x02, 0xe2, 0x04, 0xf2, 0x09, 0x1a, 0x1b, 0x0a, 0x13,
3778 0x82, 0x11, 0xc2, 0x10, 0x62, 0x10, 0x62, 0x10, 0x02, 0x10, 0x62, 0x10,
3779 0x62, 0x10, 0x02, 0x10, 0xfe, 0x1f};
3780 } -maskdata $filemask
3782 image create bitmap file_removed
-background white
-foreground red
-data {
3783 #define file_removed_width 14
3784 #define file_removed_height 15
3785 static unsigned char file_removed_bits
[] = {
3786 0xfe, 0x01, 0x02, 0x03, 0x02, 0x05, 0x02, 0x09, 0x02, 0x1f, 0x02, 0x10,
3787 0x1a, 0x16, 0x32, 0x13, 0xe2, 0x11, 0xc2, 0x10, 0xe2, 0x11, 0x32, 0x13,
3788 0x1a, 0x16, 0x02, 0x10, 0xfe, 0x1f};
3789 } -maskdata $filemask
3791 image create bitmap file_merge
-background white
-foreground blue
-data {
3792 #define file_merge_width 14
3793 #define file_merge_height 15
3794 static unsigned char file_merge_bits
[] = {
3795 0xfe, 0x01, 0x02, 0x03, 0x62, 0x05, 0x62, 0x09, 0x62, 0x1f, 0x62, 0x10,
3796 0xfa, 0x11, 0xf2, 0x10, 0x62, 0x10, 0x02, 0x10, 0xfa, 0x17, 0x02, 0x10,
3797 0xfa, 0x17, 0x02, 0x10, 0xfe, 0x1f};
3798 } -maskdata $filemask
3801 #define file_width 18
3802 #define file_height 18
3803 static unsigned char file_bits
[] = {
3804 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xf8, 0x03, 0x00,
3805 0x0c, 0x03, 0x00, 0x04, 0xfe, 0x00, 0x06, 0x80, 0x00, 0xff, 0x9f, 0x00,
3806 0x03, 0x98, 0x00, 0x02, 0x90, 0x00, 0x06, 0xb0, 0x00, 0x04, 0xa0, 0x00,
3807 0x0c, 0xe0, 0x00, 0x08, 0xc0, 0x00, 0xf8, 0xff, 0x00, 0x00, 0x00, 0x00,
3808 0x00, 0x00, 0x00, 0x00, 0x00, 0x00};
3810 image create bitmap file_dir
-background white
-foreground blue \
3811 -data $file_dir_data -maskdata $file_dir_data
3814 set file_uplevel_data
{
3816 #define up_height 15
3817 static unsigned char up_bits
[] = {
3818 0x80, 0x00, 0xc0, 0x01, 0xe0, 0x03, 0xf0, 0x07, 0xf8, 0x0f, 0xfc, 0x1f,
3819 0xfe, 0x3f, 0xc0, 0x01, 0xc0, 0x01, 0xc0, 0x01, 0xc0, 0x01, 0xc0, 0x01,
3820 0xc0, 0x01, 0xc0, 0x01, 0x00, 0x00};
3822 image create bitmap file_uplevel
-background white
-foreground red \
3823 -data $file_uplevel_data -maskdata $file_uplevel_data
3824 unset file_uplevel_data
3826 set ui_index .vpane.files.index.list
3827 set ui_workdir .vpane.files.workdir.list
3829 set all_icons
(_
$ui_index) file_plain
3830 set all_icons
(A
$ui_index) file_fulltick
3831 set all_icons
(M
$ui_index) file_fulltick
3832 set all_icons
(D
$ui_index) file_removed
3833 set all_icons
(U
$ui_index) file_merge
3835 set all_icons
(_
$ui_workdir) file_plain
3836 set all_icons
(M
$ui_workdir) file_mod
3837 set all_icons
(D
$ui_workdir) file_question
3838 set all_icons
(U
$ui_workdir) file_merge
3839 set all_icons
(O
$ui_workdir) file_plain
3841 set max_status_desc
0
3845 {_M
"Modified, not staged"}
3846 {M_
"Staged for commit"}
3847 {MM
"Portions staged for commit"}
3848 {MD
"Staged for commit, missing"}
3850 {_O
"Untracked, not staged"}
3851 {A_
"Staged for commit"}
3852 {AM
"Portions staged for commit"}
3853 {AD
"Staged for commit, missing"}
3856 {D_
"Staged for removal"}
3857 {DO
"Staged for removal, still present"}
3859 {U_
"Requires merge resolution"}
3860 {UU
"Requires merge resolution"}
3861 {UM
"Requires merge resolution"}
3862 {UD
"Requires merge resolution"}
3864 if {$max_status_desc < [string length
[lindex
$i 1]]} {
3865 set max_status_desc
[string length
[lindex
$i 1]]
3867 set all_descs
([lindex
$i 0]) [lindex
$i 1]
3871 ######################################################################
3875 proc bind_button3
{w cmd
} {
3876 bind $w <Any-Button-3
> $cmd
3878 bind $w <Control-Button-1
> $cmd
3882 proc scrollbar2many
{list mode args
} {
3883 foreach w
$list {eval $w $mode $args}
3886 proc many2scrollbar
{list mode sb top bottom
} {
3887 $sb set $top $bottom
3888 foreach w
$list {$w $mode moveto
$top}
3891 proc incr_font_size
{font
{amt
1}} {
3892 set sz
[font configure
$font -size]
3894 font configure
$font -size $sz
3895 font configure
${font}bold
-size $sz
3898 proc hook_failed_popup
{hook msg
} {
3903 label
$w.m.l1
-text "$hook hook failed:" \
3908 -background white
-borderwidth 1 \
3910 -width 80 -height 10 \
3912 -yscrollcommand [list
$w.m.sby
set]
3914 -text {You must correct the above errors before committing.
} \
3918 scrollbar
$w.m.sby
-command [list
$w.m.t yview
]
3919 pack
$w.m.l1
-side top
-fill x
3920 pack
$w.m.l2
-side bottom
-fill x
3921 pack
$w.m.sby
-side right
-fill y
3922 pack
$w.m.t
-side left
-fill both
-expand 1
3923 pack
$w.m
-side top
-fill both
-expand 1 -padx 5 -pady 10
3925 $w.m.t insert
1.0 $msg
3926 $w.m.t conf
-state disabled
3928 button
$w.ok
-text OK \
3931 -command "destroy $w"
3932 pack
$w.ok
-side bottom
-anchor e
-pady 10 -padx 10
3934 bind $w <Visibility
> "grab $w; focus $w"
3935 bind $w <Key-Return
> "destroy $w"
3936 wm title
$w "[appname] ([reponame]): error"
3940 set next_console_id
0
3942 proc new_console
{short_title long_title
} {
3943 global next_console_id console_data
3944 set w .console
[incr next_console_id
]
3945 set console_data
($w) [list
$short_title $long_title]
3946 return [console_init
$w]
3949 proc console_init
{w
} {
3950 global console_cr console_data M1B
3952 set console_cr
($w) 1.0
3955 label
$w.m.l1
-text "[lindex $console_data($w) 1]:" \
3960 -background white
-borderwidth 1 \
3962 -width 80 -height 10 \
3965 -yscrollcommand [list
$w.m.sby
set]
3966 label
$w.m.s
-text {Working... please
wait...
} \
3970 scrollbar
$w.m.sby
-command [list
$w.m.t yview
]
3971 pack
$w.m.l1
-side top
-fill x
3972 pack
$w.m.s
-side bottom
-fill x
3973 pack
$w.m.sby
-side right
-fill y
3974 pack
$w.m.t
-side left
-fill both
-expand 1
3975 pack
$w.m
-side top
-fill both
-expand 1 -padx 5 -pady 10
3977 menu
$w.ctxm
-tearoff 0
3978 $w.ctxm add
command -label "Copy" \
3980 -command "tk_textCopy $w.m.t"
3981 $w.ctxm add
command -label "Select All" \
3983 -command "focus $w.m.t;$w.m.t tag add sel 0.0 end"
3984 $w.ctxm add
command -label "Copy All" \
3987 $w.m.t tag add sel 0.0 end
3989 $w.m.t tag remove sel 0.0 end
3992 button
$w.ok
-text {Close
} \
3995 -command "destroy $w"
3996 pack
$w.ok
-side bottom
-anchor e
-pady 10 -padx 10
3998 bind_button3
$w.m.t
"tk_popup $w.ctxm %X %Y"
3999 bind $w.m.t
<$M1B-Key-a> "$w.m.t tag add sel 0.0 end;break"
4000 bind $w.m.t
<$M1B-Key-A> "$w.m.t tag add sel 0.0 end;break"
4001 bind $w <Visibility
> "focus $w"
4002 wm title
$w "[appname] ([reponame]): [lindex $console_data($w) 0]"
4006 proc console_exec
{w cmd after
} {
4007 # -- Cygwin's Tcl tosses the enviroment when we exec our child.
4008 # But most users need that so we have to relogin. :-(
4011 set cmd
[list sh
--login -c "cd \"[pwd]\" && [join $cmd { }]"]
4014 # -- Tcl won't let us redirect both stdout and stderr to
4015 # the same pipe. So pass it through cat...
4017 set cmd
[concat |
$cmd |
& cat]
4019 set fd_f
[open
$cmd r
]
4020 fconfigure
$fd_f -blocking 0 -translation binary
4021 fileevent
$fd_f readable
[list console_read
$w $fd_f $after]
4024 proc console_read
{w fd after
} {
4029 if {![winfo exists
$w]} {console_init
$w}
4030 $w.m.t conf
-state normal
4032 set n
[string length
$buf]
4034 set cr
[string first
"\r" $buf $c]
4035 set lf
[string first
"\n" $buf $c]
4036 if {$cr < 0} {set cr
[expr {$n + 1}]}
4037 if {$lf < 0} {set lf
[expr {$n + 1}]}
4040 $w.m.t insert end
[string range
$buf $c $lf]
4041 set console_cr
($w) [$w.m.t index
{end
-1c}]
4045 $w.m.t delete
$console_cr($w) end
4046 $w.m.t insert end
"\n"
4047 $w.m.t insert end
[string range
$buf $c $cr]
4052 $w.m.t conf
-state disabled
4056 fconfigure
$fd -blocking 1
4058 if {[catch
{close
$fd}]} {
4063 uplevel
#0 $after $w $ok
4066 fconfigure
$fd -blocking 0
4069 proc console_chain
{cmdlist w
{ok
1}} {
4071 if {[llength
$cmdlist] == 0} {
4076 set cmd
[lindex
$cmdlist 0]
4077 set cmdlist
[lrange
$cmdlist 1 end
]
4079 if {[lindex
$cmd 0] eq
{console_exec
}} {
4082 [list console_chain
$cmdlist]
4084 uplevel
#0 $cmd $cmdlist $w $ok
4091 proc console_done
{args
} {
4092 global console_cr console_data
4094 switch
-- [llength
$args] {
4096 set w
[lindex
$args 0]
4097 set ok
[lindex
$args 1]
4100 set w
[lindex
$args 1]
4101 set ok
[lindex
$args 2]
4104 error
"wrong number of args: console_done ?ignored? w ok"
4109 if {[winfo exists
$w]} {
4110 $w.m.s conf
-background green
-text {Success
}
4111 $w.ok conf
-state normal
4114 if {![winfo exists
$w]} {
4117 $w.m.s conf
-background red
-text {Error
: Command Failed
}
4118 $w.ok conf
-state normal
4121 array
unset console_cr
$w
4122 array
unset console_data
$w
4125 ######################################################################
4129 set starting_gitk_msg
{Starting gitk... please
wait...
}
4131 proc do_gitk
{revs
} {
4132 global env ui_status_value starting_gitk_msg
4134 # -- Always start gitk through whatever we were loaded with. This
4135 # lets us bypass using shell process on Windows systems.
4137 set cmd
[list
[info nameofexecutable
]]
4138 lappend cmd
[gitexec gitk
]
4144 if {[catch
{eval exec $cmd &} err
]} {
4145 error_popup
"Failed to start gitk:\n\n$err"
4147 set ui_status_value
$starting_gitk_msg
4149 if {$ui_status_value eq
$starting_gitk_msg} {
4150 set ui_status_value
{Ready.
}
4157 set fd
[open
"| git count-objects -v" r
]
4158 while {[gets
$fd line
] > 0} {
4159 if {[regexp
{^
([^
:]+): (\d
+)$
} $line _ name value
]} {
4160 set stats
($name) $value
4166 foreach p
[glob
-directory [gitdir objects pack
] \
4169 incr packed_sz
[file size
$p]
4171 if {$packed_sz > 0} {
4172 set stats
(size-pack
) [expr {$packed_sz / 1024}]
4177 wm geometry
$w "+[winfo rootx .]+[winfo rooty .]"
4179 label
$w.header
-text {Database Statistics
} \
4181 pack
$w.header
-side top
-fill x
4183 frame
$w.buttons
-border 1
4184 button
$w.buttons.close
-text Close \
4186 -command [list destroy
$w]
4187 button
$w.buttons.gc
-text {Compress Database
} \
4189 -command "destroy $w;do_gc"
4190 pack
$w.buttons.close
-side right
4191 pack
$w.buttons.gc
-side left
4192 pack
$w.buttons
-side bottom
-fill x
-pady 10 -padx 10
4194 frame
$w.stat
-borderwidth 1 -relief solid
4196 {count
{Number of loose objects
}}
4197 {size
{Disk space used by loose objects
} { KiB
}}
4198 {in-pack
{Number of packed objects
}}
4199 {packs
{Number of packs
}}
4200 {size-pack
{Disk space used by packed objects
} { KiB
}}
4201 {prune-packable
{Packed objects waiting
for pruning
}}
4202 {garbage
{Garbage files
}}
4204 set name
[lindex
$s 0]
4205 set label
[lindex
$s 1]
4206 if {[catch
{set value
$stats($name)}]} continue
4207 if {[llength
$s] > 2} {
4208 set value
"$value[lindex $s 2]"
4211 label
$w.stat.l_
$name -text "$label:" -anchor w
-font font_ui
4212 label
$w.stat.v_
$name -text $value -anchor w
-font font_ui
4213 grid
$w.stat.l_
$name $w.stat.v_
$name -sticky we
-padx {0 5}
4215 pack
$w.stat
-pady 10 -padx 10
4217 bind $w <Visibility
> "grab $w; focus $w"
4218 bind $w <Key-Escape
> [list destroy
$w]
4219 bind $w <Key-Return
> [list destroy
$w]
4220 wm title
$w "[appname] ([reponame]): Database Statistics"
4225 set w
[new_console
{gc
} {Compressing the object database
}]
4227 {console_exec
{git pack-refs
--prune}}
4228 {console_exec
{git reflog expire
--all}}
4229 {console_exec
{git repack
-a -d -l}}
4230 {console_exec
{git rerere gc
}}
4234 proc do_fsck_objects
{} {
4235 set w
[new_console
{fsck-objects
} \
4236 {Verifying the object database with fsck-objects
}]
4237 set cmd
[list git fsck-objects
]
4240 lappend cmd
--strict
4241 console_exec
$w $cmd console_done
4247 global ui_comm is_quitting repo_config commit_type
4249 if {$is_quitting} return
4252 if {[winfo exists
$ui_comm]} {
4253 # -- Stash our current commit buffer.
4255 set save
[gitdir GITGUI_MSG
]
4256 set msg
[string trim
[$ui_comm get
0.0 end
]]
4257 regsub
-all -line {[ \r\t]+$
} $msg {} msg
4258 if {(![string match amend
* $commit_type]
4259 ||
[$ui_comm edit modified
])
4262 set fd
[open
$save w
]
4263 puts
-nonewline $fd $msg
4267 catch
{file delete
$save}
4270 # -- Stash our current window geometry into this repository.
4272 set cfg_geometry
[list
]
4273 lappend cfg_geometry
[wm geometry .
]
4274 lappend cfg_geometry
[lindex
[.vpane sash coord
0] 1]
4275 lappend cfg_geometry
[lindex
[.vpane.files sash coord
0] 0]
4276 if {[catch
{set rc_geometry
$repo_config(gui.geometry
)}]} {
4279 if {$cfg_geometry ne
$rc_geometry} {
4280 catch
{git config gui.geometry
$cfg_geometry}
4288 rescan
{set ui_status_value
{Ready.
}}
4291 proc unstage_helper
{txt paths
} {
4292 global file_states current_diff_path
4294 if {![lock_index begin-update
]} return
4298 foreach path
$paths {
4299 switch
-glob -- [lindex
$file_states($path) 0] {
4303 lappend pathList
$path
4304 if {$path eq
$current_diff_path} {
4305 set after
{reshow_diff
;}
4310 if {$pathList eq
{}} {
4316 [concat
$after {set ui_status_value
{Ready.
}}]
4320 proc do_unstage_selection
{} {
4321 global current_diff_path selected_paths
4323 if {[array size selected_paths
] > 0} {
4325 {Unstaging selected files from commit
} \
4326 [array names selected_paths
]
4327 } elseif
{$current_diff_path ne
{}} {
4329 "Unstaging [short_path $current_diff_path] from commit" \
4330 [list
$current_diff_path]
4334 proc add_helper
{txt paths
} {
4335 global file_states current_diff_path
4337 if {![lock_index begin-update
]} return
4341 foreach path
$paths {
4342 switch
-glob -- [lindex
$file_states($path) 0] {
4347 lappend pathList
$path
4348 if {$path eq
$current_diff_path} {
4349 set after
{reshow_diff
;}
4354 if {$pathList eq
{}} {
4360 [concat
$after {set ui_status_value
{Ready to commit.
}}]
4364 proc do_add_selection
{} {
4365 global current_diff_path selected_paths
4367 if {[array size selected_paths
] > 0} {
4369 {Adding selected files
} \
4370 [array names selected_paths
]
4371 } elseif
{$current_diff_path ne
{}} {
4373 "Adding [short_path $current_diff_path]" \
4374 [list
$current_diff_path]
4378 proc do_add_all
{} {
4382 foreach path
[array names file_states
] {
4383 switch
-glob -- [lindex
$file_states($path) 0] {
4386 ?D
{lappend paths
$path}
4389 add_helper
{Adding all changed files
} $paths
4392 proc revert_helper
{txt paths
} {
4393 global file_states current_diff_path
4395 if {![lock_index begin-update
]} return
4399 foreach path
$paths {
4400 switch
-glob -- [lindex
$file_states($path) 0] {
4404 lappend pathList
$path
4405 if {$path eq
$current_diff_path} {
4406 set after
{reshow_diff
;}
4412 set n
[llength
$pathList]
4416 } elseif
{$n == 1} {
4417 set s
"[short_path [lindex $pathList]]"
4419 set s
"these $n files"
4422 set reply
[tk_dialog \
4424 "[appname] ([reponame])" \
4425 "Revert changes in $s?
4427 Any unadded changes will be permanently lost by the revert." \
4437 [concat
$after {set ui_status_value
{Ready.
}}]
4443 proc do_revert_selection
{} {
4444 global current_diff_path selected_paths
4446 if {[array size selected_paths
] > 0} {
4448 {Reverting selected files
} \
4449 [array names selected_paths
]
4450 } elseif
{$current_diff_path ne
{}} {
4452 "Reverting [short_path $current_diff_path]" \
4453 [list
$current_diff_path]
4457 proc do_signoff
{} {
4460 set me
[committer_ident
]
4461 if {$me eq
{}} return
4463 set sob
"Signed-off-by: $me"
4464 set last
[$ui_comm get
{end
-1c linestart
} {end
-1c}]
4465 if {$last ne
$sob} {
4466 $ui_comm edit separator
4468 && ![regexp
{^
[A-Z
][A-Za-z
]*-[A-Za-z-
]+: *} $last]} {
4469 $ui_comm insert end
"\n"
4471 $ui_comm insert end
"\n$sob"
4472 $ui_comm edit separator
4477 proc do_select_commit_type
{} {
4478 global commit_type selected_commit_type
4480 if {$selected_commit_type eq
{new
}
4481 && [string match amend
* $commit_type]} {
4483 } elseif
{$selected_commit_type eq
{amend
}
4484 && ![string match amend
* $commit_type]} {
4487 # The amend request was rejected...
4489 if {![string match amend
* $commit_type]} {
4490 set selected_commit_type new
4500 global appvers copyright
4501 global tcl_patchLevel tk_patchLevel
4505 wm geometry
$w "+[winfo rootx .]+[winfo rooty .]"
4507 label
$w.header
-text "About [appname]" \
4509 pack
$w.header
-side top
-fill x
4512 button
$w.buttons.close
-text {Close
} \
4514 -command [list destroy
$w]
4515 pack
$w.buttons.close
-side right
4516 pack
$w.buttons
-side bottom
-fill x
-pady 10 -padx 10
4519 -text "git-gui - a graphical user interface for Git.
4527 pack
$w.desc
-side top
-fill x
-padx 5 -pady 5
4530 append v
"git-gui version $appvers\n"
4531 append v
"[git version]\n"
4533 if {$tcl_patchLevel eq
$tk_patchLevel} {
4534 append v
"Tcl/Tk version $tcl_patchLevel"
4536 append v
"Tcl version $tcl_patchLevel"
4537 append v
", Tk version $tk_patchLevel"
4548 pack
$w.vers
-side top
-fill x
-padx 5 -pady 5
4550 menu
$w.ctxm
-tearoff 0
4551 $w.ctxm add
command \
4556 clipboard append -format STRING -type STRING -- \[$w.vers cget -text\]
4559 bind $w <Visibility
> "grab $w; focus $w"
4560 bind $w <Key-Escape
> "destroy $w"
4561 bind_button3
$w.vers
"tk_popup $w.ctxm %X %Y; grab $w; focus $w"
4562 wm title
$w "About [appname]"
4566 proc do_options
{} {
4567 global repo_config global_config font_descs
4568 global repo_config_new global_config_new
4570 array
unset repo_config_new
4571 array
unset global_config_new
4572 foreach name
[array names repo_config
] {
4573 set repo_config_new
($name) $repo_config($name)
4576 foreach name
[array names repo_config
] {
4578 gui.diffcontext
{continue}
4580 set repo_config_new
($name) $repo_config($name)
4582 foreach name
[array names global_config
] {
4583 set global_config_new
($name) $global_config($name)
4586 set w .options_editor
4588 wm geometry
$w "+[winfo rootx .]+[winfo rooty .]"
4590 label
$w.header
-text "Options" \
4592 pack
$w.header
-side top
-fill x
4595 button
$w.buttons.restore
-text {Restore Defaults
} \
4597 -command do_restore_defaults
4598 pack
$w.buttons.restore
-side left
4599 button
$w.buttons.save
-text Save \
4601 -command [list do_save_config
$w]
4602 pack
$w.buttons.save
-side right
4603 button
$w.buttons.cancel
-text {Cancel
} \
4605 -command [list destroy
$w]
4606 pack
$w.buttons.cancel
-side right
-padx 5
4607 pack
$w.buttons
-side bottom
-fill x
-pady 10 -padx 10
4609 labelframe
$w.repo
-text "[reponame] Repository" \
4611 labelframe
$w.global
-text {Global
(All Repositories
)} \
4613 pack
$w.repo
-side left
-fill both
-expand 1 -pady 5 -padx 5
4614 pack
$w.global
-side right
-fill both
-expand 1 -pady 5 -padx 5
4618 {t user.name
{User Name
}}
4619 {t user.email
{Email Address
}}
4621 {b merge.summary
{Summarize Merge Commits
}}
4622 {i-1.
.5 merge.verbosity
{Merge Verbosity
}}
4624 {b gui.trustmtime
{Trust File Modification Timestamps
}}
4625 {i-1.
.99 gui.diffcontext
{Number of Diff Context Lines
}}
4626 {t gui.newbranchtemplate
{New Branch Name Template
}}
4628 set type [lindex
$option 0]
4629 set name
[lindex
$option 1]
4630 set text
[lindex
$option 2]
4632 foreach f
{repo global
} {
4633 switch
-glob -- $type {
4635 checkbutton
$w.
$f.
$optid -text $text \
4636 -variable ${f}_config_new
($name) \
4640 pack
$w.
$f.
$optid -side top
-anchor w
4643 regexp
-- {-(\d
+)\.\.
(\d
+)$
} $type _junk min max
4645 label
$w.
$f.
$optid.l
-text "$text:" -font font_ui
4646 pack
$w.
$f.
$optid.l
-side left
-anchor w
-fill x
4647 spinbox
$w.
$f.
$optid.v \
4648 -textvariable ${f}_config_new
($name) \
4652 -width [expr {1 + [string length
$max]}] \
4654 bind $w.
$f.
$optid.v
<FocusIn
> {%W selection range
0 end
}
4655 pack
$w.
$f.
$optid.v
-side right
-anchor e
-padx 5
4656 pack
$w.
$f.
$optid -side top
-anchor w
-fill x
4660 label
$w.
$f.
$optid.l
-text "$text:" -font font_ui
4661 entry
$w.
$f.
$optid.v \
4665 -textvariable ${f}_config_new
($name) \
4667 pack
$w.
$f.
$optid.l
-side left
-anchor w
4668 pack
$w.
$f.
$optid.v
-side left
-anchor w \
4671 pack
$w.
$f.
$optid -side top
-anchor w
-fill x
4677 set all_fonts
[lsort
[font families
]]
4678 foreach option
$font_descs {
4679 set name
[lindex
$option 0]
4680 set font
[lindex
$option 1]
4681 set text
[lindex
$option 2]
4683 set global_config_new
(gui.
$font^^family
) \
4684 [font configure
$font -family]
4685 set global_config_new
(gui.
$font^^size
) \
4686 [font configure
$font -size]
4688 frame
$w.global.
$name
4689 label
$w.global.
$name.l
-text "$text:" -font font_ui
4690 pack
$w.global.
$name.l
-side left
-anchor w
-fill x
4691 eval tk_optionMenu
$w.global.
$name.family \
4692 global_config_new
(gui.
$font^^family
) \
4694 spinbox
$w.global.
$name.size \
4695 -textvariable global_config_new
(gui.
$font^^size
) \
4696 -from 2 -to 80 -increment 1 \
4699 bind $w.global.
$name.size
<FocusIn
> {%W selection range
0 end
}
4700 pack
$w.global.
$name.size
-side right
-anchor e
4701 pack
$w.global.
$name.family
-side right
-anchor e
4702 pack
$w.global.
$name -side top
-anchor w
-fill x
4705 bind $w <Visibility
> "grab $w; focus $w"
4706 bind $w <Key-Escape
> "destroy $w"
4707 wm title
$w "[appname] ([reponame]): Options"
4711 proc do_restore_defaults
{} {
4712 global font_descs default_config repo_config
4713 global repo_config_new global_config_new
4715 foreach name
[array names default_config
] {
4716 set repo_config_new
($name) $default_config($name)
4717 set global_config_new
($name) $default_config($name)
4720 foreach option
$font_descs {
4721 set name
[lindex
$option 0]
4722 set repo_config
(gui.
$name) $default_config(gui.
$name)
4726 foreach option
$font_descs {
4727 set name
[lindex
$option 0]
4728 set font
[lindex
$option 1]
4729 set global_config_new
(gui.
$font^^family
) \
4730 [font configure
$font -family]
4731 set global_config_new
(gui.
$font^^size
) \
4732 [font configure
$font -size]
4736 proc do_save_config
{w
} {
4737 if {[catch
{save_config
} err
]} {
4738 error_popup
"Failed to completely save options:\n\n$err"
4744 proc do_windows_shortcut
{} {
4747 set fn
[tk_getSaveFile \
4749 -title "[appname] ([reponame]): Create Desktop Icon" \
4750 -initialfile "Git [reponame].bat"]
4754 puts
$fd "@ECHO Entering [reponame]"
4755 puts
$fd "@ECHO Starting git-gui... please wait..."
4756 puts
$fd "@SET PATH=[file normalize [gitexec]];%PATH%"
4757 puts
$fd "@SET GIT_DIR=[file normalize [gitdir]]"
4758 puts
-nonewline $fd "@\"[info nameofexecutable]\""
4759 puts
$fd " \"[file normalize $argv0]\""
4762 error_popup
"Cannot write script:\n\n$err"
4767 proc do_cygwin_shortcut
{} {
4771 set desktop
[exec cygpath \
4779 set fn
[tk_getSaveFile \
4781 -title "[appname] ([reponame]): Create Desktop Icon" \
4782 -initialdir $desktop \
4783 -initialfile "Git [reponame].bat"]
4787 set sh
[exec cygpath \
4791 set me
[exec cygpath \
4795 set gd
[exec cygpath \
4799 set gw
[exec cygpath \
4802 [file dirname [gitdir
]]]
4803 regsub
-all ' $me "'\\''" me
4804 regsub -all ' $gd "'\\''" gd
4805 puts $fd "@ECHO Entering $gw"
4806 puts $fd "@ECHO Starting git-gui... please wait..."
4807 puts -nonewline $fd "@\"$sh\" --login -c \""
4808 puts -nonewline $fd "GIT_DIR='$gd'"
4809 puts -nonewline $fd " '$me'"
4813 error_popup "Cannot write script:\n\n$err"
4818 proc do_macosx_app {} {
4821 set fn [tk_getSaveFile \
4823 -title "[appname] ([reponame]): Create Desktop Icon" \
4824 -initialdir [file join $env(HOME) Desktop] \
4825 -initialfile "Git [reponame].app"]
4828 set Contents [file join $fn Contents]
4829 set MacOS [file join $Contents MacOS]
4830 set exe [file join $MacOS git-gui]
4834 set fd [open [file join $Contents Info.plist] w]
4835 puts $fd {<?xml version="1.0" encoding="UTF-8"?>
4836 <!DOCTYPE plist PUBLIC "-//Apple Computer//DTD PLIST 1.0//EN" "http://www.apple.com/DTDs/PropertyList-1.0.dtd">
4837 <plist version="1.0">
4839 <key>CFBundleDevelopmentRegion</key>
4840 <string>English</string>
4841 <key>CFBundleExecutable</key>
4842 <string>git-gui</string>
4843 <key>CFBundleIdentifier</key>
4844 <string>org.spearce.git-gui</string>
4845 <key>CFBundleInfoDictionaryVersion</key>
4846 <string>6.0</string>
4847 <key>CFBundlePackageType</key>
4848 <string>APPL</string>
4849 <key>CFBundleSignature</key>
4850 <string>????</string>
4851 <key>CFBundleVersion</key>
4852 <string>1.0</string>
4853 <key>NSPrincipalClass</key>
4854 <string>NSApplication</string>
4859 set fd [open $exe w]
4860 set gd [file normalize [gitdir]]
4861 set ep [file normalize [gitexec]]
4862 regsub -all ' $gd "'\\''" gd
4863 regsub
-all ' $ep "'\\''" ep
4864 puts $fd "#!/bin/sh"
4865 foreach name
[array names env
] {
4866 if {[string match GIT_
* $name]} {
4867 regsub
-all ' $env($name) "'\\''" v
4868 puts $fd "export $name='$v'"
4871 puts $fd "export PATH
='$ep':\
$PATH"
4872 puts $fd "export GIT_DIR
='$gd'"
4873 puts $fd "exec [file normalize
$argv0]"
4876 file attributes $exe -permissions u+x,g+x,o+x
4878 error_popup "Cannot
write icon
:\n\n$err"
4883 proc toggle_or_diff {w x y} {
4884 global file_states file_lists current_diff_path ui_index ui_workdir
4885 global last_clicked selected_paths
4887 set pos [split [$w index @$x,$y] .]
4888 set lno [lindex $pos 0]
4889 set col [lindex $pos 1]
4890 set path [lindex $file_lists($w) [expr {$lno - 1}]]
4896 set last_clicked [list $w $lno]
4897 array unset selected_paths
4898 $ui_index tag remove in_sel 0.0 end
4899 $ui_workdir tag remove in_sel 0.0 end
4902 if {$current_diff_path eq $path} {
4903 set after {reshow_diff;}
4907 if {$w eq $ui_index} {
4909 "Unstaging
[short_path
$path] from commit
" \
4911 [concat $after {set ui_status_value {Ready.}}]
4912 } elseif {$w eq $ui_workdir} {
4914 "Adding
[short_path
$path]" \
4916 [concat $after {set ui_status_value {Ready.}}]
4919 show_diff $path $w $lno
4923 proc add_one_to_selection {w x y} {
4924 global file_lists last_clicked selected_paths
4926 set lno [lindex [split [$w index @$x,$y] .] 0]
4927 set path [lindex $file_lists($w) [expr {$lno - 1}]]
4933 if {$last_clicked ne {}
4934 && [lindex $last_clicked 0] ne $w} {
4935 array unset selected_paths
4936 [lindex $last_clicked 0] tag remove in_sel 0.0 end
4939 set last_clicked [list $w $lno]
4940 if {[catch {set in_sel $selected_paths($path)}]} {
4944 unset selected_paths($path)
4945 $w tag remove in_sel $lno.0 [expr {$lno + 1}].0
4947 set selected_paths($path) 1
4948 $w tag add in_sel $lno.0 [expr {$lno + 1}].0
4952 proc add_range_to_selection {w x y} {
4953 global file_lists last_clicked selected_paths
4955 if {[lindex $last_clicked 0] ne $w} {
4956 toggle_or_diff $w $x $y
4960 set lno [lindex [split [$w index @$x,$y] .] 0]
4961 set lc [lindex $last_clicked 1]
4970 foreach path [lrange $file_lists($w) \
4971 [expr {$begin - 1}] \
4972 [expr {$end - 1}]] {
4973 set selected_paths($path) 1
4975 $w tag add in_sel $begin.0 [expr {$end + 1}].0
4978 ######################################################################
4982 set cursor_ptr arrow
4983 font create font_diff -family Courier -size 10
4987 eval font configure font_ui [font actual [.dummy cget -font]]
4991 font create font_uibold
4992 font create font_diffbold
4997 } elseif {[is_MacOSX]} {
5005 proc apply_config {} {
5006 global repo_config font_descs
5008 foreach option $font_descs {
5009 set name [lindex $option 0]
5010 set font [lindex $option 1]
5012 foreach {cn cv} $repo_config(gui.$name) {
5013 font configure $font $cn $cv
5016 error_popup "Invalid font specified
in gui.
$name:\n\n$err"
5018 foreach {cn cv} [font configure $font] {
5019 font configure ${font}bold $cn $cv
5021 font configure ${font}bold -weight bold
5025 set default_config(merge.summary) false
5026 set default_config(merge.verbosity) 2
5027 set default_config(user.name) {}
5028 set default_config(user.email) {}
5030 set default_config(gui.trustmtime) false
5031 set default_config(gui.diffcontext) 5
5032 set default_config(gui.newbranchtemplate) {}
5033 set default_config(gui.fontui) [font configure font_ui]
5034 set default_config(gui.fontdiff) [font configure font_diff]
5036 {fontui font_ui {Main Font}}
5037 {fontdiff font_diff {Diff/Console Font}}
5042 ######################################################################
5044 ## feature option selection
5046 if {[regexp {^git-(.+)$} [appname] _junk subcommand]} {
5051 if {$subcommand eq {gui.sh}} {
5054 if {$subcommand eq {gui} && [llength $argv] > 0} {
5055 set subcommand [lindex $argv 0]
5056 set argv [lrange $argv 1 end]
5059 enable_option multicommit
5060 enable_option branch
5061 enable_option transport
5063 switch -- $subcommand {
5066 disable_option multicommit
5067 disable_option branch
5068 disable_option transport
5071 enable_option singlecommit
5073 disable_option multicommit
5074 disable_option branch
5075 disable_option transport
5079 ######################################################################
5087 menu .mbar -tearoff 0
5088 .mbar add cascade -label Repository -menu .mbar.repository
5089 .mbar add cascade -label Edit -menu .mbar.edit
5090 if {[is_enabled branch]} {
5091 .mbar add cascade -label Branch -menu .mbar.branch
5093 if {[is_enabled multicommit] || [is_enabled singlecommit]} {
5094 .mbar add cascade -label Commit -menu .mbar.commit
5096 if {[is_enabled transport]} {
5097 .mbar add cascade -label Merge -menu .mbar.merge
5098 .mbar add cascade -label Fetch -menu .mbar.fetch
5099 .mbar add cascade -label Push -menu .mbar.push
5101 . configure -menu .mbar
5103 # -- Repository Menu
5105 menu .mbar.repository
5107 .mbar.repository add command \
5108 -label {Browse Current Branch} \
5109 -command {new_browser $current_branch} \
5111 trace add variable current_branch write ".mbar.repository entryconf
[.mbar.repository index last
] -label \"Browse \
$current_branch\" ;#"
5112 .mbar.repository add separator
5114 .mbar.repository add
command \
5115 -label {Visualize Current Branch
} \
5116 -command {do_gitk
$current_branch} \
5118 trace add variable current_branch
write ".mbar.repository entryconf [.mbar.repository index last] -label \"Visualize \$current_branch\" ;#"
5119 .mbar.repository add
command \
5120 -label {Visualize All Branches
} \
5121 -command {do_gitk
--all} \
5123 .mbar.repository add separator
5125 if {[is_enabled multicommit
]} {
5126 .mbar.repository add
command -label {Database Statistics
} \
5130 .mbar.repository add
command -label {Compress Database
} \
5134 .mbar.repository add
command -label {Verify Database
} \
5135 -command do_fsck_objects \
5138 .mbar.repository add separator
5141 .mbar.repository add
command \
5142 -label {Create Desktop Icon
} \
5143 -command do_cygwin_shortcut \
5145 } elseif
{[is_Windows
]} {
5146 .mbar.repository add
command \
5147 -label {Create Desktop Icon
} \
5148 -command do_windows_shortcut \
5150 } elseif
{[is_MacOSX
]} {
5151 .mbar.repository add
command \
5152 -label {Create Desktop Icon
} \
5153 -command do_macosx_app \
5158 .mbar.repository add
command -label Quit \
5160 -accelerator $M1T-Q \
5166 .mbar.edit add
command -label Undo \
5167 -command {catch
{[focus
] edit undo
}} \
5168 -accelerator $M1T-Z \
5170 .mbar.edit add
command -label Redo \
5171 -command {catch
{[focus
] edit redo
}} \
5172 -accelerator $M1T-Y \
5174 .mbar.edit add separator
5175 .mbar.edit add
command -label Cut \
5176 -command {catch
{tk_textCut
[focus
]}} \
5177 -accelerator $M1T-X \
5179 .mbar.edit add
command -label Copy \
5180 -command {catch
{tk_textCopy
[focus
]}} \
5181 -accelerator $M1T-C \
5183 .mbar.edit add
command -label Paste \
5184 -command {catch
{tk_textPaste
[focus
]; [focus
] see insert
}} \
5185 -accelerator $M1T-V \
5187 .mbar.edit add
command -label Delete \
5188 -command {catch
{[focus
] delete sel.first sel.last
}} \
5191 .mbar.edit add separator
5192 .mbar.edit add
command -label {Select All
} \
5193 -command {catch
{[focus
] tag add sel
0.0 end
}} \
5194 -accelerator $M1T-A \
5199 if {[is_enabled branch
]} {
5202 .mbar.branch add
command -label {Create...
} \
5203 -command do_create_branch \
5204 -accelerator $M1T-N \
5206 lappend disable_on_lock
[list .mbar.branch entryconf \
5207 [.mbar.branch index last
] -state]
5209 .mbar.branch add
command -label {Delete...
} \
5210 -command do_delete_branch \
5212 lappend disable_on_lock
[list .mbar.branch entryconf \
5213 [.mbar.branch index last
] -state]
5215 .mbar.branch add
command -label {Reset...
} \
5216 -command do_reset_hard \
5218 lappend disable_on_lock
[list .mbar.branch entryconf \
5219 [.mbar.branch index last
] -state]
5224 if {[is_enabled multicommit
] ||
[is_enabled singlecommit
]} {
5227 .mbar.commit add radiobutton \
5228 -label {New Commit
} \
5229 -command do_select_commit_type \
5230 -variable selected_commit_type \
5233 lappend disable_on_lock \
5234 [list .mbar.commit entryconf
[.mbar.commit index last
] -state]
5236 .mbar.commit add radiobutton \
5237 -label {Amend Last Commit
} \
5238 -command do_select_commit_type \
5239 -variable selected_commit_type \
5242 lappend disable_on_lock \
5243 [list .mbar.commit entryconf
[.mbar.commit index last
] -state]
5245 .mbar.commit add separator
5247 .mbar.commit add
command -label Rescan \
5248 -command do_rescan \
5251 lappend disable_on_lock \
5252 [list .mbar.commit entryconf
[.mbar.commit index last
] -state]
5254 .mbar.commit add
command -label {Add To Commit
} \
5255 -command do_add_selection \
5257 lappend disable_on_lock \
5258 [list .mbar.commit entryconf
[.mbar.commit index last
] -state]
5260 .mbar.commit add
command -label {Add Existing To Commit
} \
5261 -command do_add_all \
5262 -accelerator $M1T-I \
5264 lappend disable_on_lock \
5265 [list .mbar.commit entryconf
[.mbar.commit index last
] -state]
5267 .mbar.commit add
command -label {Unstage From Commit
} \
5268 -command do_unstage_selection \
5270 lappend disable_on_lock \
5271 [list .mbar.commit entryconf
[.mbar.commit index last
] -state]
5273 .mbar.commit add
command -label {Revert Changes
} \
5274 -command do_revert_selection \
5276 lappend disable_on_lock \
5277 [list .mbar.commit entryconf
[.mbar.commit index last
] -state]
5279 .mbar.commit add separator
5281 .mbar.commit add
command -label {Sign Off
} \
5282 -command do_signoff \
5283 -accelerator $M1T-S \
5286 .mbar.commit add
command -label Commit \
5287 -command do_commit \
5288 -accelerator $M1T-Return \
5290 lappend disable_on_lock \
5291 [list .mbar.commit entryconf
[.mbar.commit index last
] -state]
5296 if {[is_enabled branch
]} {
5298 .mbar.merge add
command -label {Local Merge...
} \
5299 -command do_local_merge \
5301 lappend disable_on_lock \
5302 [list .mbar.merge entryconf
[.mbar.merge index last
] -state]
5303 .mbar.merge add
command -label {Abort Merge...
} \
5304 -command do_reset_hard \
5306 lappend disable_on_lock \
5307 [list .mbar.merge entryconf
[.mbar.merge index last
] -state]
5313 if {[is_enabled transport
]} {
5317 .mbar.push add
command -label {Push...
} \
5318 -command do_push_anywhere \
5323 # -- Apple Menu (Mac OS X only)
5325 .mbar add cascade
-label Apple
-menu .mbar.apple
5328 .mbar.apple add
command -label "About [appname]" \
5331 .mbar.apple add
command -label "Options..." \
5332 -command do_options \
5337 .mbar.edit add separator
5338 .mbar.edit add
command -label {Options...
} \
5339 -command do_options \
5344 if {[file exists
/usr
/local
/miga
/lib
/gui-miga
]
5345 && [file exists .pvcsrc
]} {
5347 global ui_status_value
5348 if {![lock_index update
]} return
5349 set cmd
[list sh
--login -c "/usr/local/miga/lib/gui-miga \"[pwd]\""]
5350 set miga_fd
[open
"|$cmd" r
]
5351 fconfigure
$miga_fd -blocking 0
5352 fileevent
$miga_fd readable
[list miga_done
$miga_fd]
5353 set ui_status_value
{Running miga...
}
5355 proc miga_done
{fd
} {
5360 rescan
[list
set ui_status_value
{Ready.
}]
5363 .mbar add cascade
-label Tools
-menu .mbar.tools
5365 .mbar.tools add
command -label "Migrate" \
5368 lappend disable_on_lock \
5369 [list .mbar.tools entryconf
[.mbar.tools index last
] -state]
5375 .mbar add cascade
-label Help
-menu .mbar.
help
5379 .mbar.
help add
command -label "About [appname]" \
5385 catch
{set browser
$repo_config(instaweb.browser
)}
5386 set doc_path
[file dirname [gitexec
]]
5387 set doc_path
[file join $doc_path Documentation index.html
]
5390 set doc_path
[exec cygpath
--mixed $doc_path]
5393 if {$browser eq
{}} {
5396 } elseif
{[is_Cygwin
]} {
5397 set program_files
[file dirname [exec cygpath
--windir]]
5398 set program_files
[file join $program_files {Program Files
}]
5399 set firefox
[file join $program_files {Mozilla Firefox
} firefox.exe
]
5400 set ie
[file join $program_files {Internet Explorer
} IEXPLORE.EXE
]
5401 if {[file exists
$firefox]} {
5402 set browser
$firefox
5403 } elseif
{[file exists
$ie]} {
5406 unset program_files firefox ie
5410 if {[file isfile
$doc_path]} {
5411 set doc_url
"file:$doc_path"
5413 set doc_url
{http
://www.kernel.org
/pub
/software
/scm
/git
/docs
/}
5416 if {$browser ne
{}} {
5417 .mbar.
help add
command -label {Online Documentation
} \
5418 -command [list
exec $browser $doc_url &] \
5421 unset browser doc_path doc_url
5423 # -- Standard bindings
5425 bind .
<Destroy
> do_quit
5426 bind all
<$M1B-Key-q> do_quit
5427 bind all
<$M1B-Key-Q> do_quit
5428 bind all
<$M1B-Key-w> {destroy
[winfo toplevel
%W
]}
5429 bind all
<$M1B-Key-W> {destroy
[winfo toplevel
%W
]}
5431 # -- Not a normal commit type invocation? Do that instead!
5433 switch
-- $subcommand {
5435 if {[llength
$argv] != 1} {
5436 puts stderr
"usage: $argv0 browser commit"
5439 set current_branch
[lindex
$argv 0]
5440 new_browser
$current_branch
5444 if {[llength
$argv] != 2} {
5445 puts stderr
"usage: $argv0 blame commit path"
5448 set current_branch
[lindex
$argv 0]
5449 show_blame
$current_branch [lindex
$argv 1]
5454 if {[llength
$argv] != 0} {
5455 puts
-nonewline stderr
"usage: $argv0"
5456 if {$subcommand ne
{gui
} && [appname
] ne
"git-$subcommand"} {
5457 puts
-nonewline stderr
" $subcommand"
5462 # fall through to setup UI for commits
5465 puts stderr
"usage: $argv0 \[{blame|browser|citool}\]"
5476 -text {Current Branch
:} \
5481 -textvariable current_branch \
5485 pack .branch.l1
-side left
5486 pack .branch.cb
-side left
-fill x
5487 pack .branch
-side top
-fill x
5489 # -- Main Window Layout
5491 panedwindow .vpane
-orient vertical
5492 panedwindow .vpane.files
-orient horizontal
5493 .vpane add .vpane.files
-sticky nsew
-height 100 -width 200
5494 pack .vpane
-anchor n
-side top
-fill both
-expand 1
5496 # -- Index File List
5498 frame .vpane.files.index
-height 100 -width 200
5499 label .vpane.files.index.title
-text {Changes To Be Committed
} \
5502 text
$ui_index -background white
-borderwidth 0 \
5503 -width 20 -height 10 \
5506 -cursor $cursor_ptr \
5507 -xscrollcommand {.vpane.files.index.sx
set} \
5508 -yscrollcommand {.vpane.files.index.sy
set} \
5510 scrollbar .vpane.files.index.sx
-orient h
-command [list
$ui_index xview
]
5511 scrollbar .vpane.files.index.sy
-orient v
-command [list
$ui_index yview
]
5512 pack .vpane.files.index.title
-side top
-fill x
5513 pack .vpane.files.index.sx
-side bottom
-fill x
5514 pack .vpane.files.index.sy
-side right
-fill y
5515 pack
$ui_index -side left
-fill both
-expand 1
5516 .vpane.files add .vpane.files.index
-sticky nsew
5518 # -- Working Directory File List
5520 frame .vpane.files.workdir
-height 100 -width 200
5521 label .vpane.files.workdir.title
-text {Changed But Not Updated
} \
5524 text
$ui_workdir -background white
-borderwidth 0 \
5525 -width 20 -height 10 \
5528 -cursor $cursor_ptr \
5529 -xscrollcommand {.vpane.files.workdir.sx
set} \
5530 -yscrollcommand {.vpane.files.workdir.sy
set} \
5532 scrollbar .vpane.files.workdir.sx
-orient h
-command [list
$ui_workdir xview
]
5533 scrollbar .vpane.files.workdir.sy
-orient v
-command [list
$ui_workdir yview
]
5534 pack .vpane.files.workdir.title
-side top
-fill x
5535 pack .vpane.files.workdir.sx
-side bottom
-fill x
5536 pack .vpane.files.workdir.sy
-side right
-fill y
5537 pack
$ui_workdir -side left
-fill both
-expand 1
5538 .vpane.files add .vpane.files.workdir
-sticky nsew
5540 foreach i
[list
$ui_index $ui_workdir] {
5541 $i tag conf in_diff
-font font_uibold
5542 $i tag conf in_sel \
5543 -background [$i cget
-foreground] \
5544 -foreground [$i cget
-background]
5548 # -- Diff and Commit Area
5550 frame .vpane.lower
-height 300 -width 400
5551 frame .vpane.lower.commarea
5552 frame .vpane.lower.
diff -relief sunken
-borderwidth 1
5553 pack .vpane.lower.commarea
-side top
-fill x
5554 pack .vpane.lower.
diff -side bottom
-fill both
-expand 1
5555 .vpane add .vpane.lower
-sticky nsew
5557 # -- Commit Area Buttons
5559 frame .vpane.lower.commarea.buttons
5560 label .vpane.lower.commarea.buttons.l
-text {} \
5564 pack .vpane.lower.commarea.buttons.l
-side top
-fill x
5565 pack .vpane.lower.commarea.buttons
-side left
-fill y
5567 button .vpane.lower.commarea.buttons.rescan
-text {Rescan
} \
5568 -command do_rescan \
5570 pack .vpane.lower.commarea.buttons.rescan
-side top
-fill x
5571 lappend disable_on_lock \
5572 {.vpane.lower.commarea.buttons.rescan conf
-state}
5574 button .vpane.lower.commarea.buttons.incall
-text {Add Existing
} \
5575 -command do_add_all \
5577 pack .vpane.lower.commarea.buttons.incall
-side top
-fill x
5578 lappend disable_on_lock \
5579 {.vpane.lower.commarea.buttons.incall conf
-state}
5581 button .vpane.lower.commarea.buttons.signoff
-text {Sign Off
} \
5582 -command do_signoff \
5584 pack .vpane.lower.commarea.buttons.signoff
-side top
-fill x
5586 button .vpane.lower.commarea.buttons.commit
-text {Commit
} \
5587 -command do_commit \
5589 pack .vpane.lower.commarea.buttons.commit
-side top
-fill x
5590 lappend disable_on_lock \
5591 {.vpane.lower.commarea.buttons.commit conf
-state}
5593 # -- Commit Message Buffer
5595 frame .vpane.lower.commarea.buffer
5596 frame .vpane.lower.commarea.buffer.header
5597 set ui_comm .vpane.lower.commarea.buffer.t
5598 set ui_coml .vpane.lower.commarea.buffer.header.l
5599 radiobutton .vpane.lower.commarea.buffer.header.new \
5600 -text {New Commit
} \
5601 -command do_select_commit_type \
5602 -variable selected_commit_type \
5605 lappend disable_on_lock \
5606 [list .vpane.lower.commarea.buffer.header.new conf
-state]
5607 radiobutton .vpane.lower.commarea.buffer.header.amend \
5608 -text {Amend Last Commit
} \
5609 -command do_select_commit_type \
5610 -variable selected_commit_type \
5613 lappend disable_on_lock \
5614 [list .vpane.lower.commarea.buffer.header.amend conf
-state]
5619 proc trace_commit_type
{varname args
} {
5620 global ui_coml commit_type
5621 switch
-glob -- $commit_type {
5622 initial
{set txt
{Initial Commit Message
:}}
5623 amend
{set txt
{Amended Commit Message
:}}
5624 amend-initial
{set txt
{Amended Initial Commit Message
:}}
5625 amend-merge
{set txt
{Amended Merge Commit Message
:}}
5626 merge
{set txt
{Merge Commit Message
:}}
5627 * {set txt
{Commit Message
:}}
5629 $ui_coml conf
-text $txt
5631 trace add variable commit_type
write trace_commit_type
5632 pack
$ui_coml -side left
-fill x
5633 pack .vpane.lower.commarea.buffer.header.amend
-side right
5634 pack .vpane.lower.commarea.buffer.header.new
-side right
5636 text
$ui_comm -background white
-borderwidth 1 \
5639 -autoseparators true \
5641 -width 75 -height 9 -wrap none \
5643 -yscrollcommand {.vpane.lower.commarea.buffer.sby
set}
5644 scrollbar .vpane.lower.commarea.buffer.sby \
5645 -command [list
$ui_comm yview
]
5646 pack .vpane.lower.commarea.buffer.header
-side top
-fill x
5647 pack .vpane.lower.commarea.buffer.sby
-side right
-fill y
5648 pack
$ui_comm -side left
-fill y
5649 pack .vpane.lower.commarea.buffer
-side left
-fill y
5651 # -- Commit Message Buffer Context Menu
5653 set ctxm .vpane.lower.commarea.buffer.ctxm
5654 menu
$ctxm -tearoff 0
5658 -command {tk_textCut
$ui_comm}
5662 -command {tk_textCopy
$ui_comm}
5666 -command {tk_textPaste
$ui_comm}
5670 -command {$ui_comm delete sel.first sel.last
}
5673 -label {Select All
} \
5675 -command {focus
$ui_comm;$ui_comm tag add sel
0.0 end
}
5680 $ui_comm tag add sel
0.0 end
5681 tk_textCopy
$ui_comm
5682 $ui_comm tag remove sel
0.0 end
5689 bind_button3
$ui_comm "tk_popup $ctxm %X %Y"
5693 proc trace_current_diff_path
{varname args
} {
5694 global current_diff_path diff_actions file_states
5695 if {$current_diff_path eq
{}} {
5701 set p
$current_diff_path
5702 set s
[mapdesc
[lindex
$file_states($p) 0] $p]
5704 set p
[escape_path
$p]
5708 .vpane.lower.
diff.header.status configure
-text $s
5709 .vpane.lower.
diff.header.
file configure
-text $f
5710 .vpane.lower.
diff.header.path configure
-text $p
5711 foreach w
$diff_actions {
5715 trace add variable current_diff_path
write trace_current_diff_path
5717 frame .vpane.lower.
diff.header
-background orange
5718 label .vpane.lower.
diff.header.status \
5719 -background orange \
5720 -width $max_status_desc \
5724 label .vpane.lower.
diff.header.
file \
5725 -background orange \
5729 label .vpane.lower.
diff.header.path \
5730 -background orange \
5734 pack .vpane.lower.
diff.header.status
-side left
5735 pack .vpane.lower.
diff.header.
file -side left
5736 pack .vpane.lower.
diff.header.path
-fill x
5737 set ctxm .vpane.lower.
diff.header.ctxm
5738 menu
$ctxm -tearoff 0
5747 -- $current_diff_path
5749 lappend diff_actions
[list
$ctxm entryconf
[$ctxm index last
] -state]
5750 bind_button3 .vpane.lower.
diff.header.path
"tk_popup $ctxm %X %Y"
5754 frame .vpane.lower.
diff.body
5755 set ui_diff .vpane.lower.
diff.body.t
5756 text
$ui_diff -background white
-borderwidth 0 \
5757 -width 80 -height 15 -wrap none \
5759 -xscrollcommand {.vpane.lower.
diff.body.sbx
set} \
5760 -yscrollcommand {.vpane.lower.
diff.body.sby
set} \
5762 scrollbar .vpane.lower.
diff.body.sbx
-orient horizontal \
5763 -command [list
$ui_diff xview
]
5764 scrollbar .vpane.lower.
diff.body.sby
-orient vertical \
5765 -command [list
$ui_diff yview
]
5766 pack .vpane.lower.
diff.body.sbx
-side bottom
-fill x
5767 pack .vpane.lower.
diff.body.sby
-side right
-fill y
5768 pack
$ui_diff -side left
-fill both
-expand 1
5769 pack .vpane.lower.
diff.header
-side top
-fill x
5770 pack .vpane.lower.
diff.body
-side bottom
-fill both
-expand 1
5772 $ui_diff tag conf d_cr
-elide true
5773 $ui_diff tag conf d_@
-foreground blue
-font font_diffbold
5774 $ui_diff tag conf d_
+ -foreground {#00a000}
5775 $ui_diff tag conf d_-
-foreground red
5777 $ui_diff tag conf d_
++ -foreground {#00a000}
5778 $ui_diff tag conf d_--
-foreground red
5779 $ui_diff tag conf d_
+s \
5780 -foreground {#00a000} \
5781 -background {#e2effa}
5782 $ui_diff tag conf d_-s \
5784 -background {#e2effa}
5785 $ui_diff tag conf d_s
+ \
5786 -foreground {#00a000} \
5788 $ui_diff tag conf d_s- \
5792 $ui_diff tag conf d
<<<<<<< \
5793 -foreground orange \
5795 $ui_diff tag conf d
======= \
5796 -foreground orange \
5798 $ui_diff tag conf d
>>>>>>> \
5799 -foreground orange \
5802 $ui_diff tag raise sel
5804 # -- Diff Body Context Menu
5806 set ctxm .vpane.lower.
diff.body.ctxm
5807 menu
$ctxm -tearoff 0
5811 -command reshow_diff
5812 lappend diff_actions
[list
$ctxm entryconf
[$ctxm index last
] -state]
5816 -command {tk_textCopy
$ui_diff}
5817 lappend diff_actions
[list
$ctxm entryconf
[$ctxm index last
] -state]
5819 -label {Select All
} \
5821 -command {focus
$ui_diff;$ui_diff tag add sel
0.0 end
}
5822 lappend diff_actions
[list
$ctxm entryconf
[$ctxm index last
] -state]
5827 $ui_diff tag add sel
0.0 end
5828 tk_textCopy
$ui_diff
5829 $ui_diff tag remove sel
0.0 end
5831 lappend diff_actions
[list
$ctxm entryconf
[$ctxm index last
] -state]
5834 -label {Apply
/Reverse Hunk
} \
5836 -command {apply_hunk
$cursorX $cursorY}
5837 set ui_diff_applyhunk
[$ctxm index last
]
5838 lappend diff_actions
[list
$ctxm entryconf
$ui_diff_applyhunk -state]
5841 -label {Decrease Font Size
} \
5843 -command {incr_font_size font_diff
-1}
5844 lappend diff_actions
[list
$ctxm entryconf
[$ctxm index last
] -state]
5846 -label {Increase Font Size
} \
5848 -command {incr_font_size font_diff
1}
5849 lappend diff_actions
[list
$ctxm entryconf
[$ctxm index last
] -state]
5852 -label {Show Less Context
} \
5854 -command {if {$repo_config(gui.diffcontext
) >= 2} {
5855 incr repo_config
(gui.diffcontext
) -1
5858 lappend diff_actions
[list
$ctxm entryconf
[$ctxm index last
] -state]
5860 -label {Show More Context
} \
5863 incr repo_config
(gui.diffcontext
)
5866 lappend diff_actions
[list
$ctxm entryconf
[$ctxm index last
] -state]
5868 $ctxm add
command -label {Options...
} \
5871 bind_button3
$ui_diff "
5874 if {\$ui_index eq \$current_diff_side} {
5875 $ctxm entryconf $ui_diff_applyhunk -label {Unstage Hunk From Commit}
5877 $ctxm entryconf $ui_diff_applyhunk -label {Stage Hunk For Commit}
5879 tk_popup $ctxm %X %Y
5881 unset ui_diff_applyhunk
5885 label .status
-textvariable ui_status_value \
5891 pack .status
-anchor w
-side bottom
-fill x
5896 set gm
$repo_config(gui.geometry
)
5897 wm geometry .
[lindex
$gm 0]
5898 .vpane sash place
0 \
5899 [lindex
[.vpane sash coord
0] 0] \
5901 .vpane.files sash place
0 \
5903 [lindex
[.vpane.files sash coord
0] 1]
5909 bind $ui_comm <$M1B-Key-Return> {do_commit
;break}
5910 bind $ui_comm <$M1B-Key-i> {do_add_all
;break}
5911 bind $ui_comm <$M1B-Key-I> {do_add_all
;break}
5912 bind $ui_comm <$M1B-Key-x> {tk_textCut
%W
;break}
5913 bind $ui_comm <$M1B-Key-X> {tk_textCut
%W
;break}
5914 bind $ui_comm <$M1B-Key-c> {tk_textCopy
%W
;break}
5915 bind $ui_comm <$M1B-Key-C> {tk_textCopy
%W
;break}
5916 bind $ui_comm <$M1B-Key-v> {tk_textPaste
%W
; %W see insert
; break}
5917 bind $ui_comm <$M1B-Key-V> {tk_textPaste
%W
; %W see insert
; break}
5918 bind $ui_comm <$M1B-Key-a> {%W tag add sel
0.0 end
;break}
5919 bind $ui_comm <$M1B-Key-A> {%W tag add sel
0.0 end
;break}
5921 bind $ui_diff <$M1B-Key-x> {tk_textCopy
%W
;break}
5922 bind $ui_diff <$M1B-Key-X> {tk_textCopy
%W
;break}
5923 bind $ui_diff <$M1B-Key-c> {tk_textCopy
%W
;break}
5924 bind $ui_diff <$M1B-Key-C> {tk_textCopy
%W
;break}
5925 bind $ui_diff <$M1B-Key-v> {break}
5926 bind $ui_diff <$M1B-Key-V> {break}
5927 bind $ui_diff <$M1B-Key-a> {%W tag add sel
0.0 end
;break}
5928 bind $ui_diff <$M1B-Key-A> {%W tag add sel
0.0 end
;break}
5929 bind $ui_diff <Key-Up
> {catch
{%W yview scroll
-1 units
};break}
5930 bind $ui_diff <Key-Down
> {catch
{%W yview scroll
1 units
};break}
5931 bind $ui_diff <Key-Left
> {catch
{%W xview scroll
-1 units
};break}
5932 bind $ui_diff <Key-Right
> {catch
{%W xview scroll
1 units
};break}
5933 bind $ui_diff <Button-1
> {focus
%W
}
5935 if {[is_enabled branch
]} {
5936 bind .
<$M1B-Key-n> do_create_branch
5937 bind .
<$M1B-Key-N> do_create_branch
5940 bind all
<Key-F5
> do_rescan
5941 bind all
<$M1B-Key-r> do_rescan
5942 bind all
<$M1B-Key-R> do_rescan
5943 bind .
<$M1B-Key-s> do_signoff
5944 bind .
<$M1B-Key-S> do_signoff
5945 bind .
<$M1B-Key-i> do_add_all
5946 bind .
<$M1B-Key-I> do_add_all
5947 bind .
<$M1B-Key-Return> do_commit
5948 foreach i
[list
$ui_index $ui_workdir] {
5949 bind $i <Button-1
> "toggle_or_diff $i %x %y; break"
5950 bind $i <$M1B-Button-1> "add_one_to_selection $i %x %y; break"
5951 bind $i <Shift-Button-1
> "add_range_to_selection $i %x %y; break"
5955 set file_lists
($ui_index) [list
]
5956 set file_lists
($ui_workdir) [list
]
5958 wm title .
"[appname] ([file normalize [file dirname [gitdir]]])"
5959 focus
-force $ui_comm
5961 # -- Warn the user about environmental problems. Cygwin's Tcl
5962 # does *not* pass its env array onto any processes it spawns.
5963 # This means that git processes get none of our environment.
5968 set msg
"Possible environment issues exist.
5970 The following environment variables are probably
5971 going to be ignored by any Git subprocess run
5975 foreach name
[array names env
] {
5976 switch
-regexp -- $name {
5977 {^GIT_INDEX_FILE$
} -
5978 {^GIT_OBJECT_DIRECTORY$
} -
5979 {^GIT_ALTERNATE_OBJECT_DIRECTORIES$
} -
5981 {^GIT_EXTERNAL_DIFF$
} -
5985 {^GIT_CONFIG_LOCAL$
} -
5986 {^GIT_
(AUTHOR|COMMITTER
)_DATE$
} {
5987 append msg
" - $name\n"
5990 {^GIT_
(AUTHOR|COMMITTER
)_
(NAME|EMAIL
)$
} {
5991 append msg
" - $name\n"
5993 set suggest_user
$name
5997 if {$ignored_env > 0} {
5999 This is due to a known issue with the
6000 Tcl binary distributed by Cygwin."
6002 if {$suggest_user ne
{}} {
6005 A good replacement for $suggest_user
6006 is placing values for the user.name and
6007 user.email settings into your personal
6013 unset ignored_env msg suggest_user name
6016 # -- Only initialize complex UI if we are going to stay running.
6018 if {[is_enabled transport
]} {
6022 populate_branch_menu
6027 # -- Only suggest a gc run if we are going to stay running.
6029 if {[is_enabled multicommit
]} {
6030 set object_limit
2000
6031 if {[is_Windows
]} {set object_limit
200}
6032 regexp
{^
([0-9]+) objects
,} [git count-objects
] _junk objects_current
6033 if {$objects_current >= $object_limit} {
6035 "This repository currently has $objects_current loose objects.
6037 To maintain optimal performance it is strongly
6038 recommended that you compress the database
6039 when more than $object_limit loose objects exist.
6041 Compress the database now?"] eq
yes} {
6045 unset object_limit _junk objects_current
6048 lock_index begin-read