2 # Tcl ignores the next line -*- tcl -*- \
5 set appvers
{@@GIT_VERSION@@
}
7 Copyright ©
2006, 2007 Shawn Pearce
, Paul Mackerras.
9 This program is free software
; you can redistribute it and
/or modify
10 it under the terms of the GNU General Public License as published by
11 the Free Software Foundation
; either version
2 of the License
, or
12 (at your option
) any later version.
14 This program is distributed
in the hope that it will be useful
,
15 but WITHOUT ANY WARRANTY
; without even the implied warranty of
16 MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
17 GNU General Public License
for more details.
19 You should have received a copy of the GNU General Public License
20 along with this program
; if not
, write to the Free Software
21 Foundation
, Inc.
, 59 Temple Place
, Suite
330, Boston
, MA
02111-1307 USA
}
23 ######################################################################
27 set _appname
[lindex
[file split $argv0] end
]
41 return [eval [concat
[list
file join $_gitdir] $args]]
49 ######################################################################
53 proc is_many_config
{name
} {
54 switch
-glob -- $name {
63 proc load_config
{include_global
} {
64 global repo_config global_config default_config
66 array
unset global_config
67 if {$include_global} {
69 set fd_rc
[open
"| git repo-config --global --list" r
]
70 while {[gets
$fd_rc line
] >= 0} {
71 if {[regexp
{^
([^
=]+)=(.
*)$
} $line line name value
]} {
72 if {[is_many_config
$name]} {
73 lappend global_config
($name) $value
75 set global_config
($name) $value
83 array
unset repo_config
85 set fd_rc
[open
"| git repo-config --list" r
]
86 while {[gets
$fd_rc line
] >= 0} {
87 if {[regexp
{^
([^
=]+)=(.
*)$
} $line line name value
]} {
88 if {[is_many_config
$name]} {
89 lappend repo_config
($name) $value
91 set repo_config
($name) $value
98 foreach name
[array names default_config
] {
99 if {[catch
{set v
$global_config($name)}]} {
100 set global_config
($name) $default_config($name)
102 if {[catch
{set v
$repo_config($name)}]} {
103 set repo_config
($name) $default_config($name)
108 proc save_config
{} {
109 global default_config font_descs
110 global repo_config global_config
111 global repo_config_new global_config_new
113 foreach option
$font_descs {
114 set name
[lindex
$option 0]
115 set font
[lindex
$option 1]
116 font configure
$font \
117 -family $global_config_new(gui.
$font^^family
) \
118 -size $global_config_new(gui.
$font^^size
)
119 font configure
${font}bold \
120 -family $global_config_new(gui.
$font^^family
) \
121 -size $global_config_new(gui.
$font^^size
)
122 set global_config_new
(gui.
$name) [font configure
$font]
123 unset global_config_new
(gui.
$font^^family
)
124 unset global_config_new
(gui.
$font^^size
)
127 foreach name
[array names default_config
] {
128 set value
$global_config_new($name)
129 if {$value ne
$global_config($name)} {
130 if {$value eq
$default_config($name)} {
131 catch
{exec git repo-config
--global --unset $name}
133 regsub
-all "\[{}\]" $value {"} value
134 exec git repo-config --global $name $value
136 set global_config($name) $value
137 if {$value eq $repo_config($name)} {
138 catch {exec git repo-config --unset $name}
139 set repo_config($name) $value
144 foreach name [array names default_config] {
145 set value $repo_config_new($name)
146 if {$value ne $repo_config($name)} {
147 if {$value eq $global_config($name)} {
148 catch {exec git repo-config --unset $name}
150 regsub -all "\
[{}\
]" $value {"} value
151 exec git repo-config
$name $value
153 set repo_config
($name) $value
158 proc error_popup
{msg
} {
160 if {[reponame
] ne
{}} {
161 append title
" ([reponame])"
163 set cmd
[list tk_messageBox \
166 -title "$title: error" \
168 if {[winfo ismapped .
]} {
169 lappend cmd
-parent .
174 proc warn_popup
{msg
} {
176 if {[reponame
] ne
{}} {
177 append title
" ([reponame])"
179 set cmd
[list tk_messageBox \
182 -title "$title: warning" \
184 if {[winfo ismapped .
]} {
185 lappend cmd
-parent .
190 proc info_popup
{msg
} {
192 if {[reponame
] ne
{}} {
193 append title
" ([reponame])"
203 proc ask_popup
{msg
} {
205 if {[reponame
] ne
{}} {
206 append title
" ([reponame])"
208 return [tk_messageBox \
216 ######################################################################
220 if { [catch
{set _gitdir
$env(GIT_DIR
)}]
221 && [catch
{set _gitdir
[exec git rev-parse
--git-dir]} err
]} {
222 catch
{wm withdraw .
}
223 error_popup
"Cannot find the git directory:\n\n$err"
226 if {![file isdirectory
$_gitdir]} {
227 catch
{wm withdraw .
}
228 error_popup
"Git directory not found:\n\n$_gitdir"
231 if {[lindex
[file split $_gitdir] end
] ne
{.git
}} {
232 catch
{wm withdraw .
}
233 error_popup
"Cannot use funny .git directory:\n\n$gitdir"
236 if {[catch
{cd [file dirname $_gitdir]} err
]} {
237 catch
{wm withdraw .
}
238 error_popup
"No working directory [file dirname $_gitdir]:\n\n$err"
241 set _reponame
[lindex
[file split \
242 [file normalize
[file dirname $_gitdir]]] \
246 if {[appname
] eq
{git-citool
}} {
250 ######################################################################
258 set disable_on_lock
[list
]
259 set index_lock_type none
261 proc lock_index
{type} {
262 global index_lock_type disable_on_lock
264 if {$index_lock_type eq
{none
}} {
265 set index_lock_type
$type
266 foreach w
$disable_on_lock {
267 uplevel
#0 $w disabled
270 } elseif
{$index_lock_type eq
"begin-$type"} {
271 set index_lock_type
$type
277 proc unlock_index
{} {
278 global index_lock_type disable_on_lock
280 set index_lock_type none
281 foreach w
$disable_on_lock {
286 ######################################################################
290 proc repository_state
{ctvar hdvar mhvar
} {
291 global current_branch
292 upvar
$ctvar ct
$hdvar hd
$mhvar mh
296 if {[catch
{set current_branch
[exec git symbolic-ref HEAD
]}]} {
297 set current_branch
{}
299 regsub ^refs
/((heads|tags|remotes
)/)? \
305 if {[catch
{set hd
[exec git rev-parse
--verify HEAD
]}]} {
311 set merge_head
[gitdir MERGE_HEAD
]
312 if {[file exists
$merge_head]} {
314 set fd_mh
[open
$merge_head r
]
315 while {[gets
$fd_mh line
] >= 0} {
326 global PARENT empty_tree
328 set p
[lindex
$PARENT 0]
332 if {$empty_tree eq
{}} {
333 set empty_tree
[exec git mktree
<< {}]
338 proc rescan
{after
{honor_trustmtime
1}} {
339 global HEAD PARENT MERGE_HEAD commit_type
340 global ui_index ui_workdir ui_status_value ui_comm
341 global rescan_active file_states
344 if {$rescan_active > 0 ||
![lock_index
read]} return
346 repository_state newType newHEAD newMERGE_HEAD
347 if {[string match amend
* $commit_type]
348 && $newType eq
{normal
}
349 && $newHEAD eq
$HEAD} {
353 set MERGE_HEAD
$newMERGE_HEAD
354 set commit_type
$newType
357 array
unset file_states
359 if {![$ui_comm edit modified
]
360 ||
[string trim
[$ui_comm get
0.0 end
]] eq
{}} {
361 if {[load_message GITGUI_MSG
]} {
362 } elseif
{[load_message MERGE_MSG
]} {
363 } elseif
{[load_message SQUASH_MSG
]} {
366 $ui_comm edit modified false
369 if {$honor_trustmtime && $repo_config(gui.trustmtime
) eq
{true
}} {
370 rescan_stage2
{} $after
373 set ui_status_value
{Refreshing
file status...
}
374 set cmd
[list git update-index
]
376 lappend cmd
--unmerged
377 lappend cmd
--ignore-missing
378 lappend cmd
--refresh
379 set fd_rf
[open
"| $cmd" r
]
380 fconfigure
$fd_rf -blocking 0 -translation binary
381 fileevent
$fd_rf readable \
382 [list rescan_stage2
$fd_rf $after]
386 proc rescan_stage2
{fd after
} {
387 global ui_status_value
388 global rescan_active buf_rdi buf_rdf buf_rlo
392 if {![eof
$fd]} return
396 set ls_others
[list | git ls-files
--others -z \
397 --exclude-per-directory=.gitignore
]
398 set info_exclude
[gitdir info exclude
]
399 if {[file readable
$info_exclude]} {
400 lappend ls_others
"--exclude-from=$info_exclude"
408 set ui_status_value
{Scanning
for modified files ...
}
409 set fd_di
[open
"| git diff-index --cached -z [PARENT]" r
]
410 set fd_df
[open
"| git diff-files -z" r
]
411 set fd_lo
[open
$ls_others r
]
413 fconfigure
$fd_di -blocking 0 -translation binary
-encoding binary
414 fconfigure
$fd_df -blocking 0 -translation binary
-encoding binary
415 fconfigure
$fd_lo -blocking 0 -translation binary
-encoding binary
416 fileevent
$fd_di readable
[list read_diff_index
$fd_di $after]
417 fileevent
$fd_df readable
[list read_diff_files
$fd_df $after]
418 fileevent
$fd_lo readable
[list read_ls_others
$fd_lo $after]
421 proc load_message
{file} {
425 if {[file isfile
$f]} {
426 if {[catch
{set fd
[open
$f r
]}]} {
429 set content
[string trim
[read $fd]]
431 regsub
-all -line {[ \r\t]+$
} $content {} content
432 $ui_comm delete
0.0 end
433 $ui_comm insert end
$content
439 proc read_diff_index
{fd after
} {
442 append buf_rdi
[read $fd]
444 set n
[string length
$buf_rdi]
446 set z1
[string first
"\0" $buf_rdi $c]
449 set z2
[string first
"\0" $buf_rdi $z1]
453 set i
[split [string range
$buf_rdi $c [expr {$z1 - 2}]] { }]
454 set p
[string range
$buf_rdi $z1 [expr {$z2 - 1}]]
456 [encoding convertfrom
$p] \
458 [list
[lindex
$i 0] [lindex
$i 2]] \
464 set buf_rdi
[string range
$buf_rdi $c end
]
469 rescan_done
$fd buf_rdi
$after
472 proc read_diff_files
{fd after
} {
475 append buf_rdf
[read $fd]
477 set n
[string length
$buf_rdf]
479 set z1
[string first
"\0" $buf_rdf $c]
482 set z2
[string first
"\0" $buf_rdf $z1]
486 set i
[split [string range
$buf_rdf $c [expr {$z1 - 2}]] { }]
487 set p
[string range
$buf_rdf $z1 [expr {$z2 - 1}]]
489 [encoding convertfrom
$p] \
492 [list
[lindex
$i 0] [lindex
$i 2]]
497 set buf_rdf
[string range
$buf_rdf $c end
]
502 rescan_done
$fd buf_rdf
$after
505 proc read_ls_others
{fd after
} {
508 append buf_rlo
[read $fd]
509 set pck
[split $buf_rlo "\0"]
510 set buf_rlo
[lindex
$pck end
]
511 foreach p
[lrange
$pck 0 end-1
] {
512 merge_state
[encoding convertfrom
$p] ?O
514 rescan_done
$fd buf_rlo
$after
517 proc rescan_done
{fd buf after
} {
519 global file_states repo_config
522 if {![eof
$fd]} return
525 if {[incr rescan_active
-1] > 0} return
534 proc prune_selection
{} {
535 global file_states selected_paths
537 foreach path
[array names selected_paths
] {
538 if {[catch
{set still_here
$file_states($path)}]} {
539 unset selected_paths
($path)
544 ######################################################################
549 global ui_diff current_diff_path current_diff_header
550 global ui_index ui_workdir
552 $ui_diff conf
-state normal
553 $ui_diff delete
0.0 end
554 $ui_diff conf
-state disabled
556 set current_diff_path
{}
557 set current_diff_header
{}
559 $ui_index tag remove in_diff
0.0 end
560 $ui_workdir tag remove in_diff
0.0 end
563 proc reshow_diff
{} {
564 global ui_status_value file_states file_lists
565 global current_diff_path current_diff_side
567 set p
$current_diff_path
569 ||
$current_diff_side eq
{}
570 ||
[catch
{set s
$file_states($p)}]
571 ||
[lsearch
-sorted -exact $file_lists($current_diff_side) $p] == -1} {
574 show_diff
$p $current_diff_side
578 proc handle_empty_diff
{} {
579 global current_diff_path file_states file_lists
581 set path
$current_diff_path
582 set s
$file_states($path)
583 if {[lindex
$s 0] ne
{_M
}} return
585 info_popup
"No differences detected.
587 [short_path $path] has no changes.
589 The modification date of this file was updated
590 by another application, but the content within
591 the file was not changed.
593 A rescan will be automatically started to find
594 other files which may have the same state."
597 display_file
$path __
598 rescan
{set ui_status_value
{Ready.
}} 0
601 proc show_diff
{path w
{lno
{}}} {
602 global file_states file_lists
603 global is_3way_diff diff_active repo_config
604 global ui_diff ui_status_value ui_index ui_workdir
605 global current_diff_path current_diff_side current_diff_header
607 if {$diff_active ||
![lock_index
read]} return
611 set lno
[lsearch
-sorted -exact $file_lists($w) $path]
617 $w tag add in_diff
$lno.0 [expr {$lno + 1}].0
620 set s
$file_states($path)
624 set current_diff_path
$path
625 set current_diff_side
$w
626 set current_diff_header
{}
627 set ui_status_value
"Loading diff of [escape_path $path]..."
629 # - Git won't give us the diff, there's nothing to compare to!
632 set max_sz
[expr {128 * 1024}]
634 set fd
[open
$path r
]
635 set content
[read $fd $max_sz]
637 set sz
[file size
$path]
641 set ui_status_value
"Unable to display [escape_path $path]"
642 error_popup
"Error loading file:\n\n$err"
645 $ui_diff conf
-state normal
646 if {![catch
{set type [exec file $path]}]} {
647 set n
[string length
$path]
648 if {[string equal
-length $n $path $type]} {
649 set type [string range
$type $n end
]
650 regsub
{^
:?\s
*} $type {} type
652 $ui_diff insert end
"* $type\n" d_@
654 if {[string first
"\0" $content] != -1} {
655 $ui_diff insert end \
656 "* Binary file (not showing content)." \
660 $ui_diff insert end \
661 "* Untracked file is $sz bytes.
662 * Showing only first $max_sz bytes.
665 $ui_diff insert end
$content
667 $ui_diff insert end
"
668 * Untracked file clipped here by [appname].
669 * To see the entire file, use an external editor.
673 $ui_diff conf
-state disabled
676 set ui_status_value
{Ready.
}
681 if {$w eq
$ui_index} {
682 lappend cmd diff-index
684 } elseif
{$w eq
$ui_workdir} {
685 if {[string index
$m 0] eq
{U
}} {
688 lappend cmd diff-files
693 lappend cmd
--no-color
694 if {$repo_config(gui.diffcontext
) > 0} {
695 lappend cmd
"-U$repo_config(gui.diffcontext)"
697 if {$w eq
$ui_index} {
703 if {[catch
{set fd
[open
$cmd r
]} err
]} {
706 set ui_status_value
"Unable to display [escape_path $path]"
707 error_popup
"Error loading diff:\n\n$err"
715 fileevent
$fd readable
[list read_diff
$fd]
718 proc read_diff
{fd
} {
719 global ui_diff ui_status_value diff_active
720 global is_3way_diff current_diff_header
722 $ui_diff conf
-state normal
723 while {[gets
$fd line
] >= 0} {
724 # -- Cleanup uninteresting diff header lines.
726 if { [string match
{diff --git *} $line]
727 ||
[string match
{diff --cc *} $line]
728 ||
[string match
{diff --combined *} $line]
729 ||
[string match
{--- *} $line]
730 ||
[string match
{+++ *} $line]} {
731 append current_diff_header
$line "\n"
734 if {[string match
{index
*} $line]} continue
735 if {$line eq
{deleted
file mode
120000}} {
736 set line
"deleted symlink"
739 # -- Automatically detect if this is a 3 way diff.
741 if {[string match
{@@@
*} $line]} {set is_3way_diff
1}
743 if {[string match
{mode
*} $line]
744 ||
[string match
{new
file *} $line]
745 ||
[string match
{deleted
file *} $line]
746 ||
[string match
{Binary files
* and
* differ
} $line]
747 ||
$line eq
{\ No newline
at end of
file}
748 ||
[regexp
{^\
* Unmerged path
} $line]} {
750 } elseif
{$is_3way_diff} {
751 set op
[string range
$line 0 1]
761 if {[regexp
{^\
+\
+([<>]{7} |
={7})} $line _g op
]} {
762 set line
[string replace
$line 0 1 { }]
769 puts
"error: Unhandled 3 way diff marker: {$op}"
774 set op
[string index
$line 0]
780 if {[regexp
{^\
+([<>]{7} |
={7})} $line _g op
]} {
781 set line
[string replace
$line 0 0 { }]
788 puts
"error: Unhandled 2 way diff marker: {$op}"
793 $ui_diff insert end
$line $tags
794 if {[string index
$line end
] eq
"\r"} {
795 $ui_diff tag add d_cr
{end
- 2c
}
797 $ui_diff insert end
"\n" $tags
799 $ui_diff conf
-state disabled
805 set ui_status_value
{Ready.
}
807 if {[$ui_diff index end
] eq
{2.0}} {
813 proc apply_hunk
{x y
} {
814 global current_diff_path current_diff_header current_diff_side
815 global ui_diff ui_index file_states
817 if {$current_diff_path eq
{} ||
$current_diff_header eq
{}} return
818 if {![lock_index apply_hunk
]} return
820 set apply_cmd
{git apply
--cached --whitespace=nowarn
}
821 set mi
[lindex
$file_states($current_diff_path) 0]
822 if {$current_diff_side eq
$ui_index} {
824 lappend apply_cmd
--reverse
825 if {[string index
$mi 0] ne
{M
}} {
831 if {[string index
$mi 1] ne
{M
}} {
837 set s_lno
[lindex
[split [$ui_diff index @
$x,$y] .
] 0]
838 set s_lno
[$ui_diff search
-backwards -regexp ^@@
$s_lno.0 0.0]
844 set e_lno
[$ui_diff search
-forwards -regexp ^@@
"$s_lno + 1 lines" end
]
850 set p
[open
"| $apply_cmd" w
]
851 fconfigure
$p -translation binary
-encoding binary
852 puts
-nonewline $p $current_diff_header
853 puts
-nonewline $p [$ui_diff get
$s_lno $e_lno]
855 error_popup
"Failed to $mode selected hunk.\n\n$err"
860 $ui_diff conf
-state normal
861 $ui_diff delete
$s_lno $e_lno
862 $ui_diff conf
-state disabled
864 if {[$ui_diff get
1.0 end
] eq
"\n"} {
870 if {$current_diff_side eq
$ui_index} {
872 } elseif
{[string index
$mi 0] eq
{_
}} {
878 display_file
$current_diff_path $mi
884 ######################################################################
888 proc load_last_commit
{} {
889 global HEAD PARENT MERGE_HEAD commit_type ui_comm
892 if {[llength
$PARENT] == 0} {
893 error_popup
{There is nothing to amend.
895 You are about to create the initial commit.
896 There is no commit before this to amend.
901 repository_state curType curHEAD curMERGE_HEAD
902 if {$curType eq
{merge
}} {
903 error_popup
{Cannot amend
while merging.
905 You are currently
in the middle of a merge that
906 has not been fully completed. You cannot amend
907 the prior commit unless you first abort the
908 current merge activity.
916 set fd
[open
"| git cat-file commit $curHEAD" r
]
917 fconfigure
$fd -encoding binary
-translation lf
918 if {[catch
{set enc
$repo_config(i18n.commitencoding
)}]} {
921 while {[gets
$fd line
] > 0} {
922 if {[string match
{parent
*} $line]} {
923 lappend parents
[string range
$line 7 end
]
924 } elseif
{[string match
{encoding
*} $line]} {
925 set enc
[string tolower
[string range
$line 9 end
]]
928 fconfigure
$fd -encoding $enc
929 set msg
[string trim
[read $fd]]
932 error_popup
"Error loading commit data for amend:\n\n$err"
938 set MERGE_HEAD
[list
]
939 switch
-- [llength
$parents] {
940 0 {set commit_type amend-initial
}
941 1 {set commit_type amend
}
942 default
{set commit_type amend-merge
}
945 $ui_comm delete
0.0 end
946 $ui_comm insert end
$msg
948 $ui_comm edit modified false
949 rescan
{set ui_status_value
{Ready.
}}
952 proc create_new_commit
{} {
953 global commit_type ui_comm
955 set commit_type normal
956 $ui_comm delete
0.0 end
958 $ui_comm edit modified false
959 rescan
{set ui_status_value
{Ready.
}}
962 set GIT_COMMITTER_IDENT
{}
964 proc committer_ident
{} {
965 global GIT_COMMITTER_IDENT
967 if {$GIT_COMMITTER_IDENT eq
{}} {
968 if {[catch
{set me
[exec git var GIT_COMMITTER_IDENT
]} err
]} {
969 error_popup
"Unable to obtain your identity:\n\n$err"
972 if {![regexp
{^
(.
*) [0-9]+ [-+0-9]+$
} \
973 $me me GIT_COMMITTER_IDENT
]} {
974 error_popup
"Invalid GIT_COMMITTER_IDENT:\n\n$me"
979 return $GIT_COMMITTER_IDENT
982 proc commit_tree
{} {
983 global HEAD commit_type file_states ui_comm repo_config
984 global ui_status_value pch_error
986 if {[committer_ident
] eq
{}} return
987 if {![lock_index update
]} return
989 # -- Our in memory state should match the repository.
991 repository_state curType curHEAD curMERGE_HEAD
992 if {[string match amend
* $commit_type]
993 && $curType eq
{normal
}
994 && $curHEAD eq
$HEAD} {
995 } elseif
{$commit_type ne
$curType ||
$HEAD ne
$curHEAD} {
996 info_popup
{Last scanned state does not match repository state.
998 Another Git program has modified this repository
999 since the last scan. A rescan must be performed
1000 before another commit can be created.
1002 The rescan will be automatically started now.
1005 rescan
{set ui_status_value
{Ready.
}}
1009 # -- At least one file should differ in the index.
1012 foreach path
[array names file_states
] {
1013 switch
-glob -- [lindex
$file_states($path) 0] {
1017 M?
{set files_ready
1}
1019 error_popup
"Unmerged files cannot be committed.
1021 File [short_path $path] has merge conflicts.
1022 You must resolve them and add the file before committing.
1028 error_popup
"Unknown file state [lindex $s 0] detected.
1030 File [short_path $path] cannot be committed by this program.
1035 if {!$files_ready} {
1036 info_popup
{No changes to commit.
1038 You must add
at least
1 file before you can commit.
1044 # -- A message is required.
1046 set msg
[string trim
[$ui_comm get
1.0 end
]]
1047 regsub
-all -line {[ \t\r]+$
} $msg {} msg
1049 error_popup
{Please supply a commit message.
1051 A good commit message has the following format
:
1053 - First line
: Describe
in one sentance what you did.
1054 - Second line
: Blank
1055 - Remaining lines
: Describe why this change is good.
1061 # -- Run the pre-commit hook.
1063 set pchook
[gitdir hooks pre-commit
]
1065 # On Cygwin [file executable] might lie so we need to ask
1066 # the shell if the hook is executable. Yes that's annoying.
1068 if {[is_Windows
] && [file isfile
$pchook]} {
1069 set pchook
[list sh
-c [concat \
1070 "if test -x \"$pchook\";" \
1071 "then exec \"$pchook\" 2>&1;" \
1073 } elseif
{[file executable
$pchook]} {
1074 set pchook
[list
$pchook |
& cat]
1076 commit_writetree
$curHEAD $msg
1080 set ui_status_value
{Calling pre-commit hook...
}
1082 set fd_ph
[open
"| $pchook" r
]
1083 fconfigure
$fd_ph -blocking 0 -translation binary
1084 fileevent
$fd_ph readable \
1085 [list commit_prehook_wait
$fd_ph $curHEAD $msg]
1088 proc commit_prehook_wait
{fd_ph curHEAD msg
} {
1089 global pch_error ui_status_value
1091 append pch_error
[read $fd_ph]
1092 fconfigure
$fd_ph -blocking 1
1094 if {[catch
{close
$fd_ph}]} {
1095 set ui_status_value
{Commit declined by pre-commit hook.
}
1096 hook_failed_popup pre-commit
$pch_error
1099 commit_writetree
$curHEAD $msg
1104 fconfigure
$fd_ph -blocking 0
1107 proc commit_writetree
{curHEAD msg
} {
1108 global ui_status_value
1110 set ui_status_value
{Committing changes...
}
1111 set fd_wt
[open
"| git write-tree" r
]
1112 fileevent
$fd_wt readable \
1113 [list commit_committree
$fd_wt $curHEAD $msg]
1116 proc commit_committree
{fd_wt curHEAD msg
} {
1117 global HEAD PARENT MERGE_HEAD commit_type
1118 global single_commit all_heads current_branch
1119 global ui_status_value ui_comm selected_commit_type
1120 global file_states selected_paths rescan_active
1124 if {$tree_id eq
{} ||
[catch
{close
$fd_wt} err
]} {
1125 error_popup
"write-tree failed:\n\n$err"
1126 set ui_status_value
{Commit failed.
}
1131 # -- Build the message.
1133 set msg_p
[gitdir COMMIT_EDITMSG
]
1134 set msg_wt
[open
$msg_p w
]
1135 if {[catch
{set enc
$repo_config(i18n.commitencoding
)}]} {
1138 fconfigure
$msg_wt -encoding $enc -translation binary
1139 puts
-nonewline $msg_wt $msg
1142 # -- Create the commit.
1144 set cmd
[list git commit-tree
$tree_id]
1145 set parents
[concat
$PARENT $MERGE_HEAD]
1146 if {[llength
$parents] > 0} {
1147 foreach p
$parents {
1151 # git commit-tree writes to stderr during initial commit.
1152 lappend cmd
2>/dev
/null
1155 if {[catch
{set cmt_id
[eval exec $cmd]} err
]} {
1156 error_popup
"commit-tree failed:\n\n$err"
1157 set ui_status_value
{Commit failed.
}
1162 # -- Update the HEAD ref.
1165 if {$commit_type ne
{normal
}} {
1166 append reflogm
" ($commit_type)"
1168 set i
[string first
"\n" $msg]
1170 append reflogm
{: } [string range
$msg 0 [expr {$i - 1}]]
1172 append reflogm
{: } $msg
1174 set cmd
[list git update-ref
-m $reflogm HEAD
$cmt_id $curHEAD]
1175 if {[catch
{eval exec $cmd} err
]} {
1176 error_popup
"update-ref failed:\n\n$err"
1177 set ui_status_value
{Commit failed.
}
1182 # -- Make sure our current branch exists.
1184 if {$commit_type eq
{initial
}} {
1185 lappend all_heads
$current_branch
1186 set all_heads
[lsort
-unique $all_heads]
1187 populate_branch_menu
1190 # -- Cleanup after ourselves.
1192 catch
{file delete
$msg_p}
1193 catch
{file delete
[gitdir MERGE_HEAD
]}
1194 catch
{file delete
[gitdir MERGE_MSG
]}
1195 catch
{file delete
[gitdir SQUASH_MSG
]}
1196 catch
{file delete
[gitdir GITGUI_MSG
]}
1198 # -- Let rerere do its thing.
1200 if {[file isdirectory
[gitdir rr-cache
]]} {
1201 catch
{exec git rerere
}
1204 # -- Run the post-commit hook.
1206 set pchook
[gitdir hooks post-commit
]
1207 if {[is_Windows
] && [file isfile
$pchook]} {
1208 set pchook
[list sh
-c [concat \
1209 "if test -x \"$pchook\";" \
1210 "then exec \"$pchook\";" \
1212 } elseif
{![file executable
$pchook]} {
1215 if {$pchook ne
{}} {
1216 catch
{exec $pchook &}
1219 $ui_comm delete
0.0 end
1221 $ui_comm edit modified false
1223 if {$single_commit} do_quit
1225 # -- Update in memory status
1227 set selected_commit_type new
1228 set commit_type normal
1231 set MERGE_HEAD
[list
]
1233 foreach path
[array names file_states
] {
1234 set s
$file_states($path)
1236 switch
-glob -- $m {
1244 unset file_states
($path)
1245 catch
{unset selected_paths
($path)}
1248 set file_states
($path) [list _O
[lindex
$s 1] {} {}]
1254 set file_states
($path) [list \
1255 _
[string index
$m 1] \
1266 set ui_status_value \
1267 "Changes committed as [string range $cmt_id 0 7]."
1270 ######################################################################
1274 proc fetch_from
{remote
} {
1275 set w
[new_console \
1277 "Fetching new changes from $remote"]
1278 set cmd
[list git fetch
]
1280 console_exec
$w $cmd console_done
1283 proc push_to
{remote
} {
1284 set w
[new_console \
1286 "Pushing changes to $remote"]
1287 set cmd
[list git push
]
1290 console_exec
$w $cmd console_done
1293 ######################################################################
1297 proc mapicon
{w state path
} {
1300 if {[catch
{set r
$all_icons($state$w)}]} {
1301 puts
"error: no icon for $w state={$state} $path"
1307 proc mapdesc
{state path
} {
1310 if {[catch
{set r
$all_descs($state)}]} {
1311 puts
"error: no desc for state={$state} $path"
1317 proc escape_path
{path
} {
1318 regsub
-all "\n" $path "\\n" path
1322 proc short_path
{path
} {
1323 return [escape_path
[lindex
[file split $path] end
]]
1327 set null_sha1
[string repeat
0 40]
1329 proc merge_state
{path new_state
{head_info
{}} {index_info
{}}} {
1330 global file_states next_icon_id null_sha1
1332 set s0
[string index
$new_state 0]
1333 set s1
[string index
$new_state 1]
1335 if {[catch
{set info
$file_states($path)}]} {
1337 set icon n
[incr next_icon_id
]
1339 set state
[lindex
$info 0]
1340 set icon
[lindex
$info 1]
1341 if {$head_info eq
{}} {set head_info
[lindex
$info 2]}
1342 if {$index_info eq
{}} {set index_info
[lindex
$info 3]}
1345 if {$s0 eq
{?
}} {set s0
[string index
$state 0]} \
1346 elseif
{$s0 eq
{_
}} {set s0 _
}
1348 if {$s1 eq
{?
}} {set s1
[string index
$state 1]} \
1349 elseif
{$s1 eq
{_
}} {set s1 _
}
1351 if {$s0 eq
{A
} && $s1 eq
{_
} && $head_info eq
{}} {
1352 set head_info
[list
0 $null_sha1]
1353 } elseif
{$s0 ne
{_
} && [string index
$state 0] eq
{_
}
1354 && $head_info eq
{}} {
1355 set head_info
$index_info
1358 set file_states
($path) [list
$s0$s1 $icon \
1359 $head_info $index_info \
1364 proc display_file_helper
{w path icon_name old_m new_m
} {
1367 if {$new_m eq
{_
}} {
1368 set lno
[lsearch
-sorted -exact $file_lists($w) $path]
1370 set file_lists
($w) [lreplace
$file_lists($w) $lno $lno]
1372 $w conf
-state normal
1373 $w delete
$lno.0 [expr {$lno + 1}].0
1374 $w conf
-state disabled
1376 } elseif
{$old_m eq
{_
} && $new_m ne
{_
}} {
1377 lappend file_lists
($w) $path
1378 set file_lists
($w) [lsort
-unique $file_lists($w)]
1379 set lno
[lsearch
-sorted -exact $file_lists($w) $path]
1381 $w conf
-state normal
1382 $w image create
$lno.0 \
1383 -align center
-padx 5 -pady 1 \
1385 -image [mapicon
$w $new_m $path]
1386 $w insert
$lno.1 "[escape_path $path]\n"
1387 $w conf
-state disabled
1388 } elseif
{$old_m ne
$new_m} {
1389 $w conf
-state normal
1390 $w image conf
$icon_name -image [mapicon
$w $new_m $path]
1391 $w conf
-state disabled
1395 proc display_file
{path state
} {
1396 global file_states selected_paths
1397 global ui_index ui_workdir
1399 set old_m
[merge_state
$path $state]
1400 set s
$file_states($path)
1401 set new_m
[lindex
$s 0]
1402 set icon_name
[lindex
$s 1]
1404 set o
[string index
$old_m 0]
1405 set n
[string index
$new_m 0]
1412 display_file_helper
$ui_index $path $icon_name $o $n
1414 if {[string index
$old_m 0] eq
{U
}} {
1417 set o
[string index
$old_m 1]
1419 if {[string index
$new_m 0] eq
{U
}} {
1422 set n
[string index
$new_m 1]
1424 display_file_helper
$ui_workdir $path $icon_name $o $n
1426 if {$new_m eq
{__
}} {
1427 unset file_states
($path)
1428 catch
{unset selected_paths
($path)}
1432 proc display_all_files_helper
{w path icon_name m
} {
1435 lappend file_lists
($w) $path
1436 set lno
[expr {[lindex
[split [$w index end
] .
] 0] - 1}]
1437 $w image create end \
1438 -align center
-padx 5 -pady 1 \
1440 -image [mapicon
$w $m $path]
1441 $w insert end
"[escape_path $path]\n"
1444 proc display_all_files
{} {
1445 global ui_index ui_workdir
1446 global file_states file_lists
1449 $ui_index conf
-state normal
1450 $ui_workdir conf
-state normal
1452 $ui_index delete
0.0 end
1453 $ui_workdir delete
0.0 end
1456 set file_lists
($ui_index) [list
]
1457 set file_lists
($ui_workdir) [list
]
1459 foreach path
[lsort
[array names file_states
]] {
1460 set s
$file_states($path)
1462 set icon_name
[lindex
$s 1]
1464 set s
[string index
$m 0]
1465 if {$s ne
{U
} && $s ne
{_
}} {
1466 display_all_files_helper
$ui_index $path \
1470 if {[string index
$m 0] eq
{U
}} {
1473 set s
[string index
$m 1]
1476 display_all_files_helper
$ui_workdir $path \
1481 $ui_index conf
-state disabled
1482 $ui_workdir conf
-state disabled
1485 proc update_indexinfo
{msg pathList after
} {
1486 global update_index_cp ui_status_value
1488 if {![lock_index update
]} return
1490 set update_index_cp
0
1491 set pathList
[lsort
$pathList]
1492 set totalCnt
[llength
$pathList]
1493 set batch [expr {int
($totalCnt * .01) + 1}]
1494 if {$batch > 25} {set batch 25}
1496 set ui_status_value
[format \
1497 "$msg... %i/%i files (%.2f%%)" \
1501 set fd
[open
"| git update-index -z --index-info" w
]
1508 fileevent
$fd writable
[list \
1509 write_update_indexinfo \
1519 proc write_update_indexinfo
{fd pathList totalCnt
batch msg after
} {
1520 global update_index_cp ui_status_value
1521 global file_states current_diff_path
1523 if {$update_index_cp >= $totalCnt} {
1530 for {set i
$batch} \
1531 {$update_index_cp < $totalCnt && $i > 0} \
1533 set path
[lindex
$pathList $update_index_cp]
1534 incr update_index_cp
1536 set s
$file_states($path)
1537 switch
-glob -- [lindex
$s 0] {
1544 set info
[lindex
$s 2]
1545 if {$info eq
{}} continue
1547 puts
-nonewline $fd "$info\t[encoding convertto $path]\0"
1548 display_file
$path $new
1551 set ui_status_value
[format \
1552 "$msg... %i/%i files (%.2f%%)" \
1555 [expr {100.0 * $update_index_cp / $totalCnt}]]
1558 proc update_index
{msg pathList after
} {
1559 global update_index_cp ui_status_value
1561 if {![lock_index update
]} return
1563 set update_index_cp
0
1564 set pathList
[lsort
$pathList]
1565 set totalCnt
[llength
$pathList]
1566 set batch [expr {int
($totalCnt * .01) + 1}]
1567 if {$batch > 25} {set batch 25}
1569 set ui_status_value
[format \
1570 "$msg... %i/%i files (%.2f%%)" \
1574 set fd
[open
"| git update-index --add --remove -z --stdin" w
]
1581 fileevent
$fd writable
[list \
1582 write_update_index \
1592 proc write_update_index
{fd pathList totalCnt
batch msg after
} {
1593 global update_index_cp ui_status_value
1594 global file_states current_diff_path
1596 if {$update_index_cp >= $totalCnt} {
1603 for {set i
$batch} \
1604 {$update_index_cp < $totalCnt && $i > 0} \
1606 set path
[lindex
$pathList $update_index_cp]
1607 incr update_index_cp
1609 switch
-glob -- [lindex
$file_states($path) 0] {
1615 if {[file exists
$path]} {
1624 puts
-nonewline $fd "[encoding convertto $path]\0"
1625 display_file
$path $new
1628 set ui_status_value
[format \
1629 "$msg... %i/%i files (%.2f%%)" \
1632 [expr {100.0 * $update_index_cp / $totalCnt}]]
1635 proc checkout_index
{msg pathList after
} {
1636 global update_index_cp ui_status_value
1638 if {![lock_index update
]} return
1640 set update_index_cp
0
1641 set pathList
[lsort
$pathList]
1642 set totalCnt
[llength
$pathList]
1643 set batch [expr {int
($totalCnt * .01) + 1}]
1644 if {$batch > 25} {set batch 25}
1646 set ui_status_value
[format \
1647 "$msg... %i/%i files (%.2f%%)" \
1651 set cmd
[list git checkout-index
]
1657 set fd
[open
"| $cmd " w
]
1664 fileevent
$fd writable
[list \
1665 write_checkout_index \
1675 proc write_checkout_index
{fd pathList totalCnt
batch msg after
} {
1676 global update_index_cp ui_status_value
1677 global file_states current_diff_path
1679 if {$update_index_cp >= $totalCnt} {
1686 for {set i
$batch} \
1687 {$update_index_cp < $totalCnt && $i > 0} \
1689 set path
[lindex
$pathList $update_index_cp]
1690 incr update_index_cp
1691 switch
-glob -- [lindex
$file_states($path) 0] {
1695 puts
-nonewline $fd "[encoding convertto $path]\0"
1696 display_file
$path ?_
1701 set ui_status_value
[format \
1702 "$msg... %i/%i files (%.2f%%)" \
1705 [expr {100.0 * $update_index_cp / $totalCnt}]]
1708 ######################################################################
1710 ## branch management
1712 proc is_tracking_branch
{name
} {
1713 global tracking_branches
1715 if {![catch
{set info
$tracking_branches($name)}]} {
1718 foreach t
[array names tracking_branches
] {
1719 if {[string match
{*/\
*} $t] && [string match
$t $name]} {
1726 proc load_all_heads
{} {
1729 set all_heads
[list
]
1730 set fd
[open
"| git for-each-ref --format=%(refname) refs/heads" r
]
1731 while {[gets
$fd line
] > 0} {
1732 if {[is_tracking_branch
$line]} continue
1733 if {![regsub ^refs
/heads
/ $line {} name
]} continue
1734 lappend all_heads
$name
1738 set all_heads
[lsort
$all_heads]
1741 proc populate_branch_menu
{} {
1742 global all_heads disable_on_lock
1745 set last
[$m index last
]
1746 for {set i
0} {$i <= $last} {incr i
} {
1747 if {[$m type $i] eq
{separator
}} {
1750 foreach a
$disable_on_lock {
1751 if {[lindex
$a 0] ne
$m ||
[lindex
$a 2] < $i} {
1755 set disable_on_lock
$new_dol
1760 if {$all_heads ne
{}} {
1763 foreach b
$all_heads {
1764 $m add radiobutton \
1766 -command [list switch_branch
$b] \
1767 -variable current_branch \
1770 lappend disable_on_lock \
1771 [list
$m entryconf
[$m index last
] -state]
1775 proc all_tracking_branches
{} {
1776 global tracking_branches
1778 set all_trackings
{}
1780 foreach name
[array names tracking_branches
] {
1781 if {[regsub
{/\
*$
} $name {} name
]} {
1784 regsub ^refs
/(heads|remotes
)/ $name {} name
1785 lappend all_trackings
$name
1790 set fd
[open
"| git for-each-ref --format=%(refname) $cmd" r
]
1791 while {[gets
$fd name
] > 0} {
1792 regsub ^refs
/(heads|remotes
)/ $name {} name
1793 lappend all_trackings
$name
1798 return [lsort
-unique $all_trackings]
1801 proc do_create_branch_action
{w
} {
1802 global all_heads null_sha1 repo_config
1803 global create_branch_checkout create_branch_revtype
1804 global create_branch_head create_branch_trackinghead
1805 global create_branch_name create_branch_revexp
1807 set newbranch
$create_branch_name
1808 if {$newbranch eq
{}
1809 ||
$newbranch eq
$repo_config(gui.newbranchtemplate
)} {
1813 -title [wm title
$w] \
1815 -message "Please supply a branch name."
1816 focus
$w.desc.name_t
1819 if {![catch
{exec git show-ref
--verify -- "refs/heads/$newbranch"}]} {
1823 -title [wm title
$w] \
1825 -message "Branch '$newbranch' already exists."
1826 focus
$w.desc.name_t
1829 if {[catch
{exec git check-ref-format
"heads/$newbranch"}]} {
1833 -title [wm title
$w] \
1835 -message "We do not like '$newbranch' as a branch name."
1836 focus
$w.desc.name_t
1841 switch
-- $create_branch_revtype {
1842 head {set rev $create_branch_head}
1843 tracking
{set rev $create_branch_trackinghead}
1844 expression
{set rev $create_branch_revexp}
1846 if {[catch
{set cmt
[exec git rev-parse
--verify "${rev}^0"]}]} {
1850 -title [wm title
$w] \
1852 -message "Invalid starting revision: $rev"
1855 set cmd
[list git update-ref
]
1857 lappend cmd
"branch: Created from $rev"
1858 lappend cmd
"refs/heads/$newbranch"
1860 lappend cmd
$null_sha1
1861 if {[catch
{eval exec $cmd} err
]} {
1865 -title [wm title
$w] \
1867 -message "Failed to create '$newbranch'.\n\n$err"
1871 lappend all_heads
$newbranch
1872 set all_heads
[lsort
$all_heads]
1873 populate_branch_menu
1875 if {$create_branch_checkout} {
1876 switch_branch
$newbranch
1880 proc radio_selector
{varname value args
} {
1881 upvar
#0 $varname var
1885 trace add variable create_branch_head
write \
1886 [list radio_selector create_branch_revtype
head]
1887 trace add variable create_branch_trackinghead
write \
1888 [list radio_selector create_branch_revtype tracking
]
1890 trace add variable delete_branch_head
write \
1891 [list radio_selector delete_branch_checktype
head]
1892 trace add variable delete_branch_trackinghead
write \
1893 [list radio_selector delete_branch_checktype tracking
]
1895 proc do_create_branch
{} {
1896 global all_heads current_branch repo_config
1897 global create_branch_checkout create_branch_revtype
1898 global create_branch_head create_branch_trackinghead
1899 global create_branch_name create_branch_revexp
1901 set w .branch_editor
1903 wm geometry
$w "+[winfo rootx .]+[winfo rooty .]"
1905 label
$w.header
-text {Create New Branch
} \
1907 pack
$w.header
-side top
-fill x
1910 button
$w.buttons.create
-text Create \
1913 -command [list do_create_branch_action
$w]
1914 pack
$w.buttons.create
-side right
1915 button
$w.buttons.cancel
-text {Cancel
} \
1917 -command [list destroy
$w]
1918 pack
$w.buttons.cancel
-side right
-padx 5
1919 pack
$w.buttons
-side bottom
-fill x
-pady 10 -padx 10
1921 labelframe
$w.desc \
1922 -text {Branch Description
} \
1924 label
$w.desc.name_l
-text {Name
:} -font font_ui
1925 entry
$w.desc.name_t \
1929 -textvariable create_branch_name \
1933 if {%d
== 1 && [regexp
{[~^
:?
*\
[\
0- ]} %S
]} {return 0}
1936 grid
$w.desc.name_l
$w.desc.name_t
-sticky we
-padx {0 5}
1937 grid columnconfigure
$w.desc
1 -weight 1
1938 pack
$w.desc
-anchor nw
-fill x
-pady 5 -padx 5
1940 labelframe
$w.from \
1941 -text {Starting Revision
} \
1943 radiobutton
$w.from.head_r \
1944 -text {Local Branch
:} \
1946 -variable create_branch_revtype \
1948 eval tk_optionMenu
$w.from.head_m create_branch_head
$all_heads
1949 grid
$w.from.head_r
$w.from.head_m
-sticky w
1950 set all_trackings
[all_tracking_branches
]
1951 if {$all_trackings ne
{}} {
1952 set create_branch_trackinghead
[lindex
$all_trackings 0]
1953 radiobutton
$w.from.tracking_r \
1954 -text {Tracking Branch
:} \
1956 -variable create_branch_revtype \
1958 eval tk_optionMenu
$w.from.tracking_m \
1959 create_branch_trackinghead \
1961 grid
$w.from.tracking_r
$w.from.tracking_m
-sticky w
1963 radiobutton
$w.from.exp_r \
1964 -text {Revision Expression
:} \
1966 -variable create_branch_revtype \
1968 entry
$w.from.exp_t \
1972 -textvariable create_branch_revexp \
1976 if {%d
== 1 && [regexp
{\s
} %S
]} {return 0}
1977 if {%d
== 1 && [string length
%S
] > 0} {
1978 set create_branch_revtype expression
1982 grid
$w.from.exp_r
$w.from.exp_t
-sticky we
-padx {0 5}
1983 grid columnconfigure
$w.from
1 -weight 1
1984 pack
$w.from
-anchor nw
-fill x
-pady 5 -padx 5
1986 labelframe
$w.postActions \
1987 -text {Post Creation Actions
} \
1989 checkbutton
$w.postActions.checkout \
1990 -text {Checkout after creation
} \
1991 -variable create_branch_checkout \
1993 pack
$w.postActions.checkout
-anchor nw
1994 pack
$w.postActions
-anchor nw
-fill x
-pady 5 -padx 5
1996 set create_branch_checkout
1
1997 set create_branch_head
$current_branch
1998 set create_branch_revtype
head
1999 set create_branch_name
$repo_config(gui.newbranchtemplate
)
2000 set create_branch_revexp
{}
2002 bind $w <Visibility
> "
2004 $w.desc.name_t icursor end
2005 focus $w.desc.name_t
2007 bind $w <Key-Escape
> "destroy $w"
2008 bind $w <Key-Return
> "do_create_branch_action $w;break"
2009 wm title
$w "[appname] ([reponame]): Create Branch"
2013 proc do_delete_branch_action
{w
} {
2015 global delete_branch_checktype delete_branch_head delete_branch_trackinghead
2018 switch
-- $delete_branch_checktype {
2019 head {set check_rev
$delete_branch_head}
2020 tracking
{set check_rev
$delete_branch_trackinghead}
2021 always
{set check_rev
{:none
}}
2023 if {$check_rev eq
{:none
}} {
2025 } elseif
{[catch
{set check_cmt
[exec git rev-parse
--verify "${check_rev}^0"]}]} {
2029 -title [wm title
$w] \
2031 -message "Invalid check revision: $check_rev"
2035 set to_delete
[list
]
2036 set not_merged
[list
]
2037 foreach i
[$w.list.l curselection
] {
2038 set b
[$w.list.l get
$i]
2039 if {[catch
{set o
[exec git rev-parse
--verify $b]}]} continue
2040 if {$check_cmt ne
{}} {
2041 if {$b eq
$check_rev} continue
2042 if {[catch
{set m
[exec git merge-base
$o $check_cmt]}]} continue
2044 lappend not_merged
$b
2048 lappend to_delete
[list
$b $o]
2050 if {$not_merged ne
{}} {
2051 set msg
"The following branches are not completely merged into $check_rev:
2053 - [join $not_merged "\n - "]"
2057 -title [wm title
$w] \
2061 if {$to_delete eq
{}} return
2062 if {$delete_branch_checktype eq
{always
}} {
2063 set msg
{Recovering deleted branches is difficult.
2065 Delete the selected branches?
}
2066 if {[tk_messageBox \
2069 -title [wm title
$w] \
2071 -message $msg] ne
yes} {
2077 foreach i
$to_delete {
2080 if {[catch
{exec git update-ref
-d "refs/heads/$b" $o} err
]} {
2081 append failed
" - $b: $err\n"
2083 set x
[lsearch
-sorted -exact $all_heads $b]
2085 set all_heads
[lreplace
$all_heads $x $x]
2090 if {$failed ne
{}} {
2094 -title [wm title
$w] \
2096 -message "Failed to delete branches:\n$failed"
2099 set all_heads
[lsort
$all_heads]
2100 populate_branch_menu
2104 proc do_delete_branch
{} {
2105 global all_heads tracking_branches current_branch
2106 global delete_branch_checktype delete_branch_head delete_branch_trackinghead
2108 set w .branch_editor
2110 wm geometry
$w "+[winfo rootx .]+[winfo rooty .]"
2112 label
$w.header
-text {Delete Local Branch
} \
2114 pack
$w.header
-side top
-fill x
2117 button
$w.buttons.create
-text Delete \
2119 -command [list do_delete_branch_action
$w]
2120 pack
$w.buttons.create
-side right
2121 button
$w.buttons.cancel
-text {Cancel
} \
2123 -command [list destroy
$w]
2124 pack
$w.buttons.cancel
-side right
-padx 5
2125 pack
$w.buttons
-side bottom
-fill x
-pady 10 -padx 10
2127 labelframe
$w.list \
2128 -text {Local Branches
} \
2133 -selectmode extended \
2135 foreach h
$all_heads {
2136 if {$h ne
$current_branch} {
2137 $w.list.l insert end
$h
2140 pack
$w.list.l
-fill both
-pady 5 -padx 5
2141 pack
$w.list
-fill both
-pady 5 -padx 5
2143 labelframe
$w.validate \
2144 -text {Delete Only If
} \
2146 radiobutton
$w.validate.head_r \
2147 -text {Merged Into Local Branch
:} \
2149 -variable delete_branch_checktype \
2151 eval tk_optionMenu
$w.validate.head_m delete_branch_head
$all_heads
2152 grid
$w.validate.head_r
$w.validate.head_m
-sticky w
2153 set all_trackings
[all_tracking_branches
]
2154 if {$all_trackings ne
{}} {
2155 set delete_branch_trackinghead
[lindex
$all_trackings 0]
2156 radiobutton
$w.validate.tracking_r \
2157 -text {Merged Into Tracking Branch
:} \
2159 -variable delete_branch_checktype \
2161 eval tk_optionMenu
$w.validate.tracking_m \
2162 delete_branch_trackinghead \
2164 grid
$w.validate.tracking_r
$w.validate.tracking_m
-sticky w
2166 radiobutton
$w.validate.always_r \
2167 -text {Always
(Do not perform merge checks
)} \
2169 -variable delete_branch_checktype \
2171 grid
$w.validate.always_r
-columnspan 2 -sticky w
2172 grid columnconfigure
$w.validate
1 -weight 1
2173 pack
$w.validate
-anchor nw
-fill x
-pady 5 -padx 5
2175 set delete_branch_head
$current_branch
2176 set delete_branch_checktype
head
2178 bind $w <Visibility
> "grab $w; focus $w"
2179 bind $w <Key-Escape
> "destroy $w"
2180 wm title
$w "[appname] ([reponame]): Delete Branch"
2184 proc switch_branch
{new_branch
} {
2185 global HEAD commit_type current_branch repo_config
2187 if {![lock_index switch
]} return
2189 # -- Our in memory state should match the repository.
2191 repository_state curType curHEAD curMERGE_HEAD
2192 if {[string match amend
* $commit_type]
2193 && $curType eq
{normal
}
2194 && $curHEAD eq
$HEAD} {
2195 } elseif
{$commit_type ne
$curType ||
$HEAD ne
$curHEAD} {
2196 info_popup
{Last scanned state does not match repository state.
2198 Another Git program has modified this repository
2199 since the last scan. A rescan must be performed
2200 before the current branch can be changed.
2202 The rescan will be automatically started now.
2205 rescan
{set ui_status_value
{Ready.
}}
2209 # -- Don't do a pointless switch.
2211 if {$current_branch eq
$new_branch} {
2216 if {$repo_config(gui.trustmtime
) eq
{true
}} {
2217 switch_branch_stage2
{} $new_branch
2219 set ui_status_value
{Refreshing
file status...
}
2220 set cmd
[list git update-index
]
2222 lappend cmd
--unmerged
2223 lappend cmd
--ignore-missing
2224 lappend cmd
--refresh
2225 set fd_rf
[open
"| $cmd" r
]
2226 fconfigure
$fd_rf -blocking 0 -translation binary
2227 fileevent
$fd_rf readable \
2228 [list switch_branch_stage2
$fd_rf $new_branch]
2232 proc switch_branch_stage2
{fd_rf new_branch
} {
2233 global ui_status_value HEAD
2237 if {![eof
$fd_rf]} return
2241 set ui_status_value
"Updating working directory to '$new_branch'..."
2242 set cmd
[list git read-tree
]
2245 lappend cmd
--exclude-per-directory=.gitignore
2247 lappend cmd
$new_branch
2248 set fd_rt
[open
"| $cmd" r
]
2249 fconfigure
$fd_rt -blocking 0 -translation binary
2250 fileevent
$fd_rt readable \
2251 [list switch_branch_readtree_wait
$fd_rt $new_branch]
2254 proc switch_branch_readtree_wait
{fd_rt new_branch
} {
2255 global selected_commit_type commit_type HEAD MERGE_HEAD PARENT
2256 global current_branch
2257 global ui_comm ui_status_value
2259 # -- We never get interesting output on stdout; only stderr.
2262 fconfigure
$fd_rt -blocking 1
2263 if {![eof
$fd_rt]} {
2264 fconfigure
$fd_rt -blocking 0
2268 # -- The working directory wasn't in sync with the index and
2269 # we'd have to overwrite something to make the switch. A
2270 # merge is required.
2272 if {[catch
{close
$fd_rt} err
]} {
2273 regsub
{^fatal
: } $err {} err
2274 warn_popup
"File level merge required.
2278 Staying on branch '$current_branch'."
2279 set ui_status_value
"Aborted checkout of '$new_branch' (file level merging is required)."
2284 # -- Update the symbolic ref. Core git doesn't even check for failure
2285 # here, it Just Works(tm). If it doesn't we are in some really ugly
2286 # state that is difficult to recover from within git-gui.
2288 if {[catch
{exec git symbolic-ref HEAD
"refs/heads/$new_branch"} err
]} {
2289 error_popup
"Failed to set current branch.
2291 This working directory is only partially switched.
2292 We successfully updated your files, but failed to
2293 update an internal Git file.
2295 This should not have occurred. [appname] will now
2303 # -- Update our repository state. If we were previously in amend mode
2304 # we need to toss the current buffer and do a full rescan to update
2305 # our file lists. If we weren't in amend mode our file lists are
2306 # accurate and we can avoid the rescan.
2309 set selected_commit_type new
2310 if {[string match amend
* $commit_type]} {
2311 $ui_comm delete
0.0 end
2313 $ui_comm edit modified false
2314 rescan
{set ui_status_value
"Checked out branch '$current_branch'."}
2316 repository_state commit_type HEAD MERGE_HEAD
2318 set ui_status_value
"Checked out branch '$current_branch'."
2322 ######################################################################
2324 ## remote management
2326 proc load_all_remotes
{} {
2328 global all_remotes tracking_branches
2330 set all_remotes
[list
]
2331 array
unset tracking_branches
2333 set rm_dir
[gitdir remotes
]
2334 if {[file isdirectory
$rm_dir]} {
2335 set all_remotes
[glob \
2339 -directory $rm_dir *]
2341 foreach name
$all_remotes {
2343 set fd
[open
[file join $rm_dir $name] r
]
2344 while {[gets
$fd line
] >= 0} {
2345 if {![regexp
{^Pull
:[ ]*([^
:]+):(.
+)$
} \
2346 $line line src dst
]} continue
2347 if {![regexp ^refs
/ $dst]} {
2348 set dst
"refs/heads/$dst"
2350 set tracking_branches
($dst) [list
$name $src]
2357 foreach line
[array names repo_config remote.
*.url
] {
2358 if {![regexp ^remote\.
(.
*)\.url\$
$line line name
]} continue
2359 lappend all_remotes
$name
2361 if {[catch
{set fl
$repo_config(remote.
$name.fetch
)}]} {
2365 if {![regexp
{^
([^
:]+):(.
+)$
} $line line src dst
]} continue
2366 if {![regexp ^refs
/ $dst]} {
2367 set dst
"refs/heads/$dst"
2369 set tracking_branches
($dst) [list
$name $src]
2373 set all_remotes
[lsort
-unique $all_remotes]
2376 proc populate_fetch_menu
{} {
2377 global all_remotes repo_config
2380 foreach r
$all_remotes {
2382 if {![catch
{set a
$repo_config(remote.
$r.url
)}]} {
2383 if {![catch
{set a
$repo_config(remote.
$r.fetch
)}]} {
2388 set fd
[open
[gitdir remotes
$r] r
]
2389 while {[gets
$fd n
] >= 0} {
2390 if {[regexp
{^Pull
:[ \t]*([^
:]+):} $n]} {
2401 -label "Fetch from $r..." \
2402 -command [list fetch_from
$r] \
2408 proc populate_push_menu
{} {
2409 global all_remotes repo_config
2413 foreach r
$all_remotes {
2415 if {![catch
{set a
$repo_config(remote.
$r.url
)}]} {
2416 if {![catch
{set a
$repo_config(remote.
$r.push
)}]} {
2421 set fd
[open
[gitdir remotes
$r] r
]
2422 while {[gets
$fd n
] >= 0} {
2423 if {[regexp
{^Push
:[ \t]*([^
:]+):} $n]} {
2437 -label "Push to $r..." \
2438 -command [list push_to
$r] \
2445 proc start_push_anywhere_action
{w
} {
2446 global push_urltype push_remote push_url push_thin push_tags
2449 switch
-- $push_urltype {
2450 remote
{set r_url
$push_remote}
2451 url
{set r_url
$push_url}
2453 if {$r_url eq
{}} return
2455 set cmd
[list git push
]
2465 foreach i
[$w.
source.l curselection
] {
2466 set b
[$w.
source.l get
$i]
2467 lappend cmd
"refs/heads/$b:refs/heads/$b"
2472 } elseif
{$cnt == 1} {
2478 set cons
[new_console
"push $r_url" "Pushing $cnt $unit to $r_url"]
2479 console_exec
$cons $cmd console_done
2483 trace add variable push_remote
write \
2484 [list radio_selector push_urltype remote
]
2486 proc do_push_anywhere
{} {
2487 global all_heads all_remotes current_branch
2488 global push_urltype push_remote push_url push_thin push_tags
2492 wm geometry
$w "+[winfo rootx .]+[winfo rooty .]"
2494 label
$w.header
-text {Push Branches
} -font font_uibold
2495 pack
$w.header
-side top
-fill x
2498 button
$w.buttons.create
-text Push \
2500 -command [list start_push_anywhere_action
$w]
2501 pack
$w.buttons.create
-side right
2502 button
$w.buttons.cancel
-text {Cancel
} \
2504 -command [list destroy
$w]
2505 pack
$w.buttons.cancel
-side right
-padx 5
2506 pack
$w.buttons
-side bottom
-fill x
-pady 10 -padx 10
2508 labelframe
$w.
source \
2509 -text {Source Branches
} \
2511 listbox
$w.
source.l \
2514 -selectmode extended \
2516 foreach h
$all_heads {
2517 $w.
source.l insert end
$h
2518 if {$h eq
$current_branch} {
2519 $w.
source.l
select set end
2522 pack
$w.
source.l
-fill both
-pady 5 -padx 5
2523 pack
$w.
source -fill both
-pady 5 -padx 5
2525 labelframe
$w.dest \
2526 -text {Destination Repository
} \
2528 if {$all_remotes ne
{}} {
2529 radiobutton
$w.dest.remote_r \
2532 -variable push_urltype \
2534 eval tk_optionMenu
$w.dest.remote_m push_remote
$all_remotes
2535 grid
$w.dest.remote_r
$w.dest.remote_m
-sticky w
2536 if {[lsearch
-sorted -exact $all_remotes origin
] != -1} {
2537 set push_remote origin
2539 set push_remote
[lindex
$all_remotes 0]
2541 set push_urltype remote
2543 set push_urltype url
2545 radiobutton
$w.dest.url_r \
2546 -text {Arbitrary URL
:} \
2548 -variable push_urltype \
2550 entry
$w.dest.url_t \
2554 -textvariable push_url \
2558 if {%d
== 1 && [regexp
{\s
} %S
]} {return 0}
2559 if {%d
== 1 && [string length
%S
] > 0} {
2560 set push_urltype url
2564 grid
$w.dest.url_r
$w.dest.url_t
-sticky we
-padx {0 5}
2565 grid columnconfigure
$w.dest
1 -weight 1
2566 pack
$w.dest
-anchor nw
-fill x
-pady 5 -padx 5
2568 labelframe
$w.options \
2569 -text {Transfer Options
} \
2571 checkbutton
$w.options.thin \
2572 -text {Use thin pack
(for slow network connections
)} \
2573 -variable push_thin \
2575 grid
$w.options.thin
-columnspan 2 -sticky w
2576 checkbutton
$w.options.tags \
2577 -text {Include tags
} \
2578 -variable push_tags \
2580 grid
$w.options.tags
-columnspan 2 -sticky w
2581 grid columnconfigure
$w.options
1 -weight 1
2582 pack
$w.options
-anchor nw
-fill x
-pady 5 -padx 5
2588 bind $w <Visibility
> "grab $w"
2589 bind $w <Key-Escape
> "destroy $w"
2590 wm title
$w "[appname] ([reponame]): Push"
2594 ######################################################################
2599 global HEAD commit_type file_states
2601 if {[string match amend
* $commit_type]} {
2602 info_popup
{Cannot merge
while amending.
2604 You must finish amending this commit before
2605 starting any
type of merge.
2610 if {[committer_ident
] eq
{}} {return 0}
2611 if {![lock_index merge
]} {return 0}
2613 # -- Our in memory state should match the repository.
2615 repository_state curType curHEAD curMERGE_HEAD
2616 if {$commit_type ne
$curType ||
$HEAD ne
$curHEAD} {
2617 info_popup
{Last scanned state does not match repository state.
2619 Another Git program has modified this repository
2620 since the last scan. A rescan must be performed
2621 before a merge can be performed.
2623 The rescan will be automatically started now.
2626 rescan
{set ui_status_value
{Ready.
}}
2630 foreach path
[array names file_states
] {
2631 switch
-glob -- [lindex
$file_states($path) 0] {
2633 error_popup
"You are in the middle of a conflicted merge.
2635 File [short_path $path] has merge conflicts.
2637 You must resolve them, add the file, and commit to
2638 complete the current merge. Only then can you
2639 begin another merge.
2650 proc visualize_local_merge
{w
} {
2652 foreach i
[$w.
source.l curselection
] {
2653 lappend revs
[$w.
source.l get
$i]
2655 if {$revs eq
{}} return
2656 lappend revs
--not HEAD
2660 proc start_local_merge_action
{w
} {
2663 set cmd
[list git merge
]
2666 foreach i
[$w.
source.l curselection
] {
2667 set b
[$w.
source.l get
$i]
2675 } elseif
{$revcnt == 1} {
2677 } elseif
{$revcnt <= 15} {
2683 -title [wm title
$w] \
2685 -message "Too many branches selected.
2687 You have requested to merge $revcnt branches
2688 in an octopus merge. This exceeds Git's
2689 internal limit of 15 branches per merge.
2691 Please select fewer branches. To merge more
2692 than 15 branches, merge the branches in batches.
2697 set cons
[new_console
"Merge" "Merging [join $names {, }]"]
2698 console_exec
$cons $cmd finish_merge
2699 bind $w <Destroy
> {}
2703 proc finish_merge
{w ok
} {
2706 set msg
{Merge completed successfully.
}
2708 set msg
{Merge failed. Conflict resolution is required.
}
2711 rescan
[list
set ui_status_value
$msg]
2714 proc do_local_merge
{} {
2715 global current_branch
2717 if {![can_merge
]} return
2721 wm geometry
$w "+[winfo rootx .]+[winfo rooty .]"
2724 -text "Merge Into $current_branch" \
2726 pack
$w.header
-side top
-fill x
2729 button
$w.buttons.visualize
-text Visualize \
2731 -command [list visualize_local_merge
$w]
2732 pack
$w.buttons.visualize
-side left
2733 button
$w.buttons.create
-text Merge \
2735 -command [list start_local_merge_action
$w]
2736 pack
$w.buttons.create
-side right
2737 button
$w.buttons.cancel
-text {Cancel
} \
2739 -command [list destroy
$w]
2740 pack
$w.buttons.cancel
-side right
-padx 5
2741 pack
$w.buttons
-side bottom
-fill x
-pady 10 -padx 10
2743 labelframe
$w.
source \
2744 -text {Source Branches
} \
2746 listbox
$w.
source.l \
2749 -selectmode extended \
2750 -yscrollcommand [list
$w.
source.sby
set] \
2752 scrollbar
$w.
source.sby
-command [list
$w.
source.l yview
]
2753 pack
$w.
source.sby
-side right
-fill y
2754 pack
$w.
source.l
-side left
-fill both
-expand 1
2755 pack
$w.
source -fill both
-expand 1 -pady 5 -padx 5
2757 set cmd
[list git for-each-ref
]
2758 lappend cmd
{--format=%(objectname
) %(refname
)}
2759 lappend cmd refs
/heads
2760 lappend cmd refs
/remotes
2761 set fr_fd
[open
"| $cmd" r
]
2762 fconfigure
$fr_fd -translation binary
2763 while {[gets
$fr_fd line
] > 0} {
2764 set line
[split $line { }]
2765 set sha1
([lindex
$line 0]) [lindex
$line 1]
2770 set fr_fd
[open
"| git rev-list --all --not HEAD"]
2771 while {[gets
$fr_fd line
] > 0} {
2772 if {[catch
{set ref
$sha1($line)}]} continue
2773 regsub ^refs
/(heads|remotes
)/ $ref {} ref
2774 lappend to_show
$ref
2778 foreach ref
[lsort
-unique $to_show] {
2779 $w.
source.l insert end
$ref
2782 bind $w <Visibility
> "grab $w"
2783 bind $w <Key-Escape
> "unlock_index;destroy $w"
2784 bind $w <Destroy
> unlock_index
2785 wm title
$w "[appname] ([reponame]): Merge"
2789 proc do_reset_hard
{} {
2790 global HEAD commit_type file_states
2792 if {[string match amend
* $commit_type]} {
2793 info_popup
{Cannot abort
while amending.
2795 You must finish amending this commit.
2800 if {![lock_index abort
]} return
2802 if {[string match
*merge
* $commit_type]} {
2808 if {[ask_popup
"Abort $op?
2810 Aborting the current $op will cause
2811 *ALL* uncommitted changes to be lost.
2813 Continue with aborting the current $op?"] eq
{yes}} {
2814 set fd
[open
"| git read-tree --reset -u HEAD" r
]
2815 fconfigure
$fd -blocking 0 -translation binary
2816 fileevent
$fd readable
[list reset_hard_wait
$fd]
2817 set ui_status_value
{Aborting... please
wait...
}
2823 proc reset_hard_wait
{fd
} {
2831 $ui_comm delete
0.0 end
2832 $ui_comm edit modified false
2834 catch
{file delete
[gitdir MERGE_HEAD
]}
2835 catch
{file delete
[gitdir rr-cache MERGE_RR
]}
2836 catch
{file delete
[gitdir SQUASH_MSG
]}
2837 catch
{file delete
[gitdir MERGE_MSG
]}
2838 catch
{file delete
[gitdir GITGUI_MSG
]}
2840 rescan
{set ui_status_value
{Abort completed. Ready.
}}
2844 ######################################################################
2849 #define mask_width 14
2850 #define mask_height 15
2851 static unsigned char mask_bits
[] = {
2852 0xfe, 0x1f, 0xfe, 0x1f, 0xfe, 0x1f, 0xfe, 0x1f, 0xfe, 0x1f, 0xfe, 0x1f,
2853 0xfe, 0x1f, 0xfe, 0x1f, 0xfe, 0x1f, 0xfe, 0x1f, 0xfe, 0x1f, 0xfe, 0x1f,
2854 0xfe, 0x1f, 0xfe, 0x1f, 0xfe, 0x1f};
2857 image create bitmap file_plain
-background white
-foreground black
-data {
2858 #define plain_width 14
2859 #define plain_height 15
2860 static unsigned char plain_bits
[] = {
2861 0xfe, 0x01, 0x02, 0x03, 0x02, 0x05, 0x02, 0x09, 0x02, 0x1f, 0x02, 0x10,
2862 0x02, 0x10, 0x02, 0x10, 0x02, 0x10, 0x02, 0x10, 0x02, 0x10, 0x02, 0x10,
2863 0x02, 0x10, 0x02, 0x10, 0xfe, 0x1f};
2864 } -maskdata $filemask
2866 image create bitmap file_mod
-background white
-foreground blue
-data {
2867 #define mod_width 14
2868 #define mod_height 15
2869 static unsigned char mod_bits
[] = {
2870 0xfe, 0x01, 0x02, 0x03, 0x7a, 0x05, 0x02, 0x09, 0x7a, 0x1f, 0x02, 0x10,
2871 0xfa, 0x17, 0x02, 0x10, 0xfa, 0x17, 0x02, 0x10, 0xfa, 0x17, 0x02, 0x10,
2872 0xfa, 0x17, 0x02, 0x10, 0xfe, 0x1f};
2873 } -maskdata $filemask
2875 image create bitmap file_fulltick
-background white
-foreground "#007000" -data {
2876 #define file_fulltick_width 14
2877 #define file_fulltick_height 15
2878 static unsigned char file_fulltick_bits
[] = {
2879 0xfe, 0x01, 0x02, 0x1a, 0x02, 0x0c, 0x02, 0x0c, 0x02, 0x16, 0x02, 0x16,
2880 0x02, 0x13, 0x00, 0x13, 0x86, 0x11, 0x8c, 0x11, 0xd8, 0x10, 0xf2, 0x10,
2881 0x62, 0x10, 0x02, 0x10, 0xfe, 0x1f};
2882 } -maskdata $filemask
2884 image create bitmap file_parttick
-background white
-foreground "#005050" -data {
2885 #define parttick_width 14
2886 #define parttick_height 15
2887 static unsigned char parttick_bits
[] = {
2888 0xfe, 0x01, 0x02, 0x03, 0x7a, 0x05, 0x02, 0x09, 0x7a, 0x1f, 0x02, 0x10,
2889 0x7a, 0x14, 0x02, 0x16, 0x02, 0x13, 0x8a, 0x11, 0xda, 0x10, 0x72, 0x10,
2890 0x22, 0x10, 0x02, 0x10, 0xfe, 0x1f};
2891 } -maskdata $filemask
2893 image create bitmap file_question
-background white
-foreground black
-data {
2894 #define file_question_width 14
2895 #define file_question_height 15
2896 static unsigned char file_question_bits
[] = {
2897 0xfe, 0x01, 0x02, 0x02, 0xe2, 0x04, 0xf2, 0x09, 0x1a, 0x1b, 0x0a, 0x13,
2898 0x82, 0x11, 0xc2, 0x10, 0x62, 0x10, 0x62, 0x10, 0x02, 0x10, 0x62, 0x10,
2899 0x62, 0x10, 0x02, 0x10, 0xfe, 0x1f};
2900 } -maskdata $filemask
2902 image create bitmap file_removed
-background white
-foreground red
-data {
2903 #define file_removed_width 14
2904 #define file_removed_height 15
2905 static unsigned char file_removed_bits
[] = {
2906 0xfe, 0x01, 0x02, 0x03, 0x02, 0x05, 0x02, 0x09, 0x02, 0x1f, 0x02, 0x10,
2907 0x1a, 0x16, 0x32, 0x13, 0xe2, 0x11, 0xc2, 0x10, 0xe2, 0x11, 0x32, 0x13,
2908 0x1a, 0x16, 0x02, 0x10, 0xfe, 0x1f};
2909 } -maskdata $filemask
2911 image create bitmap file_merge
-background white
-foreground blue
-data {
2912 #define file_merge_width 14
2913 #define file_merge_height 15
2914 static unsigned char file_merge_bits
[] = {
2915 0xfe, 0x01, 0x02, 0x03, 0x62, 0x05, 0x62, 0x09, 0x62, 0x1f, 0x62, 0x10,
2916 0xfa, 0x11, 0xf2, 0x10, 0x62, 0x10, 0x02, 0x10, 0xfa, 0x17, 0x02, 0x10,
2917 0xfa, 0x17, 0x02, 0x10, 0xfe, 0x1f};
2918 } -maskdata $filemask
2920 set ui_index .vpane.files.index.list
2921 set ui_workdir .vpane.files.workdir.list
2923 set all_icons
(_
$ui_index) file_plain
2924 set all_icons
(A
$ui_index) file_fulltick
2925 set all_icons
(M
$ui_index) file_fulltick
2926 set all_icons
(D
$ui_index) file_removed
2927 set all_icons
(U
$ui_index) file_merge
2929 set all_icons
(_
$ui_workdir) file_plain
2930 set all_icons
(M
$ui_workdir) file_mod
2931 set all_icons
(D
$ui_workdir) file_question
2932 set all_icons
(U
$ui_workdir) file_merge
2933 set all_icons
(O
$ui_workdir) file_plain
2935 set max_status_desc
0
2939 {_M
"Modified, not staged"}
2940 {M_
"Staged for commit"}
2941 {MM
"Portions staged for commit"}
2942 {MD
"Staged for commit, missing"}
2944 {_O
"Untracked, not staged"}
2945 {A_
"Staged for commit"}
2946 {AM
"Portions staged for commit"}
2947 {AD
"Staged for commit, missing"}
2950 {D_
"Staged for removal"}
2951 {DO
"Staged for removal, still present"}
2953 {U_
"Requires merge resolution"}
2954 {UU
"Requires merge resolution"}
2955 {UM
"Requires merge resolution"}
2956 {UD
"Requires merge resolution"}
2958 if {$max_status_desc < [string length
[lindex
$i 1]]} {
2959 set max_status_desc
[string length
[lindex
$i 1]]
2961 set all_descs
([lindex
$i 0]) [lindex
$i 1]
2965 ######################################################################
2970 global tcl_platform tk_library
2971 if {[tk windowingsystem
] eq
{aqua
}} {
2977 proc is_Windows
{} {
2979 if {$tcl_platform(platform
) eq
{windows
}} {
2985 proc bind_button3
{w cmd
} {
2986 bind $w <Any-Button-3
> $cmd
2988 bind $w <Control-Button-1
> $cmd
2992 proc incr_font_size
{font
{amt
1}} {
2993 set sz
[font configure
$font -size]
2995 font configure
$font -size $sz
2996 font configure
${font}bold
-size $sz
2999 proc hook_failed_popup
{hook msg
} {
3004 label
$w.m.l1
-text "$hook hook failed:" \
3009 -background white
-borderwidth 1 \
3011 -width 80 -height 10 \
3013 -yscrollcommand [list
$w.m.sby
set]
3015 -text {You must correct the above errors before committing.
} \
3019 scrollbar
$w.m.sby
-command [list
$w.m.t yview
]
3020 pack
$w.m.l1
-side top
-fill x
3021 pack
$w.m.l2
-side bottom
-fill x
3022 pack
$w.m.sby
-side right
-fill y
3023 pack
$w.m.t
-side left
-fill both
-expand 1
3024 pack
$w.m
-side top
-fill both
-expand 1 -padx 5 -pady 10
3026 $w.m.t insert
1.0 $msg
3027 $w.m.t conf
-state disabled
3029 button
$w.ok
-text OK \
3032 -command "destroy $w"
3033 pack
$w.ok
-side bottom
-anchor e
-pady 10 -padx 10
3035 bind $w <Visibility
> "grab $w; focus $w"
3036 bind $w <Key-Return
> "destroy $w"
3037 wm title
$w "[appname] ([reponame]): error"
3041 set next_console_id
0
3043 proc new_console
{short_title long_title
} {
3044 global next_console_id console_data
3045 set w .console
[incr next_console_id
]
3046 set console_data
($w) [list
$short_title $long_title]
3047 return [console_init
$w]
3050 proc console_init
{w
} {
3051 global console_cr console_data M1B
3053 set console_cr
($w) 1.0
3056 label
$w.m.l1
-text "[lindex $console_data($w) 1]:" \
3061 -background white
-borderwidth 1 \
3063 -width 80 -height 10 \
3066 -yscrollcommand [list
$w.m.sby
set]
3067 label
$w.m.s
-text {Working... please
wait...
} \
3071 scrollbar
$w.m.sby
-command [list
$w.m.t yview
]
3072 pack
$w.m.l1
-side top
-fill x
3073 pack
$w.m.s
-side bottom
-fill x
3074 pack
$w.m.sby
-side right
-fill y
3075 pack
$w.m.t
-side left
-fill both
-expand 1
3076 pack
$w.m
-side top
-fill both
-expand 1 -padx 5 -pady 10
3078 menu
$w.ctxm
-tearoff 0
3079 $w.ctxm add
command -label "Copy" \
3081 -command "tk_textCopy $w.m.t"
3082 $w.ctxm add
command -label "Select All" \
3084 -command "focus $w.m.t;$w.m.t tag add sel 0.0 end"
3085 $w.ctxm add
command -label "Copy All" \
3088 $w.m.t tag add sel 0.0 end
3090 $w.m.t tag remove sel 0.0 end
3093 button
$w.ok
-text {Close
} \
3096 -command "destroy $w"
3097 pack
$w.ok
-side bottom
-anchor e
-pady 10 -padx 10
3099 bind_button3
$w.m.t
"tk_popup $w.ctxm %X %Y"
3100 bind $w.m.t
<$M1B-Key-a> "$w.m.t tag add sel 0.0 end;break"
3101 bind $w.m.t
<$M1B-Key-A> "$w.m.t tag add sel 0.0 end;break"
3102 bind $w <Visibility
> "focus $w"
3103 wm title
$w "[appname] ([reponame]): [lindex $console_data($w) 0]"
3107 proc console_exec
{w cmd after
} {
3108 # -- Windows tosses the enviroment when we exec our child.
3109 # But most users need that so we have to relogin. :-(
3112 set cmd
[list sh
--login -c "cd \"[pwd]\" && [join $cmd { }]"]
3115 # -- Tcl won't let us redirect both stdout and stderr to
3116 # the same pipe. So pass it through cat...
3118 set cmd
[concat |
$cmd |
& cat]
3120 set fd_f
[open
$cmd r
]
3121 fconfigure
$fd_f -blocking 0 -translation binary
3122 fileevent
$fd_f readable
[list console_read
$w $fd_f $after]
3125 proc console_read
{w fd after
} {
3130 if {![winfo exists
$w]} {console_init
$w}
3131 $w.m.t conf
-state normal
3133 set n
[string length
$buf]
3135 set cr
[string first
"\r" $buf $c]
3136 set lf
[string first
"\n" $buf $c]
3137 if {$cr < 0} {set cr
[expr {$n + 1}]}
3138 if {$lf < 0} {set lf
[expr {$n + 1}]}
3141 $w.m.t insert end
[string range
$buf $c $lf]
3142 set console_cr
($w) [$w.m.t index
{end
-1c}]
3146 $w.m.t delete
$console_cr($w) end
3147 $w.m.t insert end
"\n"
3148 $w.m.t insert end
[string range
$buf $c $cr]
3153 $w.m.t conf
-state disabled
3157 fconfigure
$fd -blocking 1
3159 if {[catch
{close
$fd}]} {
3164 uplevel
#0 $after $w $ok
3167 fconfigure
$fd -blocking 0
3170 proc console_chain
{cmdlist w
{ok
1}} {
3172 if {[llength
$cmdlist] == 0} {
3177 set cmd
[lindex
$cmdlist 0]
3178 set cmdlist
[lrange
$cmdlist 1 end
]
3180 if {[lindex
$cmd 0] eq
{console_exec
}} {
3183 [list console_chain
$cmdlist]
3185 uplevel
#0 $cmd $cmdlist $w $ok
3192 proc console_done
{args
} {
3193 global console_cr console_data
3195 switch
-- [llength
$args] {
3197 set w
[lindex
$args 0]
3198 set ok
[lindex
$args 1]
3201 set w
[lindex
$args 1]
3202 set ok
[lindex
$args 2]
3205 error
"wrong number of args: console_done ?ignored? w ok"
3210 if {[winfo exists
$w]} {
3211 $w.m.s conf
-background green
-text {Success
}
3212 $w.ok conf
-state normal
3215 if {![winfo exists
$w]} {
3218 $w.m.s conf
-background red
-text {Error
: Command Failed
}
3219 $w.ok conf
-state normal
3222 array
unset console_cr
$w
3223 array
unset console_data
$w
3226 ######################################################################
3230 set starting_gitk_msg
{Starting gitk... please
wait...
}
3232 proc do_gitk
{revs
} {
3233 global ui_status_value starting_gitk_msg
3241 set cmd
"sh -c \"exec $cmd\""
3245 if {[catch
{eval exec $cmd} err
]} {
3246 error_popup
"Failed to start gitk:\n\n$err"
3248 set ui_status_value
$starting_gitk_msg
3250 if {$ui_status_value eq
$starting_gitk_msg} {
3251 set ui_status_value
{Ready.
}
3258 set fd
[open
"| git count-objects -v" r
]
3259 while {[gets
$fd line
] > 0} {
3260 if {[regexp
{^
([^
:]+): (\d
+)$
} $line _ name value
]} {
3261 set stats
($name) $value
3267 foreach p
[glob
-directory [gitdir objects pack
] \
3270 incr packed_sz
[file size
$p]
3272 if {$packed_sz > 0} {
3273 set stats
(size-pack
) [expr {$packed_sz / 1024}]
3278 wm geometry
$w "+[winfo rootx .]+[winfo rooty .]"
3280 label
$w.header
-text {Database Statistics
} \
3282 pack
$w.header
-side top
-fill x
3284 frame
$w.buttons
-border 1
3285 button
$w.buttons.close
-text Close \
3287 -command [list destroy
$w]
3288 button
$w.buttons.gc
-text {Compress Database
} \
3290 -command "destroy $w;do_gc"
3291 pack
$w.buttons.close
-side right
3292 pack
$w.buttons.gc
-side left
3293 pack
$w.buttons
-side bottom
-fill x
-pady 10 -padx 10
3295 frame
$w.stat
-borderwidth 1 -relief solid
3297 {count
{Number of loose objects
}}
3298 {size
{Disk space used by loose objects
} { KiB
}}
3299 {in-pack
{Number of packed objects
}}
3300 {packs
{Number of packs
}}
3301 {size-pack
{Disk space used by packed objects
} { KiB
}}
3302 {prune-packable
{Packed objects waiting
for pruning
}}
3303 {garbage
{Garbage files
}}
3305 set name
[lindex
$s 0]
3306 set label
[lindex
$s 1]
3307 if {[catch
{set value
$stats($name)}]} continue
3308 if {[llength
$s] > 2} {
3309 set value
"$value[lindex $s 2]"
3312 label
$w.stat.l_
$name -text "$label:" -anchor w
-font font_ui
3313 label
$w.stat.v_
$name -text $value -anchor w
-font font_ui
3314 grid
$w.stat.l_
$name $w.stat.v_
$name -sticky we
-padx {0 5}
3316 pack
$w.stat
-pady 10 -padx 10
3318 bind $w <Visibility
> "grab $w; focus $w"
3319 bind $w <Key-Escape
> [list destroy
$w]
3320 bind $w <Key-Return
> [list destroy
$w]
3321 wm title
$w "[appname] ([reponame]): Database Statistics"
3326 set w
[new_console
{gc
} {Compressing the object database
}]
3328 {console_exec
{git pack-refs
--prune}}
3329 {console_exec
{git reflog expire
--all}}
3330 {console_exec
{git repack
-a -d -l}}
3331 {console_exec
{git rerere gc
}}
3335 proc do_fsck_objects
{} {
3336 set w
[new_console
{fsck-objects
} \
3337 {Verifying the object database with fsck-objects
}]
3338 set cmd
[list git fsck-objects
]
3341 lappend cmd
--strict
3342 console_exec
$w $cmd console_done
3348 global ui_comm is_quitting repo_config commit_type
3350 if {$is_quitting} return
3353 # -- Stash our current commit buffer.
3355 set save
[gitdir GITGUI_MSG
]
3356 set msg
[string trim
[$ui_comm get
0.0 end
]]
3357 regsub
-all -line {[ \r\t]+$
} $msg {} msg
3358 if {(![string match amend
* $commit_type]
3359 ||
[$ui_comm edit modified
])
3362 set fd
[open
$save w
]
3363 puts
-nonewline $fd $msg
3367 catch
{file delete
$save}
3370 # -- Stash our current window geometry into this repository.
3372 set cfg_geometry
[list
]
3373 lappend cfg_geometry
[wm geometry .
]
3374 lappend cfg_geometry
[lindex
[.vpane sash coord
0] 1]
3375 lappend cfg_geometry
[lindex
[.vpane.files sash coord
0] 0]
3376 if {[catch
{set rc_geometry
$repo_config(gui.geometry
)}]} {
3379 if {$cfg_geometry ne
$rc_geometry} {
3380 catch
{exec git repo-config gui.geometry
$cfg_geometry}
3387 rescan
{set ui_status_value
{Ready.
}}
3390 proc unstage_helper
{txt paths
} {
3391 global file_states current_diff_path
3393 if {![lock_index begin-update
]} return
3397 foreach path
$paths {
3398 switch
-glob -- [lindex
$file_states($path) 0] {
3402 lappend pathList
$path
3403 if {$path eq
$current_diff_path} {
3404 set after
{reshow_diff
;}
3409 if {$pathList eq
{}} {
3415 [concat
$after {set ui_status_value
{Ready.
}}]
3419 proc do_unstage_selection
{} {
3420 global current_diff_path selected_paths
3422 if {[array size selected_paths
] > 0} {
3424 {Unstaging selected files from commit
} \
3425 [array names selected_paths
]
3426 } elseif
{$current_diff_path ne
{}} {
3428 "Unstaging [short_path $current_diff_path] from commit" \
3429 [list
$current_diff_path]
3433 proc add_helper
{txt paths
} {
3434 global file_states current_diff_path
3436 if {![lock_index begin-update
]} return
3440 foreach path
$paths {
3441 switch
-glob -- [lindex
$file_states($path) 0] {
3446 lappend pathList
$path
3447 if {$path eq
$current_diff_path} {
3448 set after
{reshow_diff
;}
3453 if {$pathList eq
{}} {
3459 [concat
$after {set ui_status_value
{Ready to commit.
}}]
3463 proc do_add_selection
{} {
3464 global current_diff_path selected_paths
3466 if {[array size selected_paths
] > 0} {
3468 {Adding selected files
} \
3469 [array names selected_paths
]
3470 } elseif
{$current_diff_path ne
{}} {
3472 "Adding [short_path $current_diff_path]" \
3473 [list
$current_diff_path]
3477 proc do_add_all
{} {
3481 foreach path
[array names file_states
] {
3482 switch
-glob -- [lindex
$file_states($path) 0] {
3485 ?D
{lappend paths
$path}
3488 add_helper
{Adding all changed files
} $paths
3491 proc revert_helper
{txt paths
} {
3492 global file_states current_diff_path
3494 if {![lock_index begin-update
]} return
3498 foreach path
$paths {
3499 switch
-glob -- [lindex
$file_states($path) 0] {
3503 lappend pathList
$path
3504 if {$path eq
$current_diff_path} {
3505 set after
{reshow_diff
;}
3511 set n
[llength
$pathList]
3515 } elseif
{$n == 1} {
3516 set s
"[short_path [lindex $pathList]]"
3518 set s
"these $n files"
3521 set reply
[tk_dialog \
3523 "[appname] ([reponame])" \
3524 "Revert changes in $s?
3526 Any unadded changes will be permanently lost by the revert." \
3536 [concat
$after {set ui_status_value
{Ready.
}}]
3542 proc do_revert_selection
{} {
3543 global current_diff_path selected_paths
3545 if {[array size selected_paths
] > 0} {
3547 {Reverting selected files
} \
3548 [array names selected_paths
]
3549 } elseif
{$current_diff_path ne
{}} {
3551 "Reverting [short_path $current_diff_path]" \
3552 [list
$current_diff_path]
3556 proc do_signoff
{} {
3559 set me
[committer_ident
]
3560 if {$me eq
{}} return
3562 set sob
"Signed-off-by: $me"
3563 set last
[$ui_comm get
{end
-1c linestart
} {end
-1c}]
3564 if {$last ne
$sob} {
3565 $ui_comm edit separator
3567 && ![regexp
{^
[A-Z
][A-Za-z
]*-[A-Za-z-
]+: *} $last]} {
3568 $ui_comm insert end
"\n"
3570 $ui_comm insert end
"\n$sob"
3571 $ui_comm edit separator
3576 proc do_select_commit_type
{} {
3577 global commit_type selected_commit_type
3579 if {$selected_commit_type eq
{new
}
3580 && [string match amend
* $commit_type]} {
3582 } elseif
{$selected_commit_type eq
{amend
}
3583 && ![string match amend
* $commit_type]} {
3586 # The amend request was rejected...
3588 if {![string match amend
* $commit_type]} {
3589 set selected_commit_type new
3599 global appvers copyright
3600 global tcl_patchLevel tk_patchLevel
3604 wm geometry
$w "+[winfo rootx .]+[winfo rooty .]"
3606 label
$w.header
-text "About [appname]" \
3608 pack
$w.header
-side top
-fill x
3611 button
$w.buttons.close
-text {Close
} \
3613 -command [list destroy
$w]
3614 pack
$w.buttons.close
-side right
3615 pack
$w.buttons
-side bottom
-fill x
-pady 10 -padx 10
3618 -text "[appname] - a commit creation tool for Git.
3626 pack
$w.desc
-side top
-fill x
-padx 5 -pady 5
3629 append v
"[appname] version $appvers\n"
3630 append v
"[exec git version]\n"
3632 if {$tcl_patchLevel eq
$tk_patchLevel} {
3633 append v
"Tcl/Tk version $tcl_patchLevel"
3635 append v
"Tcl version $tcl_patchLevel"
3636 append v
", Tk version $tk_patchLevel"
3647 pack
$w.vers
-side top
-fill x
-padx 5 -pady 5
3649 menu
$w.ctxm
-tearoff 0
3650 $w.ctxm add
command \
3655 clipboard append -format STRING -type STRING -- \[$w.vers cget -text\]
3658 bind $w <Visibility
> "grab $w; focus $w"
3659 bind $w <Key-Escape
> "destroy $w"
3660 bind_button3
$w.vers
"tk_popup $w.ctxm %X %Y; grab $w; focus $w"
3661 wm title
$w "About [appname]"
3665 proc do_options
{} {
3666 global repo_config global_config font_descs
3667 global repo_config_new global_config_new
3669 array
unset repo_config_new
3670 array
unset global_config_new
3671 foreach name
[array names repo_config
] {
3672 set repo_config_new
($name) $repo_config($name)
3675 foreach name
[array names repo_config
] {
3677 gui.diffcontext
{continue}
3679 set repo_config_new
($name) $repo_config($name)
3681 foreach name
[array names global_config
] {
3682 set global_config_new
($name) $global_config($name)
3685 set w .options_editor
3687 wm geometry
$w "+[winfo rootx .]+[winfo rooty .]"
3689 label
$w.header
-text "[appname] Options" \
3691 pack
$w.header
-side top
-fill x
3694 button
$w.buttons.restore
-text {Restore Defaults
} \
3696 -command do_restore_defaults
3697 pack
$w.buttons.restore
-side left
3698 button
$w.buttons.save
-text Save \
3700 -command [list do_save_config
$w]
3701 pack
$w.buttons.save
-side right
3702 button
$w.buttons.cancel
-text {Cancel
} \
3704 -command [list destroy
$w]
3705 pack
$w.buttons.cancel
-side right
-padx 5
3706 pack
$w.buttons
-side bottom
-fill x
-pady 10 -padx 10
3708 labelframe
$w.repo
-text "[reponame] Repository" \
3710 labelframe
$w.global
-text {Global
(All Repositories
)} \
3712 pack
$w.repo
-side left
-fill both
-expand 1 -pady 5 -padx 5
3713 pack
$w.global
-side right
-fill both
-expand 1 -pady 5 -padx 5
3716 {b pullsummary
{Show Pull Summary
}}
3717 {b trustmtime
{Trust File Modification Timestamps
}}
3718 {i diffcontext
{Number of Diff Context Lines
}}
3719 {t newbranchtemplate
{New Branch Name Template
}}
3721 set type [lindex
$option 0]
3722 set name
[lindex
$option 1]
3723 set text
[lindex
$option 2]
3724 foreach f
{repo global
} {
3727 checkbutton
$w.
$f.
$name -text $text \
3728 -variable ${f}_config_new
(gui.
$name) \
3732 pack
$w.
$f.
$name -side top
-anchor w
3736 label
$w.
$f.
$name.l
-text "$text:" -font font_ui
3737 pack
$w.
$f.
$name.l
-side left
-anchor w
-fill x
3738 spinbox
$w.
$f.
$name.v \
3739 -textvariable ${f}_config_new
(gui.
$name) \
3740 -from 1 -to 99 -increment 1 \
3743 bind $w.
$f.
$name.v
<FocusIn
> {%W selection range
0 end
}
3744 pack
$w.
$f.
$name.v
-side right
-anchor e
-padx 5
3745 pack
$w.
$f.
$name -side top
-anchor w
-fill x
3749 label
$w.
$f.
$name.l
-text "$text:" -font font_ui
3750 entry
$w.
$f.
$name.v \
3754 -textvariable ${f}_config_new
(gui.
$name) \
3756 pack
$w.
$f.
$name.l
-side left
-anchor w
3757 pack
$w.
$f.
$name.v
-side left
-anchor w \
3760 pack
$w.
$f.
$name -side top
-anchor w
-fill x
3766 set all_fonts
[lsort
[font families
]]
3767 foreach option
$font_descs {
3768 set name
[lindex
$option 0]
3769 set font
[lindex
$option 1]
3770 set text
[lindex
$option 2]
3772 set global_config_new
(gui.
$font^^family
) \
3773 [font configure
$font -family]
3774 set global_config_new
(gui.
$font^^size
) \
3775 [font configure
$font -size]
3777 frame
$w.global.
$name
3778 label
$w.global.
$name.l
-text "$text:" -font font_ui
3779 pack
$w.global.
$name.l
-side left
-anchor w
-fill x
3780 eval tk_optionMenu
$w.global.
$name.family \
3781 global_config_new
(gui.
$font^^family
) \
3783 spinbox
$w.global.
$name.size \
3784 -textvariable global_config_new
(gui.
$font^^size
) \
3785 -from 2 -to 80 -increment 1 \
3788 bind $w.global.
$name.size
<FocusIn
> {%W selection range
0 end
}
3789 pack
$w.global.
$name.size
-side right
-anchor e
3790 pack
$w.global.
$name.family
-side right
-anchor e
3791 pack
$w.global.
$name -side top
-anchor w
-fill x
3794 bind $w <Visibility
> "grab $w; focus $w"
3795 bind $w <Key-Escape
> "destroy $w"
3796 wm title
$w "[appname] ([reponame]): Options"
3800 proc do_restore_defaults
{} {
3801 global font_descs default_config repo_config
3802 global repo_config_new global_config_new
3804 foreach name
[array names default_config
] {
3805 set repo_config_new
($name) $default_config($name)
3806 set global_config_new
($name) $default_config($name)
3809 foreach option
$font_descs {
3810 set name
[lindex
$option 0]
3811 set repo_config
(gui.
$name) $default_config(gui.
$name)
3815 foreach option
$font_descs {
3816 set name
[lindex
$option 0]
3817 set font
[lindex
$option 1]
3818 set global_config_new
(gui.
$font^^family
) \
3819 [font configure
$font -family]
3820 set global_config_new
(gui.
$font^^size
) \
3821 [font configure
$font -size]
3825 proc do_save_config
{w
} {
3826 if {[catch
{save_config
} err
]} {
3827 error_popup
"Failed to completely save options:\n\n$err"
3833 proc do_windows_shortcut
{} {
3837 set desktop
[exec cygpath \
3845 set fn
[tk_getSaveFile \
3847 -title "[appname] ([reponame]): Create Desktop Icon" \
3848 -initialdir $desktop \
3849 -initialfile "Git [reponame].bat"]
3853 set sh
[exec cygpath \
3857 set me
[exec cygpath \
3861 set gd
[exec cygpath \
3865 set gw
[exec cygpath \
3868 [file dirname [gitdir
]]]
3869 regsub
-all ' $me "'\\''" me
3870 regsub -all ' $gd "'\\''" gd
3871 puts $fd "@ECHO Entering $gw"
3872 puts $fd "@ECHO Starting git-gui... please wait..."
3873 puts -nonewline $fd "@\"$sh\" --login -c \""
3874 puts -nonewline $fd "GIT_DIR='$gd'"
3875 puts -nonewline $fd " '$me'"
3879 error_popup "Cannot write script:\n\n$err"
3884 proc do_macosx_app {} {
3887 set fn [tk_getSaveFile \
3889 -title "[appname] ([reponame]): Create Desktop Icon" \
3890 -initialdir [file join $env(HOME) Desktop] \
3891 -initialfile "Git [reponame].app"]
3894 set Contents [file join $fn Contents]
3895 set MacOS [file join $Contents MacOS]
3896 set exe [file join $MacOS git-gui]
3900 set fd [open [file join $Contents Info.plist] w]
3901 puts $fd {<?xml version="1.0" encoding="UTF-8"?>
3902 <!DOCTYPE plist PUBLIC "-//Apple Computer//DTD PLIST 1.0//EN" "http://www.apple.com/DTDs/PropertyList-1.0.dtd">
3903 <plist version="1.0">
3905 <key>CFBundleDevelopmentRegion</key>
3906 <string>English</string>
3907 <key>CFBundleExecutable</key>
3908 <string>git-gui</string>
3909 <key>CFBundleIdentifier</key>
3910 <string>org.spearce.git-gui</string>
3911 <key>CFBundleInfoDictionaryVersion</key>
3912 <string>6.0</string>
3913 <key>CFBundlePackageType</key>
3914 <string>APPL</string>
3915 <key>CFBundleSignature</key>
3916 <string>????</string>
3917 <key>CFBundleVersion</key>
3918 <string>1.0</string>
3919 <key>NSPrincipalClass</key>
3920 <string>NSApplication</string>
3925 set fd [open $exe w]
3926 set gd [file normalize [gitdir]]
3927 set ep [file normalize [exec git --exec-path]]
3928 regsub -all ' $gd "'\\''" gd
3929 regsub
-all ' $ep "'\\''" ep
3930 puts $fd "#!/bin/sh"
3931 foreach name
[array names env
] {
3932 if {[string match GIT_
* $name]} {
3933 regsub
-all ' $env($name) "'\\''" v
3934 puts $fd "export $name='$v'"
3937 puts $fd "export PATH
='$ep':\
$PATH"
3938 puts $fd "export GIT_DIR
='$gd'"
3939 puts $fd "exec [file normalize
$argv0]"
3942 file attributes $exe -permissions u+x,g+x,o+x
3944 error_popup "Cannot
write icon
:\n\n$err"
3949 proc toggle_or_diff {w x y} {
3950 global file_states file_lists current_diff_path ui_index ui_workdir
3951 global last_clicked selected_paths
3953 set pos [split [$w index @$x,$y] .]
3954 set lno [lindex $pos 0]
3955 set col [lindex $pos 1]
3956 set path [lindex $file_lists($w) [expr {$lno - 1}]]
3962 set last_clicked [list $w $lno]
3963 array unset selected_paths
3964 $ui_index tag remove in_sel 0.0 end
3965 $ui_workdir tag remove in_sel 0.0 end
3968 if {$current_diff_path eq $path} {
3969 set after {reshow_diff;}
3973 if {$w eq $ui_index} {
3975 "Unstaging
[short_path
$path] from commit
" \
3977 [concat $after {set ui_status_value {Ready.}}]
3978 } elseif {$w eq $ui_workdir} {
3980 "Adding
[short_path
$path]" \
3982 [concat $after {set ui_status_value {Ready.}}]
3985 show_diff $path $w $lno
3989 proc add_one_to_selection {w x y} {
3990 global file_lists last_clicked selected_paths
3992 set lno [lindex [split [$w index @$x,$y] .] 0]
3993 set path [lindex $file_lists($w) [expr {$lno - 1}]]
3999 if {$last_clicked ne {}
4000 && [lindex $last_clicked 0] ne $w} {
4001 array unset selected_paths
4002 [lindex $last_clicked 0] tag remove in_sel 0.0 end
4005 set last_clicked [list $w $lno]
4006 if {[catch {set in_sel $selected_paths($path)}]} {
4010 unset selected_paths($path)
4011 $w tag remove in_sel $lno.0 [expr {$lno + 1}].0
4013 set selected_paths($path) 1
4014 $w tag add in_sel $lno.0 [expr {$lno + 1}].0
4018 proc add_range_to_selection {w x y} {
4019 global file_lists last_clicked selected_paths
4021 if {[lindex $last_clicked 0] ne $w} {
4022 toggle_or_diff $w $x $y
4026 set lno [lindex [split [$w index @$x,$y] .] 0]
4027 set lc [lindex $last_clicked 1]
4036 foreach path [lrange $file_lists($w) \
4037 [expr {$begin - 1}] \
4038 [expr {$end - 1}]] {
4039 set selected_paths($path) 1
4041 $w tag add in_sel $begin.0 [expr {$end + 1}].0
4044 ######################################################################
4048 set cursor_ptr arrow
4049 font create font_diff -family Courier -size 10
4053 eval font configure font_ui [font actual [.dummy cget -font]]
4057 font create font_uibold
4058 font create font_diffbold
4063 } elseif {[is_MacOSX]} {
4071 proc apply_config {} {
4072 global repo_config font_descs
4074 foreach option $font_descs {
4075 set name [lindex $option 0]
4076 set font [lindex $option 1]
4078 foreach {cn cv} $repo_config(gui.$name) {
4079 font configure $font $cn $cv
4082 error_popup "Invalid font specified
in gui.
$name:\n\n$err"
4084 foreach {cn cv} [font configure $font] {
4085 font configure ${font}bold $cn $cv
4087 font configure ${font}bold -weight bold
4091 set default_config(gui.trustmtime) false
4092 set default_config(gui.pullsummary) true
4093 set default_config(gui.diffcontext) 5
4094 set default_config(gui.newbranchtemplate) {}
4095 set default_config(gui.fontui) [font configure font_ui]
4096 set default_config(gui.fontdiff) [font configure font_diff]
4098 {fontui font_ui {Main Font}}
4099 {fontdiff font_diff {Diff/Console Font}}
4104 ######################################################################
4110 menu .mbar -tearoff 0
4111 .mbar add cascade -label Repository -menu .mbar.repository
4112 .mbar add cascade -label Edit -menu .mbar.edit
4113 if {!$single_commit} {
4114 .mbar add cascade -label Branch -menu .mbar.branch
4116 .mbar add cascade -label Commit -menu .mbar.commit
4117 if {!$single_commit} {
4118 .mbar add cascade -label Merge -menu .mbar.merge
4119 .mbar add cascade -label Fetch -menu .mbar.fetch
4120 .mbar add cascade -label Push -menu .mbar.push
4122 . configure -menu .mbar
4124 # -- Repository Menu
4126 menu .mbar.repository
4127 .mbar.repository add command \
4128 -label {Visualize Current Branch} \
4129 -command {do_gitk {}} \
4131 .mbar.repository add command \
4132 -label {Visualize All Branches} \
4133 -command {do_gitk {--all}} \
4135 .mbar.repository add separator
4137 if {!$single_commit} {
4138 .mbar.repository add command -label {Database Statistics} \
4142 .mbar.repository add command -label {Compress Database} \
4146 .mbar.repository add command -label {Verify Database} \
4147 -command do_fsck_objects \
4150 .mbar.repository add separator
4153 .mbar.repository add command \
4154 -label {Create Desktop Icon} \
4155 -command do_windows_shortcut \
4157 } elseif {[is_MacOSX]} {
4158 .mbar.repository add command \
4159 -label {Create Desktop Icon} \
4160 -command do_macosx_app \
4165 .mbar.repository add command -label Quit \
4167 -accelerator $M1T-Q \
4173 .mbar.edit add command -label Undo \
4174 -command {catch {[focus] edit undo}} \
4175 -accelerator $M1T-Z \
4177 .mbar.edit add command -label Redo \
4178 -command {catch {[focus] edit redo}} \
4179 -accelerator $M1T-Y \
4181 .mbar.edit add separator
4182 .mbar.edit add command -label Cut \
4183 -command {catch {tk_textCut [focus]}} \
4184 -accelerator $M1T-X \
4186 .mbar.edit add command -label Copy \
4187 -command {catch {tk_textCopy [focus]}} \
4188 -accelerator $M1T-C \
4190 .mbar.edit add command -label Paste \
4191 -command {catch {tk_textPaste [focus]; [focus] see insert}} \
4192 -accelerator $M1T-V \
4194 .mbar.edit add command -label Delete \
4195 -command {catch {[focus] delete sel.first sel.last}} \
4198 .mbar.edit add separator
4199 .mbar.edit add command -label {Select All} \
4200 -command {catch {[focus] tag add sel 0.0 end}} \
4201 -accelerator $M1T-A \
4206 if {!$single_commit} {
4209 .mbar.branch add command -label {Create...} \
4210 -command do_create_branch \
4211 -accelerator $M1T-N \
4213 lappend disable_on_lock [list .mbar.branch entryconf \
4214 [.mbar.branch index last] -state]
4216 .mbar.branch add command -label {Delete...} \
4217 -command do_delete_branch \
4219 lappend disable_on_lock [list .mbar.branch entryconf \
4220 [.mbar.branch index last] -state]
4227 .mbar.commit add radiobutton \
4228 -label {New Commit} \
4229 -command do_select_commit_type \
4230 -variable selected_commit_type \
4233 lappend disable_on_lock \
4234 [list .mbar.commit entryconf [.mbar.commit index last] -state]
4236 .mbar.commit add radiobutton \
4237 -label {Amend Last Commit} \
4238 -command do_select_commit_type \
4239 -variable selected_commit_type \
4242 lappend disable_on_lock \
4243 [list .mbar.commit entryconf [.mbar.commit index last] -state]
4245 .mbar.commit add separator
4247 .mbar.commit add command -label Rescan \
4248 -command do_rescan \
4251 lappend disable_on_lock \
4252 [list .mbar.commit entryconf [.mbar.commit index last] -state]
4254 .mbar.commit add command -label {Add To Commit} \
4255 -command do_add_selection \
4257 lappend disable_on_lock \
4258 [list .mbar.commit entryconf [.mbar.commit index last] -state]
4260 .mbar.commit add command -label {Add All To Commit} \
4261 -command do_add_all \
4262 -accelerator $M1T-I \
4264 lappend disable_on_lock \
4265 [list .mbar.commit entryconf [.mbar.commit index last] -state]
4267 .mbar.commit add command -label {Unstage From Commit} \
4268 -command do_unstage_selection \
4270 lappend disable_on_lock \
4271 [list .mbar.commit entryconf [.mbar.commit index last] -state]
4273 .mbar.commit add command -label {Revert Changes} \
4274 -command do_revert_selection \
4276 lappend disable_on_lock \
4277 [list .mbar.commit entryconf [.mbar.commit index last] -state]
4279 .mbar.commit add separator
4281 .mbar.commit add command -label {Sign Off} \
4282 -command do_signoff \
4283 -accelerator $M1T-S \
4286 .mbar.commit add command -label Commit \
4287 -command do_commit \
4288 -accelerator $M1T-Return \
4290 lappend disable_on_lock \
4291 [list .mbar.commit entryconf [.mbar.commit index last] -state]
4294 # -- Apple Menu (Mac OS X only)
4296 .mbar add cascade -label Apple -menu .mbar.apple
4299 .mbar.apple add command -label "About
[appname
]" \
4302 .mbar.apple add command -label "[appname
] Options...
" \
4303 -command do_options \
4308 .mbar.edit add separator
4309 .mbar.edit add command -label {Options...} \
4310 -command do_options \
4315 if {[file exists /usr/local/miga/lib/gui-miga]
4316 && [file exists .pvcsrc]} {
4318 global ui_status_value
4319 if {![lock_index update]} return
4320 set cmd [list sh --login -c "/usr
/local
/miga
/lib
/gui-miga
\"[pwd]\""]
4321 set miga_fd [open "|
$cmd" r]
4322 fconfigure $miga_fd -blocking 0
4323 fileevent $miga_fd readable [list miga_done $miga_fd]
4324 set ui_status_value {Running miga...}
4326 proc miga_done {fd} {
4331 rescan [list set ui_status_value {Ready.}]
4334 .mbar add cascade -label Tools -menu .mbar.tools
4336 .mbar.tools add command -label "Migrate
" \
4339 lappend disable_on_lock \
4340 [list .mbar.tools entryconf [.mbar.tools index last] -state]
4345 .mbar add cascade -label Help -menu .mbar.help
4348 .mbar.help add command -label "About
[appname
]" \
4360 -text {Current Branch:} \
4365 -textvariable current_branch \
4369 pack .branch.l1 -side left
4370 pack .branch.cb -side left -fill x
4371 pack .branch -side top -fill x
4373 if {!$single_commit} {
4375 .mbar.merge add command -label {Local Merge...} \
4376 -command do_local_merge \
4378 lappend disable_on_lock \
4379 [list .mbar.merge entryconf [.mbar.merge index last] -state]
4380 .mbar.merge add command -label {Abort Merge...} \
4381 -command do_reset_hard \
4383 lappend disable_on_lock \
4384 [list .mbar.merge entryconf [.mbar.merge index last] -state]
4390 .mbar.push add command -label {Push...} \
4391 -command do_push_anywhere \
4395 # -- Main Window Layout
4397 panedwindow .vpane -orient vertical
4398 panedwindow .vpane.files -orient horizontal
4399 .vpane add .vpane.files -sticky nsew -height 100 -width 200
4400 pack .vpane -anchor n -side top -fill both -expand 1
4402 # -- Index File List
4404 frame .vpane.files.index -height 100 -width 200
4405 label .vpane.files.index.title -text {Changes To Be Committed} \
4408 text $ui_index -background white -borderwidth 0 \
4409 -width 20 -height 10 \
4412 -cursor $cursor_ptr \
4413 -xscrollcommand {.vpane.files.index.sx set} \
4414 -yscrollcommand {.vpane.files.index.sy set} \
4416 scrollbar .vpane.files.index.sx -orient h -command [list $ui_index xview]
4417 scrollbar .vpane.files.index.sy -orient v -command [list $ui_index yview]
4418 pack .vpane.files.index.title -side top -fill x
4419 pack .vpane.files.index.sx -side bottom -fill x
4420 pack .vpane.files.index.sy -side right -fill y
4421 pack $ui_index -side left -fill both -expand 1
4422 .vpane.files add .vpane.files.index -sticky nsew
4424 # -- Working Directory File List
4426 frame .vpane.files.workdir -height 100 -width 200
4427 label .vpane.files.workdir.title -text {Changed But Not Updated} \
4430 text $ui_workdir -background white -borderwidth 0 \
4431 -width 20 -height 10 \
4434 -cursor $cursor_ptr \
4435 -xscrollcommand {.vpane.files.workdir.sx set} \
4436 -yscrollcommand {.vpane.files.workdir.sy set} \
4438 scrollbar .vpane.files.workdir.sx -orient h -command [list $ui_workdir xview]
4439 scrollbar .vpane.files.workdir.sy -orient v -command [list $ui_workdir yview]
4440 pack .vpane.files.workdir.title -side top -fill x
4441 pack .vpane.files.workdir.sx -side bottom -fill x
4442 pack .vpane.files.workdir.sy -side right -fill y
4443 pack $ui_workdir -side left -fill both -expand 1
4444 .vpane.files add .vpane.files.workdir -sticky nsew
4446 foreach i [list $ui_index $ui_workdir] {
4447 $i tag conf in_diff -font font_uibold
4448 $i tag conf in_sel \
4449 -background [$i cget -foreground] \
4450 -foreground [$i cget -background]
4454 # -- Diff and Commit Area
4456 frame .vpane.lower -height 300 -width 400
4457 frame .vpane.lower.commarea
4458 frame .vpane.lower.diff -relief sunken -borderwidth 1
4459 pack .vpane.lower.commarea -side top -fill x
4460 pack .vpane.lower.diff -side bottom -fill both -expand 1
4461 .vpane add .vpane.lower -sticky nsew
4463 # -- Commit Area Buttons
4465 frame .vpane.lower.commarea.buttons
4466 label .vpane.lower.commarea.buttons.l -text {} \
4470 pack .vpane.lower.commarea.buttons.l -side top -fill x
4471 pack .vpane.lower.commarea.buttons -side left -fill y
4473 button .vpane.lower.commarea.buttons.rescan -text {Rescan} \
4474 -command do_rescan \
4476 pack .vpane.lower.commarea.buttons.rescan -side top -fill x
4477 lappend disable_on_lock \
4478 {.vpane.lower.commarea.buttons.rescan conf -state}
4480 button .vpane.lower.commarea.buttons.incall -text {Add All} \
4481 -command do_add_all \
4483 pack .vpane.lower.commarea.buttons.incall -side top -fill x
4484 lappend disable_on_lock \
4485 {.vpane.lower.commarea.buttons.incall conf -state}
4487 button .vpane.lower.commarea.buttons.signoff -text {Sign Off} \
4488 -command do_signoff \
4490 pack .vpane.lower.commarea.buttons.signoff -side top -fill x
4492 button .vpane.lower.commarea.buttons.commit -text {Commit} \
4493 -command do_commit \
4495 pack .vpane.lower.commarea.buttons.commit -side top -fill x
4496 lappend disable_on_lock \
4497 {.vpane.lower.commarea.buttons.commit conf -state}
4499 # -- Commit Message Buffer
4501 frame .vpane.lower.commarea.buffer
4502 frame .vpane.lower.commarea.buffer.header
4503 set ui_comm .vpane.lower.commarea.buffer.t
4504 set ui_coml .vpane.lower.commarea.buffer.header.l
4505 radiobutton .vpane.lower.commarea.buffer.header.new \
4506 -text {New Commit} \
4507 -command do_select_commit_type \
4508 -variable selected_commit_type \
4511 lappend disable_on_lock \
4512 [list .vpane.lower.commarea.buffer.header.new conf -state]
4513 radiobutton .vpane.lower.commarea.buffer.header.amend \
4514 -text {Amend Last Commit} \
4515 -command do_select_commit_type \
4516 -variable selected_commit_type \
4519 lappend disable_on_lock \
4520 [list .vpane.lower.commarea.buffer.header.amend conf -state]
4525 proc trace_commit_type {varname args} {
4526 global ui_coml commit_type
4527 switch -glob -- $commit_type {
4528 initial {set txt {Initial Commit Message:}}
4529 amend {set txt {Amended Commit Message:}}
4530 amend-initial {set txt {Amended Initial Commit Message:}}
4531 amend-merge {set txt {Amended Merge Commit Message:}}
4532 merge {set txt {Merge Commit Message:}}
4533 * {set txt {Commit Message:}}
4535 $ui_coml conf -text $txt
4537 trace add variable commit_type write trace_commit_type
4538 pack $ui_coml -side left -fill x
4539 pack .vpane.lower.commarea.buffer.header.amend -side right
4540 pack .vpane.lower.commarea.buffer.header.new -side right
4542 text $ui_comm -background white -borderwidth 1 \
4545 -autoseparators true \
4547 -width 75 -height 9 -wrap none \
4549 -yscrollcommand {.vpane.lower.commarea.buffer.sby set}
4550 scrollbar .vpane.lower.commarea.buffer.sby \
4551 -command [list $ui_comm yview]
4552 pack .vpane.lower.commarea.buffer.header -side top -fill x
4553 pack .vpane.lower.commarea.buffer.sby -side right -fill y
4554 pack $ui_comm -side left -fill y
4555 pack .vpane.lower.commarea.buffer -side left -fill y
4557 # -- Commit Message Buffer Context Menu
4559 set ctxm .vpane.lower.commarea.buffer.ctxm
4560 menu $ctxm -tearoff 0
4564 -command {tk_textCut $ui_comm}
4568 -command {tk_textCopy $ui_comm}
4572 -command {tk_textPaste $ui_comm}
4576 -command {$ui_comm delete sel.first sel.last}
4579 -label {Select All} \
4581 -command {focus $ui_comm;$ui_comm tag add sel 0.0 end}
4586 $ui_comm tag add sel 0.0 end
4587 tk_textCopy $ui_comm
4588 $ui_comm tag remove sel 0.0 end
4595 bind_button3 $ui_comm "tk_popup
$ctxm %X
%Y
"
4599 set current_diff_path {}
4600 set current_diff_side {}
4601 set diff_actions [list]
4602 proc trace_current_diff_path {varname args} {
4603 global current_diff_path diff_actions file_states
4604 if {$current_diff_path eq {}} {
4610 set p $current_diff_path
4611 set s [mapdesc [lindex $file_states($p) 0] $p]
4613 set p [escape_path $p]
4617 .vpane.lower.diff.header.status configure -text $s
4618 .vpane.lower.diff.header.file configure -text $f
4619 .vpane.lower.diff.header.path configure -text $p
4620 foreach w $diff_actions {
4624 trace add variable current_diff_path write trace_current_diff_path
4626 frame .vpane.lower.diff.header -background orange
4627 label .vpane.lower.diff.header.status \
4628 -background orange \
4629 -width $max_status_desc \
4633 label .vpane.lower.diff.header.file \
4634 -background orange \
4638 label .vpane.lower.diff.header.path \
4639 -background orange \
4643 pack .vpane.lower.diff.header.status -side left
4644 pack .vpane.lower.diff.header.file -side left
4645 pack .vpane.lower.diff.header.path -fill x
4646 set ctxm .vpane.lower.diff.header.ctxm
4647 menu $ctxm -tearoff 0
4656 -- $current_diff_path
4658 lappend diff_actions [list $ctxm entryconf [$ctxm index last] -state]
4659 bind_button3 .vpane.lower.diff.header.path "tk_popup
$ctxm %X
%Y
"
4663 frame .vpane.lower.diff.body
4664 set ui_diff .vpane.lower.diff.body.t
4665 text $ui_diff -background white -borderwidth 0 \
4666 -width 80 -height 15 -wrap none \
4668 -xscrollcommand {.vpane.lower.diff.body.sbx set} \
4669 -yscrollcommand {.vpane.lower.diff.body.sby set} \
4671 scrollbar .vpane.lower.diff.body.sbx -orient horizontal \
4672 -command [list $ui_diff xview]
4673 scrollbar .vpane.lower.diff.body.sby -orient vertical \
4674 -command [list $ui_diff yview]
4675 pack .vpane.lower.diff.body.sbx -side bottom -fill x
4676 pack .vpane.lower.diff.body.sby -side right -fill y
4677 pack $ui_diff -side left -fill both -expand 1
4678 pack .vpane.lower.diff.header -side top -fill x
4679 pack .vpane.lower.diff.body -side bottom -fill both -expand 1
4681 $ui_diff tag conf d_cr -elide true
4682 $ui_diff tag conf d_@ -foreground blue -font font_diffbold
4683 $ui_diff tag conf d_+ -foreground {#00a000}
4684 $ui_diff tag conf d_- -foreground red
4686 $ui_diff tag conf d_++ -foreground {#00a000}
4687 $ui_diff tag conf d_-- -foreground red
4688 $ui_diff tag conf d_+s \
4689 -foreground {#00a000} \
4690 -background {#e2effa}
4691 $ui_diff tag conf d_-s \
4693 -background {#e2effa}
4694 $ui_diff tag conf d_s+ \
4695 -foreground {#00a000} \
4697 $ui_diff tag conf d_s- \
4701 $ui_diff tag conf d<<<<<<< \
4702 -foreground orange \
4704 $ui_diff tag conf d======= \
4705 -foreground orange \
4707 $ui_diff tag conf d>>>>>>> \
4708 -foreground orange \
4711 $ui_diff tag raise sel
4713 # -- Diff Body Context Menu
4715 set ctxm .vpane.lower.diff.body.ctxm
4716 menu $ctxm -tearoff 0
4720 -command reshow_diff
4721 lappend diff_actions [list $ctxm entryconf [$ctxm index last] -state]
4725 -command {tk_textCopy $ui_diff}
4726 lappend diff_actions [list $ctxm entryconf [$ctxm index last] -state]
4728 -label {Select All} \
4730 -command {focus $ui_diff;$ui_diff tag add sel 0.0 end}
4731 lappend diff_actions [list $ctxm entryconf [$ctxm index last] -state]
4736 $ui_diff tag add sel 0.0 end
4737 tk_textCopy $ui_diff
4738 $ui_diff tag remove sel 0.0 end
4740 lappend diff_actions [list $ctxm entryconf [$ctxm index last] -state]
4743 -label {Apply/Reverse Hunk} \
4745 -command {apply_hunk $cursorX $cursorY}
4746 set ui_diff_applyhunk [$ctxm index last]
4747 lappend diff_actions [list $ctxm entryconf $ui_diff_applyhunk -state]
4750 -label {Decrease Font Size} \
4752 -command {incr_font_size font_diff -1}
4753 lappend diff_actions [list $ctxm entryconf [$ctxm index last] -state]
4755 -label {Increase Font Size} \
4757 -command {incr_font_size font_diff 1}
4758 lappend diff_actions [list $ctxm entryconf [$ctxm index last] -state]
4761 -label {Show Less Context} \
4763 -command {if {$repo_config(gui.diffcontext) >= 2} {
4764 incr repo_config(gui.diffcontext) -1
4767 lappend diff_actions [list $ctxm entryconf [$ctxm index last] -state]
4769 -label {Show More Context} \
4772 incr repo_config(gui.diffcontext)
4775 lappend diff_actions [list $ctxm entryconf [$ctxm index last] -state]
4777 $ctxm add command -label {Options...} \
4780 bind_button3 $ui_diff "
4783 if {\
$ui_index eq \
$current_diff_side} {
4784 $ctxm entryconf
$ui_diff_applyhunk -label {Unstage Hunk From Commit
}
4786 $ctxm entryconf
$ui_diff_applyhunk -label {Stage Hunk For Commit
}
4788 tk_popup
$ctxm %X
%Y
4790 unset ui_diff_applyhunk
4794 set ui_status_value {Initializing...}
4795 label .status -textvariable ui_status_value \
4801 pack .status -anchor w -side bottom -fill x
4806 set gm $repo_config(gui.geometry)
4807 wm geometry . [lindex $gm 0]
4808 .vpane sash place 0 \
4809 [lindex [.vpane sash coord 0] 0] \
4811 .vpane.files sash place 0 \
4813 [lindex [.vpane.files sash coord 0] 1]
4819 bind $ui_comm <$M1B-Key-Return> {do_commit;break}
4820 bind $ui_comm <$M1B-Key-i> {do_add_all;break}
4821 bind $ui_comm <$M1B-Key-I> {do_add_all;break}
4822 bind $ui_comm <$M1B-Key-x> {tk_textCut %W;break}
4823 bind $ui_comm <$M1B-Key-X> {tk_textCut %W;break}
4824 bind $ui_comm <$M1B-Key-c> {tk_textCopy %W;break}
4825 bind $ui_comm <$M1B-Key-C> {tk_textCopy %W;break}
4826 bind $ui_comm <$M1B-Key-v> {tk_textPaste %W; %W see insert; break}
4827 bind $ui_comm <$M1B-Key-V> {tk_textPaste %W; %W see insert; break}
4828 bind $ui_comm <$M1B-Key-a> {%W tag add sel 0.0 end;break}
4829 bind $ui_comm <$M1B-Key-A> {%W tag add sel 0.0 end;break}
4831 bind $ui_diff <$M1B-Key-x> {tk_textCopy %W;break}
4832 bind $ui_diff <$M1B-Key-X> {tk_textCopy %W;break}
4833 bind $ui_diff <$M1B-Key-c> {tk_textCopy %W;break}
4834 bind $ui_diff <$M1B-Key-C> {tk_textCopy %W;break}
4835 bind $ui_diff <$M1B-Key-v> {break}
4836 bind $ui_diff <$M1B-Key-V> {break}
4837 bind $ui_diff <$M1B-Key-a> {%W tag add sel 0.0 end;break}
4838 bind $ui_diff <$M1B-Key-A> {%W tag add sel 0.0 end;break}
4839 bind $ui_diff <Key-Up> {catch {%W yview scroll -1 units};break}
4840 bind $ui_diff <Key-Down> {catch {%W yview scroll 1 units};break}
4841 bind $ui_diff <Key-Left> {catch {%W xview scroll -1 units};break}
4842 bind $ui_diff <Key-Right> {catch {%W xview scroll 1 units};break}
4843 bind $ui_diff <Button-1> {focus %W}
4845 if {!$single_commit} {
4846 bind . <$M1B-Key-n> do_create_branch
4847 bind . <$M1B-Key-N> do_create_branch
4850 bind . <Destroy> do_quit
4851 bind all <Key-F5> do_rescan
4852 bind all <$M1B-Key-r> do_rescan
4853 bind all <$M1B-Key-R> do_rescan
4854 bind . <$M1B-Key-s> do_signoff
4855 bind . <$M1B-Key-S> do_signoff
4856 bind . <$M1B-Key-i> do_add_all
4857 bind . <$M1B-Key-I> do_add_all
4858 bind . <$M1B-Key-Return> do_commit
4859 bind all <$M1B-Key-q> do_quit
4860 bind all <$M1B-Key-Q> do_quit
4861 bind all <$M1B-Key-w> {destroy [winfo toplevel %W]}
4862 bind all <$M1B-Key-W> {destroy [winfo toplevel %W]}
4863 foreach i [list $ui_index $ui_workdir] {
4864 bind $i <Button-1> "toggle_or_diff
$i %x
%y
; break"
4865 bind $i <$M1B-Button-1> "add_one_to_selection
$i %x
%y
; break"
4866 bind $i <Shift-Button-1> "add_range_to_selection
$i %x
%y
; break"
4870 set file_lists($ui_index) [list]
4871 set file_lists($ui_workdir) [list]
4875 set MERGE_HEAD [list]
4878 set current_branch {}
4879 set current_diff_path {}
4880 set selected_commit_type new
4882 wm title . "[appname
] ([file normalize
[file dirname [gitdir
]]])"
4883 focus -force $ui_comm
4885 # -- Warn the user about environmental problems. Cygwin's Tcl
4886 # does *not* pass its env array onto any processes it spawns.
4887 # This means that git processes get none of our environment.
4892 set msg "Possible environment issues exist.
4894 The following environment variables are probably
4895 going to be ignored by any Git subprocess run
4899 foreach name [array names env] {
4900 switch -regexp -- $name {
4901 {^GIT_INDEX_FILE$} -
4902 {^GIT_OBJECT_DIRECTORY$} -
4903 {^GIT_ALTERNATE_OBJECT_DIRECTORIES$} -
4905 {^GIT_EXTERNAL_DIFF$} -
4909 {^GIT_CONFIG_LOCAL$} -
4910 {^GIT_(AUTHOR|COMMITTER)_DATE$} {
4911 append msg " - $name\n"
4914 {^GIT_(AUTHOR|COMMITTER)_(NAME|EMAIL)$} {
4915 append msg " - $name\n"
4917 set suggest_user $name
4921 if {$ignored_env > 0} {
4923 This is due to a known issue with the
4924 Tcl binary distributed by Cygwin.
"
4926 if {$suggest_user ne {}} {
4929 A good replacement
for $suggest_user
4930 is placing values
for the user.name and
4931 user.email settings into your personal
4937 unset ignored_env msg suggest_user name
4940 # -- Only initialize complex UI if we are going to stay running.
4942 if {!$single_commit} {
4946 populate_branch_menu
4951 # -- Only suggest a gc run if we are going to stay running.
4953 if {!$single_commit} {
4954 set object_limit 2000
4955 if {[is_Windows]} {set object_limit 200}
4956 regexp {^([0-9]+) objects,} [exec git count-objects] _junk objects_current
4957 if {$objects_current >= $object_limit} {
4959 "This repository currently has
$objects_current loose objects.
4961 To maintain optimal performance it is strongly
4962 recommended that you
compress the database
4963 when
more than
$object_limit loose objects exist.
4965 Compress the database now?
"] eq yes} {
4969 unset object_limit _junk objects_current
4972 lock_index begin-read