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 blame_status
($w) [format \
3608 "Loading annotations... %i of %i lines annotated (%2i%%)" \
3609 $blame_data($w,blame_lines
) \
3610 $blame_data($w,total_lines
) \
3611 [expr {100 * $blame_data($w,blame_lines
)
3612 / $blame_data($w,total_lines
)}]]
3615 proc blame_click
{w w_cmit w_line w_file cur_w pos
} {
3616 set lno
[lindex
[split [$cur_w index
$pos] .
] 0]
3617 if {$lno eq
{}} return
3619 $w_line tag remove in_sel
0.0 end
3620 $w_file tag remove in_sel
0.0 end
3621 $w_line tag add in_sel
$lno.0 "$lno.0 + 1 line"
3622 $w_file tag add in_sel
$lno.0 "$lno.0 + 1 line"
3624 blame_showcommit
$w $w_cmit $w_line $w_file $lno
3633 proc blame_showcommit
{w w_cmit w_line w_file lno
} {
3634 global blame_colors blame_data repo_config
3636 set cmit
$blame_data($w,highlight_commit
)
3638 set idx
$blame_data($w,$cmit,order
)
3640 foreach c
$blame_colors {
3641 set h
[lindex
$blame_data($w,commit_list
) [expr {$idx - 1 + $i}]]
3642 $w_line tag conf g
$h -background white
3643 $w_file tag conf g
$h -background white
3648 $w_cmit conf
-state normal
3649 $w_cmit delete
0.0 end
3650 if {[catch
{set cmit
$blame_data($w,line
$lno,commit
)}]} {
3652 $w_cmit insert end
"Loading annotation..."
3654 set idx
$blame_data($w,$cmit,order
)
3656 foreach c
$blame_colors {
3657 set h
[lindex
$blame_data($w,commit_list
) [expr {$idx - 1 + $i}]]
3658 $w_line tag conf g
$h -background $c
3659 $w_file tag conf g
$h -background $c
3663 if {[catch
{set msg
$blame_data($w,$cmit,message
)}]} {
3666 set fd
[open
"| git cat-file commit $cmit" r
]
3667 fconfigure
$fd -encoding binary
-translation lf
3668 if {[catch
{set enc
$repo_config(i18n.commitencoding
)}]} {
3671 while {[gets
$fd line
] > 0} {
3672 if {[string match
{encoding
*} $line]} {
3673 set enc
[string tolower
[string range
$line 9 end
]]
3676 fconfigure
$fd -encoding $enc
3677 set msg
[string trim
[read $fd]]
3680 set blame_data
($w,$cmit,message
) $msg
3686 catch
{set author_name
$blame_data($w,$cmit,author
)}
3687 catch
{set author_email
$blame_data($w,$cmit,author-mail
)}
3688 catch
{set author_time
[clock format
$blame_data($w,$cmit,author-time
)]}
3690 set committer_name
{}
3691 set committer_email
{}
3692 set committer_time
{}
3693 catch
{set committer_name
$blame_data($w,$cmit,committer
)}
3694 catch
{set committer_email
$blame_data($w,$cmit,committer-mail
)}
3695 catch
{set committer_time
[clock format
$blame_data($w,$cmit,committer-time
)]}
3697 $w_cmit insert end
"commit $cmit\n"
3698 $w_cmit insert end
"Author: $author_name $author_email $author_time\n"
3699 $w_cmit insert end
"Committer: $committer_name $committer_email $committer_time\n"
3700 $w_cmit insert end
"Original File: [escape_path $blame_data($w,line$lno,file)]\n"
3701 $w_cmit insert end
"\n"
3702 $w_cmit insert end
$msg
3704 $w_cmit conf
-state disabled
3706 set blame_data
($w,highlight_line
) $lno
3707 set blame_data
($w,highlight_commit
) $cmit
3710 proc blame_copycommit
{w i pos
} {
3712 set lno
[lindex
[split [$i index
$pos] .
] 0]
3713 if {![catch
{set commit
$blame_data($w,line
$lno,commit
)}]} {
3722 ######################################################################
3727 #define mask_width 14
3728 #define mask_height 15
3729 static unsigned char mask_bits
[] = {
3730 0xfe, 0x1f, 0xfe, 0x1f, 0xfe, 0x1f, 0xfe, 0x1f, 0xfe, 0x1f, 0xfe, 0x1f,
3731 0xfe, 0x1f, 0xfe, 0x1f, 0xfe, 0x1f, 0xfe, 0x1f, 0xfe, 0x1f, 0xfe, 0x1f,
3732 0xfe, 0x1f, 0xfe, 0x1f, 0xfe, 0x1f};
3735 image create bitmap file_plain
-background white
-foreground black
-data {
3736 #define plain_width 14
3737 #define plain_height 15
3738 static unsigned char plain_bits
[] = {
3739 0xfe, 0x01, 0x02, 0x03, 0x02, 0x05, 0x02, 0x09, 0x02, 0x1f, 0x02, 0x10,
3740 0x02, 0x10, 0x02, 0x10, 0x02, 0x10, 0x02, 0x10, 0x02, 0x10, 0x02, 0x10,
3741 0x02, 0x10, 0x02, 0x10, 0xfe, 0x1f};
3742 } -maskdata $filemask
3744 image create bitmap file_mod
-background white
-foreground blue
-data {
3745 #define mod_width 14
3746 #define mod_height 15
3747 static unsigned char mod_bits
[] = {
3748 0xfe, 0x01, 0x02, 0x03, 0x7a, 0x05, 0x02, 0x09, 0x7a, 0x1f, 0x02, 0x10,
3749 0xfa, 0x17, 0x02, 0x10, 0xfa, 0x17, 0x02, 0x10, 0xfa, 0x17, 0x02, 0x10,
3750 0xfa, 0x17, 0x02, 0x10, 0xfe, 0x1f};
3751 } -maskdata $filemask
3753 image create bitmap file_fulltick
-background white
-foreground "#007000" -data {
3754 #define file_fulltick_width 14
3755 #define file_fulltick_height 15
3756 static unsigned char file_fulltick_bits
[] = {
3757 0xfe, 0x01, 0x02, 0x1a, 0x02, 0x0c, 0x02, 0x0c, 0x02, 0x16, 0x02, 0x16,
3758 0x02, 0x13, 0x00, 0x13, 0x86, 0x11, 0x8c, 0x11, 0xd8, 0x10, 0xf2, 0x10,
3759 0x62, 0x10, 0x02, 0x10, 0xfe, 0x1f};
3760 } -maskdata $filemask
3762 image create bitmap file_parttick
-background white
-foreground "#005050" -data {
3763 #define parttick_width 14
3764 #define parttick_height 15
3765 static unsigned char parttick_bits
[] = {
3766 0xfe, 0x01, 0x02, 0x03, 0x7a, 0x05, 0x02, 0x09, 0x7a, 0x1f, 0x02, 0x10,
3767 0x7a, 0x14, 0x02, 0x16, 0x02, 0x13, 0x8a, 0x11, 0xda, 0x10, 0x72, 0x10,
3768 0x22, 0x10, 0x02, 0x10, 0xfe, 0x1f};
3769 } -maskdata $filemask
3771 image create bitmap file_question
-background white
-foreground black
-data {
3772 #define file_question_width 14
3773 #define file_question_height 15
3774 static unsigned char file_question_bits
[] = {
3775 0xfe, 0x01, 0x02, 0x02, 0xe2, 0x04, 0xf2, 0x09, 0x1a, 0x1b, 0x0a, 0x13,
3776 0x82, 0x11, 0xc2, 0x10, 0x62, 0x10, 0x62, 0x10, 0x02, 0x10, 0x62, 0x10,
3777 0x62, 0x10, 0x02, 0x10, 0xfe, 0x1f};
3778 } -maskdata $filemask
3780 image create bitmap file_removed
-background white
-foreground red
-data {
3781 #define file_removed_width 14
3782 #define file_removed_height 15
3783 static unsigned char file_removed_bits
[] = {
3784 0xfe, 0x01, 0x02, 0x03, 0x02, 0x05, 0x02, 0x09, 0x02, 0x1f, 0x02, 0x10,
3785 0x1a, 0x16, 0x32, 0x13, 0xe2, 0x11, 0xc2, 0x10, 0xe2, 0x11, 0x32, 0x13,
3786 0x1a, 0x16, 0x02, 0x10, 0xfe, 0x1f};
3787 } -maskdata $filemask
3789 image create bitmap file_merge
-background white
-foreground blue
-data {
3790 #define file_merge_width 14
3791 #define file_merge_height 15
3792 static unsigned char file_merge_bits
[] = {
3793 0xfe, 0x01, 0x02, 0x03, 0x62, 0x05, 0x62, 0x09, 0x62, 0x1f, 0x62, 0x10,
3794 0xfa, 0x11, 0xf2, 0x10, 0x62, 0x10, 0x02, 0x10, 0xfa, 0x17, 0x02, 0x10,
3795 0xfa, 0x17, 0x02, 0x10, 0xfe, 0x1f};
3796 } -maskdata $filemask
3799 #define file_width 18
3800 #define file_height 18
3801 static unsigned char file_bits
[] = {
3802 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xf8, 0x03, 0x00,
3803 0x0c, 0x03, 0x00, 0x04, 0xfe, 0x00, 0x06, 0x80, 0x00, 0xff, 0x9f, 0x00,
3804 0x03, 0x98, 0x00, 0x02, 0x90, 0x00, 0x06, 0xb0, 0x00, 0x04, 0xa0, 0x00,
3805 0x0c, 0xe0, 0x00, 0x08, 0xc0, 0x00, 0xf8, 0xff, 0x00, 0x00, 0x00, 0x00,
3806 0x00, 0x00, 0x00, 0x00, 0x00, 0x00};
3808 image create bitmap file_dir
-background white
-foreground blue \
3809 -data $file_dir_data -maskdata $file_dir_data
3812 set file_uplevel_data
{
3814 #define up_height 15
3815 static unsigned char up_bits
[] = {
3816 0x80, 0x00, 0xc0, 0x01, 0xe0, 0x03, 0xf0, 0x07, 0xf8, 0x0f, 0xfc, 0x1f,
3817 0xfe, 0x3f, 0xc0, 0x01, 0xc0, 0x01, 0xc0, 0x01, 0xc0, 0x01, 0xc0, 0x01,
3818 0xc0, 0x01, 0xc0, 0x01, 0x00, 0x00};
3820 image create bitmap file_uplevel
-background white
-foreground red \
3821 -data $file_uplevel_data -maskdata $file_uplevel_data
3822 unset file_uplevel_data
3824 set ui_index .vpane.files.index.list
3825 set ui_workdir .vpane.files.workdir.list
3827 set all_icons
(_
$ui_index) file_plain
3828 set all_icons
(A
$ui_index) file_fulltick
3829 set all_icons
(M
$ui_index) file_fulltick
3830 set all_icons
(D
$ui_index) file_removed
3831 set all_icons
(U
$ui_index) file_merge
3833 set all_icons
(_
$ui_workdir) file_plain
3834 set all_icons
(M
$ui_workdir) file_mod
3835 set all_icons
(D
$ui_workdir) file_question
3836 set all_icons
(U
$ui_workdir) file_merge
3837 set all_icons
(O
$ui_workdir) file_plain
3839 set max_status_desc
0
3843 {_M
"Modified, not staged"}
3844 {M_
"Staged for commit"}
3845 {MM
"Portions staged for commit"}
3846 {MD
"Staged for commit, missing"}
3848 {_O
"Untracked, not staged"}
3849 {A_
"Staged for commit"}
3850 {AM
"Portions staged for commit"}
3851 {AD
"Staged for commit, missing"}
3854 {D_
"Staged for removal"}
3855 {DO
"Staged for removal, still present"}
3857 {U_
"Requires merge resolution"}
3858 {UU
"Requires merge resolution"}
3859 {UM
"Requires merge resolution"}
3860 {UD
"Requires merge resolution"}
3862 if {$max_status_desc < [string length
[lindex
$i 1]]} {
3863 set max_status_desc
[string length
[lindex
$i 1]]
3865 set all_descs
([lindex
$i 0]) [lindex
$i 1]
3869 ######################################################################
3873 proc bind_button3
{w cmd
} {
3874 bind $w <Any-Button-3
> $cmd
3876 bind $w <Control-Button-1
> $cmd
3880 proc scrollbar2many
{list mode args
} {
3881 foreach w
$list {eval $w $mode $args}
3884 proc many2scrollbar
{list mode sb top bottom
} {
3885 $sb set $top $bottom
3886 foreach w
$list {$w $mode moveto
$top}
3889 proc incr_font_size
{font
{amt
1}} {
3890 set sz
[font configure
$font -size]
3892 font configure
$font -size $sz
3893 font configure
${font}bold
-size $sz
3896 proc hook_failed_popup
{hook msg
} {
3901 label
$w.m.l1
-text "$hook hook failed:" \
3906 -background white
-borderwidth 1 \
3908 -width 80 -height 10 \
3910 -yscrollcommand [list
$w.m.sby
set]
3912 -text {You must correct the above errors before committing.
} \
3916 scrollbar
$w.m.sby
-command [list
$w.m.t yview
]
3917 pack
$w.m.l1
-side top
-fill x
3918 pack
$w.m.l2
-side bottom
-fill x
3919 pack
$w.m.sby
-side right
-fill y
3920 pack
$w.m.t
-side left
-fill both
-expand 1
3921 pack
$w.m
-side top
-fill both
-expand 1 -padx 5 -pady 10
3923 $w.m.t insert
1.0 $msg
3924 $w.m.t conf
-state disabled
3926 button
$w.ok
-text OK \
3929 -command "destroy $w"
3930 pack
$w.ok
-side bottom
-anchor e
-pady 10 -padx 10
3932 bind $w <Visibility
> "grab $w; focus $w"
3933 bind $w <Key-Return
> "destroy $w"
3934 wm title
$w "[appname] ([reponame]): error"
3938 set next_console_id
0
3940 proc new_console
{short_title long_title
} {
3941 global next_console_id console_data
3942 set w .console
[incr next_console_id
]
3943 set console_data
($w) [list
$short_title $long_title]
3944 return [console_init
$w]
3947 proc console_init
{w
} {
3948 global console_cr console_data M1B
3950 set console_cr
($w) 1.0
3953 label
$w.m.l1
-text "[lindex $console_data($w) 1]:" \
3958 -background white
-borderwidth 1 \
3960 -width 80 -height 10 \
3963 -yscrollcommand [list
$w.m.sby
set]
3964 label
$w.m.s
-text {Working... please
wait...
} \
3968 scrollbar
$w.m.sby
-command [list
$w.m.t yview
]
3969 pack
$w.m.l1
-side top
-fill x
3970 pack
$w.m.s
-side bottom
-fill x
3971 pack
$w.m.sby
-side right
-fill y
3972 pack
$w.m.t
-side left
-fill both
-expand 1
3973 pack
$w.m
-side top
-fill both
-expand 1 -padx 5 -pady 10
3975 menu
$w.ctxm
-tearoff 0
3976 $w.ctxm add
command -label "Copy" \
3978 -command "tk_textCopy $w.m.t"
3979 $w.ctxm add
command -label "Select All" \
3981 -command "focus $w.m.t;$w.m.t tag add sel 0.0 end"
3982 $w.ctxm add
command -label "Copy All" \
3985 $w.m.t tag add sel 0.0 end
3987 $w.m.t tag remove sel 0.0 end
3990 button
$w.ok
-text {Close
} \
3993 -command "destroy $w"
3994 pack
$w.ok
-side bottom
-anchor e
-pady 10 -padx 10
3996 bind_button3
$w.m.t
"tk_popup $w.ctxm %X %Y"
3997 bind $w.m.t
<$M1B-Key-a> "$w.m.t tag add sel 0.0 end;break"
3998 bind $w.m.t
<$M1B-Key-A> "$w.m.t tag add sel 0.0 end;break"
3999 bind $w <Visibility
> "focus $w"
4000 wm title
$w "[appname] ([reponame]): [lindex $console_data($w) 0]"
4004 proc console_exec
{w cmd after
} {
4005 # -- Cygwin's Tcl tosses the enviroment when we exec our child.
4006 # But most users need that so we have to relogin. :-(
4009 set cmd
[list sh
--login -c "cd \"[pwd]\" && [join $cmd { }]"]
4012 # -- Tcl won't let us redirect both stdout and stderr to
4013 # the same pipe. So pass it through cat...
4015 set cmd
[concat |
$cmd |
& cat]
4017 set fd_f
[open
$cmd r
]
4018 fconfigure
$fd_f -blocking 0 -translation binary
4019 fileevent
$fd_f readable
[list console_read
$w $fd_f $after]
4022 proc console_read
{w fd after
} {
4027 if {![winfo exists
$w]} {console_init
$w}
4028 $w.m.t conf
-state normal
4030 set n
[string length
$buf]
4032 set cr
[string first
"\r" $buf $c]
4033 set lf
[string first
"\n" $buf $c]
4034 if {$cr < 0} {set cr
[expr {$n + 1}]}
4035 if {$lf < 0} {set lf
[expr {$n + 1}]}
4038 $w.m.t insert end
[string range
$buf $c $lf]
4039 set console_cr
($w) [$w.m.t index
{end
-1c}]
4043 $w.m.t delete
$console_cr($w) end
4044 $w.m.t insert end
"\n"
4045 $w.m.t insert end
[string range
$buf $c $cr]
4050 $w.m.t conf
-state disabled
4054 fconfigure
$fd -blocking 1
4056 if {[catch
{close
$fd}]} {
4061 uplevel
#0 $after $w $ok
4064 fconfigure
$fd -blocking 0
4067 proc console_chain
{cmdlist w
{ok
1}} {
4069 if {[llength
$cmdlist] == 0} {
4074 set cmd
[lindex
$cmdlist 0]
4075 set cmdlist
[lrange
$cmdlist 1 end
]
4077 if {[lindex
$cmd 0] eq
{console_exec
}} {
4080 [list console_chain
$cmdlist]
4082 uplevel
#0 $cmd $cmdlist $w $ok
4089 proc console_done
{args
} {
4090 global console_cr console_data
4092 switch
-- [llength
$args] {
4094 set w
[lindex
$args 0]
4095 set ok
[lindex
$args 1]
4098 set w
[lindex
$args 1]
4099 set ok
[lindex
$args 2]
4102 error
"wrong number of args: console_done ?ignored? w ok"
4107 if {[winfo exists
$w]} {
4108 $w.m.s conf
-background green
-text {Success
}
4109 $w.ok conf
-state normal
4112 if {![winfo exists
$w]} {
4115 $w.m.s conf
-background red
-text {Error
: Command Failed
}
4116 $w.ok conf
-state normal
4119 array
unset console_cr
$w
4120 array
unset console_data
$w
4123 ######################################################################
4127 set starting_gitk_msg
{Starting gitk... please
wait...
}
4129 proc do_gitk
{revs
} {
4130 global env ui_status_value starting_gitk_msg
4132 # -- Always start gitk through whatever we were loaded with. This
4133 # lets us bypass using shell process on Windows systems.
4135 set cmd
[info nameofexecutable
]
4136 lappend cmd
[gitexec gitk
]
4142 if {[catch
{eval exec $cmd &} err
]} {
4143 error_popup
"Failed to start gitk:\n\n$err"
4145 set ui_status_value
$starting_gitk_msg
4147 if {$ui_status_value eq
$starting_gitk_msg} {
4148 set ui_status_value
{Ready.
}
4155 set fd
[open
"| git count-objects -v" r
]
4156 while {[gets
$fd line
] > 0} {
4157 if {[regexp
{^
([^
:]+): (\d
+)$
} $line _ name value
]} {
4158 set stats
($name) $value
4164 foreach p
[glob
-directory [gitdir objects pack
] \
4167 incr packed_sz
[file size
$p]
4169 if {$packed_sz > 0} {
4170 set stats
(size-pack
) [expr {$packed_sz / 1024}]
4175 wm geometry
$w "+[winfo rootx .]+[winfo rooty .]"
4177 label
$w.header
-text {Database Statistics
} \
4179 pack
$w.header
-side top
-fill x
4181 frame
$w.buttons
-border 1
4182 button
$w.buttons.close
-text Close \
4184 -command [list destroy
$w]
4185 button
$w.buttons.gc
-text {Compress Database
} \
4187 -command "destroy $w;do_gc"
4188 pack
$w.buttons.close
-side right
4189 pack
$w.buttons.gc
-side left
4190 pack
$w.buttons
-side bottom
-fill x
-pady 10 -padx 10
4192 frame
$w.stat
-borderwidth 1 -relief solid
4194 {count
{Number of loose objects
}}
4195 {size
{Disk space used by loose objects
} { KiB
}}
4196 {in-pack
{Number of packed objects
}}
4197 {packs
{Number of packs
}}
4198 {size-pack
{Disk space used by packed objects
} { KiB
}}
4199 {prune-packable
{Packed objects waiting
for pruning
}}
4200 {garbage
{Garbage files
}}
4202 set name
[lindex
$s 0]
4203 set label
[lindex
$s 1]
4204 if {[catch
{set value
$stats($name)}]} continue
4205 if {[llength
$s] > 2} {
4206 set value
"$value[lindex $s 2]"
4209 label
$w.stat.l_
$name -text "$label:" -anchor w
-font font_ui
4210 label
$w.stat.v_
$name -text $value -anchor w
-font font_ui
4211 grid
$w.stat.l_
$name $w.stat.v_
$name -sticky we
-padx {0 5}
4213 pack
$w.stat
-pady 10 -padx 10
4215 bind $w <Visibility
> "grab $w; focus $w"
4216 bind $w <Key-Escape
> [list destroy
$w]
4217 bind $w <Key-Return
> [list destroy
$w]
4218 wm title
$w "[appname] ([reponame]): Database Statistics"
4223 set w
[new_console
{gc
} {Compressing the object database
}]
4225 {console_exec
{git pack-refs
--prune}}
4226 {console_exec
{git reflog expire
--all}}
4227 {console_exec
{git repack
-a -d -l}}
4228 {console_exec
{git rerere gc
}}
4232 proc do_fsck_objects
{} {
4233 set w
[new_console
{fsck-objects
} \
4234 {Verifying the object database with fsck-objects
}]
4235 set cmd
[list git fsck-objects
]
4238 lappend cmd
--strict
4239 console_exec
$w $cmd console_done
4245 global ui_comm is_quitting repo_config commit_type
4247 if {$is_quitting} return
4250 if {[winfo exists
$ui_comm]} {
4251 # -- Stash our current commit buffer.
4253 set save
[gitdir GITGUI_MSG
]
4254 set msg
[string trim
[$ui_comm get
0.0 end
]]
4255 regsub
-all -line {[ \r\t]+$
} $msg {} msg
4256 if {(![string match amend
* $commit_type]
4257 ||
[$ui_comm edit modified
])
4260 set fd
[open
$save w
]
4261 puts
-nonewline $fd $msg
4265 catch
{file delete
$save}
4268 # -- Stash our current window geometry into this repository.
4270 set cfg_geometry
[list
]
4271 lappend cfg_geometry
[wm geometry .
]
4272 lappend cfg_geometry
[lindex
[.vpane sash coord
0] 1]
4273 lappend cfg_geometry
[lindex
[.vpane.files sash coord
0] 0]
4274 if {[catch
{set rc_geometry
$repo_config(gui.geometry
)}]} {
4277 if {$cfg_geometry ne
$rc_geometry} {
4278 catch
{git config gui.geometry
$cfg_geometry}
4286 rescan
{set ui_status_value
{Ready.
}}
4289 proc unstage_helper
{txt paths
} {
4290 global file_states current_diff_path
4292 if {![lock_index begin-update
]} return
4296 foreach path
$paths {
4297 switch
-glob -- [lindex
$file_states($path) 0] {
4301 lappend pathList
$path
4302 if {$path eq
$current_diff_path} {
4303 set after
{reshow_diff
;}
4308 if {$pathList eq
{}} {
4314 [concat
$after {set ui_status_value
{Ready.
}}]
4318 proc do_unstage_selection
{} {
4319 global current_diff_path selected_paths
4321 if {[array size selected_paths
] > 0} {
4323 {Unstaging selected files from commit
} \
4324 [array names selected_paths
]
4325 } elseif
{$current_diff_path ne
{}} {
4327 "Unstaging [short_path $current_diff_path] from commit" \
4328 [list
$current_diff_path]
4332 proc add_helper
{txt paths
} {
4333 global file_states current_diff_path
4335 if {![lock_index begin-update
]} return
4339 foreach path
$paths {
4340 switch
-glob -- [lindex
$file_states($path) 0] {
4345 lappend pathList
$path
4346 if {$path eq
$current_diff_path} {
4347 set after
{reshow_diff
;}
4352 if {$pathList eq
{}} {
4358 [concat
$after {set ui_status_value
{Ready to commit.
}}]
4362 proc do_add_selection
{} {
4363 global current_diff_path selected_paths
4365 if {[array size selected_paths
] > 0} {
4367 {Adding selected files
} \
4368 [array names selected_paths
]
4369 } elseif
{$current_diff_path ne
{}} {
4371 "Adding [short_path $current_diff_path]" \
4372 [list
$current_diff_path]
4376 proc do_add_all
{} {
4380 foreach path
[array names file_states
] {
4381 switch
-glob -- [lindex
$file_states($path) 0] {
4384 ?D
{lappend paths
$path}
4387 add_helper
{Adding all changed files
} $paths
4390 proc revert_helper
{txt paths
} {
4391 global file_states current_diff_path
4393 if {![lock_index begin-update
]} return
4397 foreach path
$paths {
4398 switch
-glob -- [lindex
$file_states($path) 0] {
4402 lappend pathList
$path
4403 if {$path eq
$current_diff_path} {
4404 set after
{reshow_diff
;}
4410 set n
[llength
$pathList]
4414 } elseif
{$n == 1} {
4415 set s
"[short_path [lindex $pathList]]"
4417 set s
"these $n files"
4420 set reply
[tk_dialog \
4422 "[appname] ([reponame])" \
4423 "Revert changes in $s?
4425 Any unadded changes will be permanently lost by the revert." \
4435 [concat
$after {set ui_status_value
{Ready.
}}]
4441 proc do_revert_selection
{} {
4442 global current_diff_path selected_paths
4444 if {[array size selected_paths
] > 0} {
4446 {Reverting selected files
} \
4447 [array names selected_paths
]
4448 } elseif
{$current_diff_path ne
{}} {
4450 "Reverting [short_path $current_diff_path]" \
4451 [list
$current_diff_path]
4455 proc do_signoff
{} {
4458 set me
[committer_ident
]
4459 if {$me eq
{}} return
4461 set sob
"Signed-off-by: $me"
4462 set last
[$ui_comm get
{end
-1c linestart
} {end
-1c}]
4463 if {$last ne
$sob} {
4464 $ui_comm edit separator
4466 && ![regexp
{^
[A-Z
][A-Za-z
]*-[A-Za-z-
]+: *} $last]} {
4467 $ui_comm insert end
"\n"
4469 $ui_comm insert end
"\n$sob"
4470 $ui_comm edit separator
4475 proc do_select_commit_type
{} {
4476 global commit_type selected_commit_type
4478 if {$selected_commit_type eq
{new
}
4479 && [string match amend
* $commit_type]} {
4481 } elseif
{$selected_commit_type eq
{amend
}
4482 && ![string match amend
* $commit_type]} {
4485 # The amend request was rejected...
4487 if {![string match amend
* $commit_type]} {
4488 set selected_commit_type new
4498 global appvers copyright
4499 global tcl_patchLevel tk_patchLevel
4503 wm geometry
$w "+[winfo rootx .]+[winfo rooty .]"
4505 label
$w.header
-text "About [appname]" \
4507 pack
$w.header
-side top
-fill x
4510 button
$w.buttons.close
-text {Close
} \
4512 -command [list destroy
$w]
4513 pack
$w.buttons.close
-side right
4514 pack
$w.buttons
-side bottom
-fill x
-pady 10 -padx 10
4517 -text "git-gui - a graphical user interface for Git.
4525 pack
$w.desc
-side top
-fill x
-padx 5 -pady 5
4528 append v
"git-gui version $appvers\n"
4529 append v
"[git version]\n"
4531 if {$tcl_patchLevel eq
$tk_patchLevel} {
4532 append v
"Tcl/Tk version $tcl_patchLevel"
4534 append v
"Tcl version $tcl_patchLevel"
4535 append v
", Tk version $tk_patchLevel"
4546 pack
$w.vers
-side top
-fill x
-padx 5 -pady 5
4548 menu
$w.ctxm
-tearoff 0
4549 $w.ctxm add
command \
4554 clipboard append -format STRING -type STRING -- \[$w.vers cget -text\]
4557 bind $w <Visibility
> "grab $w; focus $w"
4558 bind $w <Key-Escape
> "destroy $w"
4559 bind_button3
$w.vers
"tk_popup $w.ctxm %X %Y; grab $w; focus $w"
4560 wm title
$w "About [appname]"
4564 proc do_options
{} {
4565 global repo_config global_config font_descs
4566 global repo_config_new global_config_new
4568 array
unset repo_config_new
4569 array
unset global_config_new
4570 foreach name
[array names repo_config
] {
4571 set repo_config_new
($name) $repo_config($name)
4574 foreach name
[array names repo_config
] {
4576 gui.diffcontext
{continue}
4578 set repo_config_new
($name) $repo_config($name)
4580 foreach name
[array names global_config
] {
4581 set global_config_new
($name) $global_config($name)
4584 set w .options_editor
4586 wm geometry
$w "+[winfo rootx .]+[winfo rooty .]"
4588 label
$w.header
-text "Options" \
4590 pack
$w.header
-side top
-fill x
4593 button
$w.buttons.restore
-text {Restore Defaults
} \
4595 -command do_restore_defaults
4596 pack
$w.buttons.restore
-side left
4597 button
$w.buttons.save
-text Save \
4599 -command [list do_save_config
$w]
4600 pack
$w.buttons.save
-side right
4601 button
$w.buttons.cancel
-text {Cancel
} \
4603 -command [list destroy
$w]
4604 pack
$w.buttons.cancel
-side right
-padx 5
4605 pack
$w.buttons
-side bottom
-fill x
-pady 10 -padx 10
4607 labelframe
$w.repo
-text "[reponame] Repository" \
4609 labelframe
$w.global
-text {Global
(All Repositories
)} \
4611 pack
$w.repo
-side left
-fill both
-expand 1 -pady 5 -padx 5
4612 pack
$w.global
-side right
-fill both
-expand 1 -pady 5 -padx 5
4616 {t user.name
{User Name
}}
4617 {t user.email
{Email Address
}}
4619 {b merge.summary
{Summarize Merge Commits
}}
4620 {i-1.
.5 merge.verbosity
{Merge Verbosity
}}
4622 {b gui.trustmtime
{Trust File Modification Timestamps
}}
4623 {i-1.
.99 gui.diffcontext
{Number of Diff Context Lines
}}
4624 {t gui.newbranchtemplate
{New Branch Name Template
}}
4626 set type [lindex
$option 0]
4627 set name
[lindex
$option 1]
4628 set text
[lindex
$option 2]
4630 foreach f
{repo global
} {
4631 switch
-glob -- $type {
4633 checkbutton
$w.
$f.
$optid -text $text \
4634 -variable ${f}_config_new
($name) \
4638 pack
$w.
$f.
$optid -side top
-anchor w
4641 regexp
-- {-(\d
+)\.\.
(\d
+)$
} $type _junk min max
4643 label
$w.
$f.
$optid.l
-text "$text:" -font font_ui
4644 pack
$w.
$f.
$optid.l
-side left
-anchor w
-fill x
4645 spinbox
$w.
$f.
$optid.v \
4646 -textvariable ${f}_config_new
($name) \
4650 -width [expr {1 + [string length
$max]}] \
4652 bind $w.
$f.
$optid.v
<FocusIn
> {%W selection range
0 end
}
4653 pack
$w.
$f.
$optid.v
-side right
-anchor e
-padx 5
4654 pack
$w.
$f.
$optid -side top
-anchor w
-fill x
4658 label
$w.
$f.
$optid.l
-text "$text:" -font font_ui
4659 entry
$w.
$f.
$optid.v \
4663 -textvariable ${f}_config_new
($name) \
4665 pack
$w.
$f.
$optid.l
-side left
-anchor w
4666 pack
$w.
$f.
$optid.v
-side left
-anchor w \
4669 pack
$w.
$f.
$optid -side top
-anchor w
-fill x
4675 set all_fonts
[lsort
[font families
]]
4676 foreach option
$font_descs {
4677 set name
[lindex
$option 0]
4678 set font
[lindex
$option 1]
4679 set text
[lindex
$option 2]
4681 set global_config_new
(gui.
$font^^family
) \
4682 [font configure
$font -family]
4683 set global_config_new
(gui.
$font^^size
) \
4684 [font configure
$font -size]
4686 frame
$w.global.
$name
4687 label
$w.global.
$name.l
-text "$text:" -font font_ui
4688 pack
$w.global.
$name.l
-side left
-anchor w
-fill x
4689 eval tk_optionMenu
$w.global.
$name.family \
4690 global_config_new
(gui.
$font^^family
) \
4692 spinbox
$w.global.
$name.size \
4693 -textvariable global_config_new
(gui.
$font^^size
) \
4694 -from 2 -to 80 -increment 1 \
4697 bind $w.global.
$name.size
<FocusIn
> {%W selection range
0 end
}
4698 pack
$w.global.
$name.size
-side right
-anchor e
4699 pack
$w.global.
$name.family
-side right
-anchor e
4700 pack
$w.global.
$name -side top
-anchor w
-fill x
4703 bind $w <Visibility
> "grab $w; focus $w"
4704 bind $w <Key-Escape
> "destroy $w"
4705 wm title
$w "[appname] ([reponame]): Options"
4709 proc do_restore_defaults
{} {
4710 global font_descs default_config repo_config
4711 global repo_config_new global_config_new
4713 foreach name
[array names default_config
] {
4714 set repo_config_new
($name) $default_config($name)
4715 set global_config_new
($name) $default_config($name)
4718 foreach option
$font_descs {
4719 set name
[lindex
$option 0]
4720 set repo_config
(gui.
$name) $default_config(gui.
$name)
4724 foreach option
$font_descs {
4725 set name
[lindex
$option 0]
4726 set font
[lindex
$option 1]
4727 set global_config_new
(gui.
$font^^family
) \
4728 [font configure
$font -family]
4729 set global_config_new
(gui.
$font^^size
) \
4730 [font configure
$font -size]
4734 proc do_save_config
{w
} {
4735 if {[catch
{save_config
} err
]} {
4736 error_popup
"Failed to completely save options:\n\n$err"
4742 proc do_windows_shortcut
{} {
4745 set fn
[tk_getSaveFile \
4747 -title "[appname] ([reponame]): Create Desktop Icon" \
4748 -initialfile "Git [reponame].bat"]
4752 puts
$fd "@ECHO Entering [reponame]"
4753 puts
$fd "@ECHO Starting git-gui... please wait..."
4754 puts
$fd "@SET PATH=[file normalize [gitexec]];%PATH%"
4755 puts
$fd "@SET GIT_DIR=[file normalize [gitdir]]"
4756 puts
-nonewline $fd "@\"[info nameofexecutable]\""
4757 puts
$fd " \"[file normalize $argv0]\""
4760 error_popup
"Cannot write script:\n\n$err"
4765 proc do_cygwin_shortcut
{} {
4769 set desktop
[exec cygpath \
4777 set fn
[tk_getSaveFile \
4779 -title "[appname] ([reponame]): Create Desktop Icon" \
4780 -initialdir $desktop \
4781 -initialfile "Git [reponame].bat"]
4785 set sh
[exec cygpath \
4789 set me
[exec cygpath \
4793 set gd
[exec cygpath \
4797 set gw
[exec cygpath \
4800 [file dirname [gitdir
]]]
4801 regsub
-all ' $me "'\\''" me
4802 regsub -all ' $gd "'\\''" gd
4803 puts $fd "@ECHO Entering $gw"
4804 puts $fd "@ECHO Starting git-gui... please wait..."
4805 puts -nonewline $fd "@\"$sh\" --login -c \""
4806 puts -nonewline $fd "GIT_DIR='$gd'"
4807 puts -nonewline $fd " '$me'"
4811 error_popup "Cannot write script:\n\n$err"
4816 proc do_macosx_app {} {
4819 set fn [tk_getSaveFile \
4821 -title "[appname] ([reponame]): Create Desktop Icon" \
4822 -initialdir [file join $env(HOME) Desktop] \
4823 -initialfile "Git [reponame].app"]
4826 set Contents [file join $fn Contents]
4827 set MacOS [file join $Contents MacOS]
4828 set exe [file join $MacOS git-gui]
4832 set fd [open [file join $Contents Info.plist] w]
4833 puts $fd {<?xml version="1.0" encoding="UTF-8"?>
4834 <!DOCTYPE plist PUBLIC "-//Apple Computer//DTD PLIST 1.0//EN" "http://www.apple.com/DTDs/PropertyList-1.0.dtd">
4835 <plist version="1.0">
4837 <key>CFBundleDevelopmentRegion</key>
4838 <string>English</string>
4839 <key>CFBundleExecutable</key>
4840 <string>git-gui</string>
4841 <key>CFBundleIdentifier</key>
4842 <string>org.spearce.git-gui</string>
4843 <key>CFBundleInfoDictionaryVersion</key>
4844 <string>6.0</string>
4845 <key>CFBundlePackageType</key>
4846 <string>APPL</string>
4847 <key>CFBundleSignature</key>
4848 <string>????</string>
4849 <key>CFBundleVersion</key>
4850 <string>1.0</string>
4851 <key>NSPrincipalClass</key>
4852 <string>NSApplication</string>
4857 set fd [open $exe w]
4858 set gd [file normalize [gitdir]]
4859 set ep [file normalize [gitexec]]
4860 regsub -all ' $gd "'\\''" gd
4861 regsub
-all ' $ep "'\\''" ep
4862 puts $fd "#!/bin/sh"
4863 foreach name
[array names env
] {
4864 if {[string match GIT_
* $name]} {
4865 regsub
-all ' $env($name) "'\\''" v
4866 puts $fd "export $name='$v'"
4869 puts $fd "export PATH
='$ep':\
$PATH"
4870 puts $fd "export GIT_DIR
='$gd'"
4871 puts $fd "exec [file normalize
$argv0]"
4874 file attributes $exe -permissions u+x,g+x,o+x
4876 error_popup "Cannot
write icon
:\n\n$err"
4881 proc toggle_or_diff {w x y} {
4882 global file_states file_lists current_diff_path ui_index ui_workdir
4883 global last_clicked selected_paths
4885 set pos [split [$w index @$x,$y] .]
4886 set lno [lindex $pos 0]
4887 set col [lindex $pos 1]
4888 set path [lindex $file_lists($w) [expr {$lno - 1}]]
4894 set last_clicked [list $w $lno]
4895 array unset selected_paths
4896 $ui_index tag remove in_sel 0.0 end
4897 $ui_workdir tag remove in_sel 0.0 end
4900 if {$current_diff_path eq $path} {
4901 set after {reshow_diff;}
4905 if {$w eq $ui_index} {
4907 "Unstaging
[short_path
$path] from commit
" \
4909 [concat $after {set ui_status_value {Ready.}}]
4910 } elseif {$w eq $ui_workdir} {
4912 "Adding
[short_path
$path]" \
4914 [concat $after {set ui_status_value {Ready.}}]
4917 show_diff $path $w $lno
4921 proc add_one_to_selection {w x y} {
4922 global file_lists last_clicked selected_paths
4924 set lno [lindex [split [$w index @$x,$y] .] 0]
4925 set path [lindex $file_lists($w) [expr {$lno - 1}]]
4931 if {$last_clicked ne {}
4932 && [lindex $last_clicked 0] ne $w} {
4933 array unset selected_paths
4934 [lindex $last_clicked 0] tag remove in_sel 0.0 end
4937 set last_clicked [list $w $lno]
4938 if {[catch {set in_sel $selected_paths($path)}]} {
4942 unset selected_paths($path)
4943 $w tag remove in_sel $lno.0 [expr {$lno + 1}].0
4945 set selected_paths($path) 1
4946 $w tag add in_sel $lno.0 [expr {$lno + 1}].0
4950 proc add_range_to_selection {w x y} {
4951 global file_lists last_clicked selected_paths
4953 if {[lindex $last_clicked 0] ne $w} {
4954 toggle_or_diff $w $x $y
4958 set lno [lindex [split [$w index @$x,$y] .] 0]
4959 set lc [lindex $last_clicked 1]
4968 foreach path [lrange $file_lists($w) \
4969 [expr {$begin - 1}] \
4970 [expr {$end - 1}]] {
4971 set selected_paths($path) 1
4973 $w tag add in_sel $begin.0 [expr {$end + 1}].0
4976 ######################################################################
4980 set cursor_ptr arrow
4981 font create font_diff -family Courier -size 10
4985 eval font configure font_ui [font actual [.dummy cget -font]]
4989 font create font_uibold
4990 font create font_diffbold
4995 } elseif {[is_MacOSX]} {
5003 proc apply_config {} {
5004 global repo_config font_descs
5006 foreach option $font_descs {
5007 set name [lindex $option 0]
5008 set font [lindex $option 1]
5010 foreach {cn cv} $repo_config(gui.$name) {
5011 font configure $font $cn $cv
5014 error_popup "Invalid font specified
in gui.
$name:\n\n$err"
5016 foreach {cn cv} [font configure $font] {
5017 font configure ${font}bold $cn $cv
5019 font configure ${font}bold -weight bold
5023 set default_config(merge.summary) false
5024 set default_config(merge.verbosity) 2
5025 set default_config(user.name) {}
5026 set default_config(user.email) {}
5028 set default_config(gui.trustmtime) false
5029 set default_config(gui.diffcontext) 5
5030 set default_config(gui.newbranchtemplate) {}
5031 set default_config(gui.fontui) [font configure font_ui]
5032 set default_config(gui.fontdiff) [font configure font_diff]
5034 {fontui font_ui {Main Font}}
5035 {fontdiff font_diff {Diff/Console Font}}
5040 ######################################################################
5042 ## feature option selection
5044 if {[regexp {^git-(.+)$} [appname] _junk subcommand]} {
5049 if {$subcommand eq {gui.sh}} {
5052 if {$subcommand eq {gui} && [llength $argv] > 0} {
5053 set subcommand [lindex $argv 0]
5054 set argv [lrange $argv 1 end]
5057 enable_option multicommit
5058 enable_option branch
5059 enable_option transport
5061 switch -- $subcommand {
5064 disable_option multicommit
5065 disable_option branch
5066 disable_option transport
5069 enable_option singlecommit
5071 disable_option multicommit
5072 disable_option branch
5073 disable_option transport
5077 ######################################################################
5085 menu .mbar -tearoff 0
5086 .mbar add cascade -label Repository -menu .mbar.repository
5087 .mbar add cascade -label Edit -menu .mbar.edit
5088 if {[is_enabled branch]} {
5089 .mbar add cascade -label Branch -menu .mbar.branch
5091 if {[is_enabled multicommit] || [is_enabled singlecommit]} {
5092 .mbar add cascade -label Commit -menu .mbar.commit
5094 if {[is_enabled transport]} {
5095 .mbar add cascade -label Merge -menu .mbar.merge
5096 .mbar add cascade -label Fetch -menu .mbar.fetch
5097 .mbar add cascade -label Push -menu .mbar.push
5099 . configure -menu .mbar
5101 # -- Repository Menu
5103 menu .mbar.repository
5105 .mbar.repository add command \
5106 -label {Browse Current Branch} \
5107 -command {new_browser $current_branch} \
5109 trace add variable current_branch write ".mbar.repository entryconf
[.mbar.repository index last
] -label \"Browse \
$current_branch\" ;#"
5110 .mbar.repository add separator
5112 .mbar.repository add
command \
5113 -label {Visualize Current Branch
} \
5114 -command {do_gitk
$current_branch} \
5116 trace add variable current_branch
write ".mbar.repository entryconf [.mbar.repository index last] -label \"Visualize \$current_branch\" ;#"
5117 .mbar.repository add
command \
5118 -label {Visualize All Branches
} \
5119 -command {do_gitk
--all} \
5121 .mbar.repository add separator
5123 if {[is_enabled multicommit
]} {
5124 .mbar.repository add
command -label {Database Statistics
} \
5128 .mbar.repository add
command -label {Compress Database
} \
5132 .mbar.repository add
command -label {Verify Database
} \
5133 -command do_fsck_objects \
5136 .mbar.repository add separator
5139 .mbar.repository add
command \
5140 -label {Create Desktop Icon
} \
5141 -command do_cygwin_shortcut \
5143 } elseif
{[is_Windows
]} {
5144 .mbar.repository add
command \
5145 -label {Create Desktop Icon
} \
5146 -command do_windows_shortcut \
5148 } elseif
{[is_MacOSX
]} {
5149 .mbar.repository add
command \
5150 -label {Create Desktop Icon
} \
5151 -command do_macosx_app \
5156 .mbar.repository add
command -label Quit \
5158 -accelerator $M1T-Q \
5164 .mbar.edit add
command -label Undo \
5165 -command {catch
{[focus
] edit undo
}} \
5166 -accelerator $M1T-Z \
5168 .mbar.edit add
command -label Redo \
5169 -command {catch
{[focus
] edit redo
}} \
5170 -accelerator $M1T-Y \
5172 .mbar.edit add separator
5173 .mbar.edit add
command -label Cut \
5174 -command {catch
{tk_textCut
[focus
]}} \
5175 -accelerator $M1T-X \
5177 .mbar.edit add
command -label Copy \
5178 -command {catch
{tk_textCopy
[focus
]}} \
5179 -accelerator $M1T-C \
5181 .mbar.edit add
command -label Paste \
5182 -command {catch
{tk_textPaste
[focus
]; [focus
] see insert
}} \
5183 -accelerator $M1T-V \
5185 .mbar.edit add
command -label Delete \
5186 -command {catch
{[focus
] delete sel.first sel.last
}} \
5189 .mbar.edit add separator
5190 .mbar.edit add
command -label {Select All
} \
5191 -command {catch
{[focus
] tag add sel
0.0 end
}} \
5192 -accelerator $M1T-A \
5197 if {[is_enabled branch
]} {
5200 .mbar.branch add
command -label {Create...
} \
5201 -command do_create_branch \
5202 -accelerator $M1T-N \
5204 lappend disable_on_lock
[list .mbar.branch entryconf \
5205 [.mbar.branch index last
] -state]
5207 .mbar.branch add
command -label {Delete...
} \
5208 -command do_delete_branch \
5210 lappend disable_on_lock
[list .mbar.branch entryconf \
5211 [.mbar.branch index last
] -state]
5213 .mbar.branch add
command -label {Reset...
} \
5214 -command do_reset_hard \
5216 lappend disable_on_lock
[list .mbar.branch entryconf \
5217 [.mbar.branch index last
] -state]
5222 if {[is_enabled multicommit
] ||
[is_enabled singlecommit
]} {
5225 .mbar.commit add radiobutton \
5226 -label {New Commit
} \
5227 -command do_select_commit_type \
5228 -variable selected_commit_type \
5231 lappend disable_on_lock \
5232 [list .mbar.commit entryconf
[.mbar.commit index last
] -state]
5234 .mbar.commit add radiobutton \
5235 -label {Amend Last Commit
} \
5236 -command do_select_commit_type \
5237 -variable selected_commit_type \
5240 lappend disable_on_lock \
5241 [list .mbar.commit entryconf
[.mbar.commit index last
] -state]
5243 .mbar.commit add separator
5245 .mbar.commit add
command -label Rescan \
5246 -command do_rescan \
5249 lappend disable_on_lock \
5250 [list .mbar.commit entryconf
[.mbar.commit index last
] -state]
5252 .mbar.commit add
command -label {Add To Commit
} \
5253 -command do_add_selection \
5255 lappend disable_on_lock \
5256 [list .mbar.commit entryconf
[.mbar.commit index last
] -state]
5258 .mbar.commit add
command -label {Add Existing To Commit
} \
5259 -command do_add_all \
5260 -accelerator $M1T-I \
5262 lappend disable_on_lock \
5263 [list .mbar.commit entryconf
[.mbar.commit index last
] -state]
5265 .mbar.commit add
command -label {Unstage From Commit
} \
5266 -command do_unstage_selection \
5268 lappend disable_on_lock \
5269 [list .mbar.commit entryconf
[.mbar.commit index last
] -state]
5271 .mbar.commit add
command -label {Revert Changes
} \
5272 -command do_revert_selection \
5274 lappend disable_on_lock \
5275 [list .mbar.commit entryconf
[.mbar.commit index last
] -state]
5277 .mbar.commit add separator
5279 .mbar.commit add
command -label {Sign Off
} \
5280 -command do_signoff \
5281 -accelerator $M1T-S \
5284 .mbar.commit add
command -label Commit \
5285 -command do_commit \
5286 -accelerator $M1T-Return \
5288 lappend disable_on_lock \
5289 [list .mbar.commit entryconf
[.mbar.commit index last
] -state]
5294 if {[is_enabled branch
]} {
5296 .mbar.merge add
command -label {Local Merge...
} \
5297 -command do_local_merge \
5299 lappend disable_on_lock \
5300 [list .mbar.merge entryconf
[.mbar.merge index last
] -state]
5301 .mbar.merge add
command -label {Abort Merge...
} \
5302 -command do_reset_hard \
5304 lappend disable_on_lock \
5305 [list .mbar.merge entryconf
[.mbar.merge index last
] -state]
5311 if {[is_enabled transport
]} {
5315 .mbar.push add
command -label {Push...
} \
5316 -command do_push_anywhere \
5321 # -- Apple Menu (Mac OS X only)
5323 .mbar add cascade
-label Apple
-menu .mbar.apple
5326 .mbar.apple add
command -label "About [appname]" \
5329 .mbar.apple add
command -label "Options..." \
5330 -command do_options \
5335 .mbar.edit add separator
5336 .mbar.edit add
command -label {Options...
} \
5337 -command do_options \
5342 if {[file exists
/usr
/local
/miga
/lib
/gui-miga
]
5343 && [file exists .pvcsrc
]} {
5345 global ui_status_value
5346 if {![lock_index update
]} return
5347 set cmd
[list sh
--login -c "/usr/local/miga/lib/gui-miga \"[pwd]\""]
5348 set miga_fd
[open
"|$cmd" r
]
5349 fconfigure
$miga_fd -blocking 0
5350 fileevent
$miga_fd readable
[list miga_done
$miga_fd]
5351 set ui_status_value
{Running miga...
}
5353 proc miga_done
{fd
} {
5358 rescan
[list
set ui_status_value
{Ready.
}]
5361 .mbar add cascade
-label Tools
-menu .mbar.tools
5363 .mbar.tools add
command -label "Migrate" \
5366 lappend disable_on_lock \
5367 [list .mbar.tools entryconf
[.mbar.tools index last
] -state]
5373 .mbar add cascade
-label Help
-menu .mbar.
help
5377 .mbar.
help add
command -label "About [appname]" \
5383 catch
{set browser
$repo_config(instaweb.browser
)}
5384 set doc_path
[file dirname [gitexec
]]
5385 set doc_path
[file join $doc_path Documentation index.html
]
5388 set doc_path
[exec cygpath
--mixed $doc_path]
5391 if {$browser eq
{}} {
5394 } elseif
{[is_Cygwin
]} {
5395 set program_files
[file dirname [exec cygpath
--windir]]
5396 set program_files
[file join $program_files {Program Files
}]
5397 set firefox
[file join $program_files {Mozilla Firefox
} firefox.exe
]
5398 set ie
[file join $program_files {Internet Explorer
} IEXPLORE.EXE
]
5399 if {[file exists
$firefox]} {
5400 set browser
$firefox
5401 } elseif
{[file exists
$ie]} {
5404 unset program_files firefox ie
5408 if {[file isfile
$doc_path]} {
5409 set doc_url
"file:$doc_path"
5411 set doc_url
{http
://www.kernel.org
/pub
/software
/scm
/git
/docs
/}
5414 if {$browser ne
{}} {
5415 .mbar.
help add
command -label {Online Documentation
} \
5416 -command [list
exec $browser $doc_url &] \
5419 unset browser doc_path doc_url
5421 # -- Standard bindings
5423 bind .
<Destroy
> do_quit
5424 bind all
<$M1B-Key-q> do_quit
5425 bind all
<$M1B-Key-Q> do_quit
5426 bind all
<$M1B-Key-w> {destroy
[winfo toplevel
%W
]}
5427 bind all
<$M1B-Key-W> {destroy
[winfo toplevel
%W
]}
5429 # -- Not a normal commit type invocation? Do that instead!
5431 switch
-- $subcommand {
5433 if {[llength
$argv] != 1} {
5434 puts stderr
"usage: $argv0 browser commit"
5437 set current_branch
[lindex
$argv 0]
5438 new_browser
$current_branch
5442 if {[llength
$argv] != 2} {
5443 puts stderr
"usage: $argv0 blame commit path"
5446 set current_branch
[lindex
$argv 0]
5447 show_blame
$current_branch [lindex
$argv 1]
5452 if {[llength
$argv] != 0} {
5453 puts
-nonewline stderr
"usage: $argv0"
5454 if {$subcommand ne
{gui
} && [appname
] ne
"git-$subcommand"} {
5455 puts
-nonewline stderr
" $subcommand"
5460 # fall through to setup UI for commits
5463 puts stderr
"usage: $argv0 \[{blame|browser|citool}\]"
5474 -text {Current Branch
:} \
5479 -textvariable current_branch \
5483 pack .branch.l1
-side left
5484 pack .branch.cb
-side left
-fill x
5485 pack .branch
-side top
-fill x
5487 # -- Main Window Layout
5489 panedwindow .vpane
-orient vertical
5490 panedwindow .vpane.files
-orient horizontal
5491 .vpane add .vpane.files
-sticky nsew
-height 100 -width 200
5492 pack .vpane
-anchor n
-side top
-fill both
-expand 1
5494 # -- Index File List
5496 frame .vpane.files.index
-height 100 -width 200
5497 label .vpane.files.index.title
-text {Changes To Be Committed
} \
5500 text
$ui_index -background white
-borderwidth 0 \
5501 -width 20 -height 10 \
5504 -cursor $cursor_ptr \
5505 -xscrollcommand {.vpane.files.index.sx
set} \
5506 -yscrollcommand {.vpane.files.index.sy
set} \
5508 scrollbar .vpane.files.index.sx
-orient h
-command [list
$ui_index xview
]
5509 scrollbar .vpane.files.index.sy
-orient v
-command [list
$ui_index yview
]
5510 pack .vpane.files.index.title
-side top
-fill x
5511 pack .vpane.files.index.sx
-side bottom
-fill x
5512 pack .vpane.files.index.sy
-side right
-fill y
5513 pack
$ui_index -side left
-fill both
-expand 1
5514 .vpane.files add .vpane.files.index
-sticky nsew
5516 # -- Working Directory File List
5518 frame .vpane.files.workdir
-height 100 -width 200
5519 label .vpane.files.workdir.title
-text {Changed But Not Updated
} \
5522 text
$ui_workdir -background white
-borderwidth 0 \
5523 -width 20 -height 10 \
5526 -cursor $cursor_ptr \
5527 -xscrollcommand {.vpane.files.workdir.sx
set} \
5528 -yscrollcommand {.vpane.files.workdir.sy
set} \
5530 scrollbar .vpane.files.workdir.sx
-orient h
-command [list
$ui_workdir xview
]
5531 scrollbar .vpane.files.workdir.sy
-orient v
-command [list
$ui_workdir yview
]
5532 pack .vpane.files.workdir.title
-side top
-fill x
5533 pack .vpane.files.workdir.sx
-side bottom
-fill x
5534 pack .vpane.files.workdir.sy
-side right
-fill y
5535 pack
$ui_workdir -side left
-fill both
-expand 1
5536 .vpane.files add .vpane.files.workdir
-sticky nsew
5538 foreach i
[list
$ui_index $ui_workdir] {
5539 $i tag conf in_diff
-font font_uibold
5540 $i tag conf in_sel \
5541 -background [$i cget
-foreground] \
5542 -foreground [$i cget
-background]
5546 # -- Diff and Commit Area
5548 frame .vpane.lower
-height 300 -width 400
5549 frame .vpane.lower.commarea
5550 frame .vpane.lower.
diff -relief sunken
-borderwidth 1
5551 pack .vpane.lower.commarea
-side top
-fill x
5552 pack .vpane.lower.
diff -side bottom
-fill both
-expand 1
5553 .vpane add .vpane.lower
-sticky nsew
5555 # -- Commit Area Buttons
5557 frame .vpane.lower.commarea.buttons
5558 label .vpane.lower.commarea.buttons.l
-text {} \
5562 pack .vpane.lower.commarea.buttons.l
-side top
-fill x
5563 pack .vpane.lower.commarea.buttons
-side left
-fill y
5565 button .vpane.lower.commarea.buttons.rescan
-text {Rescan
} \
5566 -command do_rescan \
5568 pack .vpane.lower.commarea.buttons.rescan
-side top
-fill x
5569 lappend disable_on_lock \
5570 {.vpane.lower.commarea.buttons.rescan conf
-state}
5572 button .vpane.lower.commarea.buttons.incall
-text {Add Existing
} \
5573 -command do_add_all \
5575 pack .vpane.lower.commarea.buttons.incall
-side top
-fill x
5576 lappend disable_on_lock \
5577 {.vpane.lower.commarea.buttons.incall conf
-state}
5579 button .vpane.lower.commarea.buttons.signoff
-text {Sign Off
} \
5580 -command do_signoff \
5582 pack .vpane.lower.commarea.buttons.signoff
-side top
-fill x
5584 button .vpane.lower.commarea.buttons.commit
-text {Commit
} \
5585 -command do_commit \
5587 pack .vpane.lower.commarea.buttons.commit
-side top
-fill x
5588 lappend disable_on_lock \
5589 {.vpane.lower.commarea.buttons.commit conf
-state}
5591 # -- Commit Message Buffer
5593 frame .vpane.lower.commarea.buffer
5594 frame .vpane.lower.commarea.buffer.header
5595 set ui_comm .vpane.lower.commarea.buffer.t
5596 set ui_coml .vpane.lower.commarea.buffer.header.l
5597 radiobutton .vpane.lower.commarea.buffer.header.new \
5598 -text {New Commit
} \
5599 -command do_select_commit_type \
5600 -variable selected_commit_type \
5603 lappend disable_on_lock \
5604 [list .vpane.lower.commarea.buffer.header.new conf
-state]
5605 radiobutton .vpane.lower.commarea.buffer.header.amend \
5606 -text {Amend Last Commit
} \
5607 -command do_select_commit_type \
5608 -variable selected_commit_type \
5611 lappend disable_on_lock \
5612 [list .vpane.lower.commarea.buffer.header.amend conf
-state]
5617 proc trace_commit_type
{varname args
} {
5618 global ui_coml commit_type
5619 switch
-glob -- $commit_type {
5620 initial
{set txt
{Initial Commit Message
:}}
5621 amend
{set txt
{Amended Commit Message
:}}
5622 amend-initial
{set txt
{Amended Initial Commit Message
:}}
5623 amend-merge
{set txt
{Amended Merge Commit Message
:}}
5624 merge
{set txt
{Merge Commit Message
:}}
5625 * {set txt
{Commit Message
:}}
5627 $ui_coml conf
-text $txt
5629 trace add variable commit_type
write trace_commit_type
5630 pack
$ui_coml -side left
-fill x
5631 pack .vpane.lower.commarea.buffer.header.amend
-side right
5632 pack .vpane.lower.commarea.buffer.header.new
-side right
5634 text
$ui_comm -background white
-borderwidth 1 \
5637 -autoseparators true \
5639 -width 75 -height 9 -wrap none \
5641 -yscrollcommand {.vpane.lower.commarea.buffer.sby
set}
5642 scrollbar .vpane.lower.commarea.buffer.sby \
5643 -command [list
$ui_comm yview
]
5644 pack .vpane.lower.commarea.buffer.header
-side top
-fill x
5645 pack .vpane.lower.commarea.buffer.sby
-side right
-fill y
5646 pack
$ui_comm -side left
-fill y
5647 pack .vpane.lower.commarea.buffer
-side left
-fill y
5649 # -- Commit Message Buffer Context Menu
5651 set ctxm .vpane.lower.commarea.buffer.ctxm
5652 menu
$ctxm -tearoff 0
5656 -command {tk_textCut
$ui_comm}
5660 -command {tk_textCopy
$ui_comm}
5664 -command {tk_textPaste
$ui_comm}
5668 -command {$ui_comm delete sel.first sel.last
}
5671 -label {Select All
} \
5673 -command {focus
$ui_comm;$ui_comm tag add sel
0.0 end
}
5678 $ui_comm tag add sel
0.0 end
5679 tk_textCopy
$ui_comm
5680 $ui_comm tag remove sel
0.0 end
5687 bind_button3
$ui_comm "tk_popup $ctxm %X %Y"
5691 proc trace_current_diff_path
{varname args
} {
5692 global current_diff_path diff_actions file_states
5693 if {$current_diff_path eq
{}} {
5699 set p
$current_diff_path
5700 set s
[mapdesc
[lindex
$file_states($p) 0] $p]
5702 set p
[escape_path
$p]
5706 .vpane.lower.
diff.header.status configure
-text $s
5707 .vpane.lower.
diff.header.
file configure
-text $f
5708 .vpane.lower.
diff.header.path configure
-text $p
5709 foreach w
$diff_actions {
5713 trace add variable current_diff_path
write trace_current_diff_path
5715 frame .vpane.lower.
diff.header
-background orange
5716 label .vpane.lower.
diff.header.status \
5717 -background orange \
5718 -width $max_status_desc \
5722 label .vpane.lower.
diff.header.
file \
5723 -background orange \
5727 label .vpane.lower.
diff.header.path \
5728 -background orange \
5732 pack .vpane.lower.
diff.header.status
-side left
5733 pack .vpane.lower.
diff.header.
file -side left
5734 pack .vpane.lower.
diff.header.path
-fill x
5735 set ctxm .vpane.lower.
diff.header.ctxm
5736 menu
$ctxm -tearoff 0
5745 -- $current_diff_path
5747 lappend diff_actions
[list
$ctxm entryconf
[$ctxm index last
] -state]
5748 bind_button3 .vpane.lower.
diff.header.path
"tk_popup $ctxm %X %Y"
5752 frame .vpane.lower.
diff.body
5753 set ui_diff .vpane.lower.
diff.body.t
5754 text
$ui_diff -background white
-borderwidth 0 \
5755 -width 80 -height 15 -wrap none \
5757 -xscrollcommand {.vpane.lower.
diff.body.sbx
set} \
5758 -yscrollcommand {.vpane.lower.
diff.body.sby
set} \
5760 scrollbar .vpane.lower.
diff.body.sbx
-orient horizontal \
5761 -command [list
$ui_diff xview
]
5762 scrollbar .vpane.lower.
diff.body.sby
-orient vertical \
5763 -command [list
$ui_diff yview
]
5764 pack .vpane.lower.
diff.body.sbx
-side bottom
-fill x
5765 pack .vpane.lower.
diff.body.sby
-side right
-fill y
5766 pack
$ui_diff -side left
-fill both
-expand 1
5767 pack .vpane.lower.
diff.header
-side top
-fill x
5768 pack .vpane.lower.
diff.body
-side bottom
-fill both
-expand 1
5770 $ui_diff tag conf d_cr
-elide true
5771 $ui_diff tag conf d_@
-foreground blue
-font font_diffbold
5772 $ui_diff tag conf d_
+ -foreground {#00a000}
5773 $ui_diff tag conf d_-
-foreground red
5775 $ui_diff tag conf d_
++ -foreground {#00a000}
5776 $ui_diff tag conf d_--
-foreground red
5777 $ui_diff tag conf d_
+s \
5778 -foreground {#00a000} \
5779 -background {#e2effa}
5780 $ui_diff tag conf d_-s \
5782 -background {#e2effa}
5783 $ui_diff tag conf d_s
+ \
5784 -foreground {#00a000} \
5786 $ui_diff tag conf d_s- \
5790 $ui_diff tag conf d
<<<<<<< \
5791 -foreground orange \
5793 $ui_diff tag conf d
======= \
5794 -foreground orange \
5796 $ui_diff tag conf d
>>>>>>> \
5797 -foreground orange \
5800 $ui_diff tag raise sel
5802 # -- Diff Body Context Menu
5804 set ctxm .vpane.lower.
diff.body.ctxm
5805 menu
$ctxm -tearoff 0
5809 -command reshow_diff
5810 lappend diff_actions
[list
$ctxm entryconf
[$ctxm index last
] -state]
5814 -command {tk_textCopy
$ui_diff}
5815 lappend diff_actions
[list
$ctxm entryconf
[$ctxm index last
] -state]
5817 -label {Select All
} \
5819 -command {focus
$ui_diff;$ui_diff tag add sel
0.0 end
}
5820 lappend diff_actions
[list
$ctxm entryconf
[$ctxm index last
] -state]
5825 $ui_diff tag add sel
0.0 end
5826 tk_textCopy
$ui_diff
5827 $ui_diff tag remove sel
0.0 end
5829 lappend diff_actions
[list
$ctxm entryconf
[$ctxm index last
] -state]
5832 -label {Apply
/Reverse Hunk
} \
5834 -command {apply_hunk
$cursorX $cursorY}
5835 set ui_diff_applyhunk
[$ctxm index last
]
5836 lappend diff_actions
[list
$ctxm entryconf
$ui_diff_applyhunk -state]
5839 -label {Decrease Font Size
} \
5841 -command {incr_font_size font_diff
-1}
5842 lappend diff_actions
[list
$ctxm entryconf
[$ctxm index last
] -state]
5844 -label {Increase Font Size
} \
5846 -command {incr_font_size font_diff
1}
5847 lappend diff_actions
[list
$ctxm entryconf
[$ctxm index last
] -state]
5850 -label {Show Less Context
} \
5852 -command {if {$repo_config(gui.diffcontext
) >= 2} {
5853 incr repo_config
(gui.diffcontext
) -1
5856 lappend diff_actions
[list
$ctxm entryconf
[$ctxm index last
] -state]
5858 -label {Show More Context
} \
5861 incr repo_config
(gui.diffcontext
)
5864 lappend diff_actions
[list
$ctxm entryconf
[$ctxm index last
] -state]
5866 $ctxm add
command -label {Options...
} \
5869 bind_button3
$ui_diff "
5872 if {\$ui_index eq \$current_diff_side} {
5873 $ctxm entryconf $ui_diff_applyhunk -label {Unstage Hunk From Commit}
5875 $ctxm entryconf $ui_diff_applyhunk -label {Stage Hunk For Commit}
5877 tk_popup $ctxm %X %Y
5879 unset ui_diff_applyhunk
5883 label .status
-textvariable ui_status_value \
5889 pack .status
-anchor w
-side bottom
-fill x
5894 set gm
$repo_config(gui.geometry
)
5895 wm geometry .
[lindex
$gm 0]
5896 .vpane sash place
0 \
5897 [lindex
[.vpane sash coord
0] 0] \
5899 .vpane.files sash place
0 \
5901 [lindex
[.vpane.files sash coord
0] 1]
5907 bind $ui_comm <$M1B-Key-Return> {do_commit
;break}
5908 bind $ui_comm <$M1B-Key-i> {do_add_all
;break}
5909 bind $ui_comm <$M1B-Key-I> {do_add_all
;break}
5910 bind $ui_comm <$M1B-Key-x> {tk_textCut
%W
;break}
5911 bind $ui_comm <$M1B-Key-X> {tk_textCut
%W
;break}
5912 bind $ui_comm <$M1B-Key-c> {tk_textCopy
%W
;break}
5913 bind $ui_comm <$M1B-Key-C> {tk_textCopy
%W
;break}
5914 bind $ui_comm <$M1B-Key-v> {tk_textPaste
%W
; %W see insert
; break}
5915 bind $ui_comm <$M1B-Key-V> {tk_textPaste
%W
; %W see insert
; break}
5916 bind $ui_comm <$M1B-Key-a> {%W tag add sel
0.0 end
;break}
5917 bind $ui_comm <$M1B-Key-A> {%W tag add sel
0.0 end
;break}
5919 bind $ui_diff <$M1B-Key-x> {tk_textCopy
%W
;break}
5920 bind $ui_diff <$M1B-Key-X> {tk_textCopy
%W
;break}
5921 bind $ui_diff <$M1B-Key-c> {tk_textCopy
%W
;break}
5922 bind $ui_diff <$M1B-Key-C> {tk_textCopy
%W
;break}
5923 bind $ui_diff <$M1B-Key-v> {break}
5924 bind $ui_diff <$M1B-Key-V> {break}
5925 bind $ui_diff <$M1B-Key-a> {%W tag add sel
0.0 end
;break}
5926 bind $ui_diff <$M1B-Key-A> {%W tag add sel
0.0 end
;break}
5927 bind $ui_diff <Key-Up
> {catch
{%W yview scroll
-1 units
};break}
5928 bind $ui_diff <Key-Down
> {catch
{%W yview scroll
1 units
};break}
5929 bind $ui_diff <Key-Left
> {catch
{%W xview scroll
-1 units
};break}
5930 bind $ui_diff <Key-Right
> {catch
{%W xview scroll
1 units
};break}
5931 bind $ui_diff <Button-1
> {focus
%W
}
5933 if {[is_enabled branch
]} {
5934 bind .
<$M1B-Key-n> do_create_branch
5935 bind .
<$M1B-Key-N> do_create_branch
5938 bind all
<Key-F5
> do_rescan
5939 bind all
<$M1B-Key-r> do_rescan
5940 bind all
<$M1B-Key-R> do_rescan
5941 bind .
<$M1B-Key-s> do_signoff
5942 bind .
<$M1B-Key-S> do_signoff
5943 bind .
<$M1B-Key-i> do_add_all
5944 bind .
<$M1B-Key-I> do_add_all
5945 bind .
<$M1B-Key-Return> do_commit
5946 foreach i
[list
$ui_index $ui_workdir] {
5947 bind $i <Button-1
> "toggle_or_diff $i %x %y; break"
5948 bind $i <$M1B-Button-1> "add_one_to_selection $i %x %y; break"
5949 bind $i <Shift-Button-1
> "add_range_to_selection $i %x %y; break"
5953 set file_lists
($ui_index) [list
]
5954 set file_lists
($ui_workdir) [list
]
5956 wm title .
"[appname] ([file normalize [file dirname [gitdir]]])"
5957 focus
-force $ui_comm
5959 # -- Warn the user about environmental problems. Cygwin's Tcl
5960 # does *not* pass its env array onto any processes it spawns.
5961 # This means that git processes get none of our environment.
5966 set msg
"Possible environment issues exist.
5968 The following environment variables are probably
5969 going to be ignored by any Git subprocess run
5973 foreach name
[array names env
] {
5974 switch
-regexp -- $name {
5975 {^GIT_INDEX_FILE$
} -
5976 {^GIT_OBJECT_DIRECTORY$
} -
5977 {^GIT_ALTERNATE_OBJECT_DIRECTORIES$
} -
5979 {^GIT_EXTERNAL_DIFF$
} -
5983 {^GIT_CONFIG_LOCAL$
} -
5984 {^GIT_
(AUTHOR|COMMITTER
)_DATE$
} {
5985 append msg
" - $name\n"
5988 {^GIT_
(AUTHOR|COMMITTER
)_
(NAME|EMAIL
)$
} {
5989 append msg
" - $name\n"
5991 set suggest_user
$name
5995 if {$ignored_env > 0} {
5997 This is due to a known issue with the
5998 Tcl binary distributed by Cygwin."
6000 if {$suggest_user ne
{}} {
6003 A good replacement for $suggest_user
6004 is placing values for the user.name and
6005 user.email settings into your personal
6011 unset ignored_env msg suggest_user name
6014 # -- Only initialize complex UI if we are going to stay running.
6016 if {[is_enabled transport
]} {
6020 populate_branch_menu
6025 # -- Only suggest a gc run if we are going to stay running.
6027 if {[is_enabled multicommit
]} {
6028 set object_limit
2000
6029 if {[is_Windows
]} {set object_limit
200}
6030 regexp
{^
([0-9]+) objects
,} [git count-objects
] _junk objects_current
6031 if {$objects_current >= $object_limit} {
6033 "This repository currently has $objects_current loose objects.
6035 To maintain optimal performance it is strongly
6036 recommended that you compress the database
6037 when more than $object_limit loose objects exist.
6039 Compress the database now?"] eq
yes} {
6043 unset object_limit _junk objects_current
6046 lock_index begin-read