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
} {
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 {$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
414 fconfigure
$fd_df -blocking 0 -translation binary
415 fconfigure
$fd_lo -blocking 0 -translation 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 $ui_comm delete
0.0 end
432 $ui_comm insert end
$content
438 proc read_diff_index
{fd after
} {
441 append buf_rdi
[read $fd]
443 set n
[string length
$buf_rdi]
445 set z1
[string first
"\0" $buf_rdi $c]
448 set z2
[string first
"\0" $buf_rdi $z1]
452 set i
[split [string range
$buf_rdi $c [expr {$z1 - 2}]] { }]
454 [string range
$buf_rdi $z1 [expr {$z2 - 1}]] \
456 [list
[lindex
$i 0] [lindex
$i 2]] \
462 set buf_rdi
[string range
$buf_rdi $c end
]
467 rescan_done
$fd buf_rdi
$after
470 proc read_diff_files
{fd after
} {
473 append buf_rdf
[read $fd]
475 set n
[string length
$buf_rdf]
477 set z1
[string first
"\0" $buf_rdf $c]
480 set z2
[string first
"\0" $buf_rdf $z1]
484 set i
[split [string range
$buf_rdf $c [expr {$z1 - 2}]] { }]
486 [string range
$buf_rdf $z1 [expr {$z2 - 1}]] \
489 [list
[lindex
$i 0] [lindex
$i 2]]
494 set buf_rdf
[string range
$buf_rdf $c end
]
499 rescan_done
$fd buf_rdf
$after
502 proc read_ls_others
{fd after
} {
505 append buf_rlo
[read $fd]
506 set pck
[split $buf_rlo "\0"]
507 set buf_rlo
[lindex
$pck end
]
508 foreach p
[lrange
$pck 0 end-1
] {
511 rescan_done
$fd buf_rlo
$after
514 proc rescan_done
{fd buf after
} {
516 global file_states repo_config
519 if {![eof
$fd]} return
522 if {[incr rescan_active
-1] > 0} return
531 proc prune_selection
{} {
532 global file_states selected_paths
534 foreach path
[array names selected_paths
] {
535 if {[catch
{set still_here
$file_states($path)}]} {
536 unset selected_paths
($path)
541 ######################################################################
546 global ui_diff current_diff_path ui_index ui_workdir
548 $ui_diff conf
-state normal
549 $ui_diff delete
0.0 end
550 $ui_diff conf
-state disabled
552 set current_diff_path
{}
554 $ui_index tag remove in_diff
0.0 end
555 $ui_workdir tag remove in_diff
0.0 end
558 proc reshow_diff
{} {
559 global ui_status_value file_states file_lists
560 global current_diff_path current_diff_side
562 set p
$current_diff_path
564 ||
$current_diff_side eq
{}
565 ||
[catch
{set s
$file_states($p)}]
566 ||
[lsearch
-sorted $file_lists($current_diff_side) $p] == -1} {
569 show_diff
$p $current_diff_side
573 proc handle_empty_diff
{} {
574 global current_diff_path file_states file_lists
576 set path
$current_diff_path
577 set s
$file_states($path)
578 if {[lindex
$s 0] ne
{_M
}} return
580 info_popup
"No differences detected.
582 [short_path $path] has no changes.
584 The modification date of this file was updated
585 by another application and you currently have
586 the Trust File Modification Timestamps option
587 enabled, so Git did not automatically detect
588 that there are no content differences in this
591 This file will now be removed from the modified
592 files list, to prevent possible confusion.
594 if {[catch
{exec git update-index
-- $path} err
]} {
595 error_popup
"Failed to refresh index:\n\n$err"
599 display_file
$path __
602 proc show_diff
{path w
{lno
{}}} {
603 global file_states file_lists
604 global is_3way_diff diff_active repo_config
605 global ui_diff ui_status_value ui_index ui_workdir
606 global current_diff_path current_diff_side
608 if {$diff_active ||
![lock_index
read]} return
611 if {$w eq
{} ||
$lno == {}} {
612 foreach w
[array names file_lists
] {
613 set lno
[lsearch
-sorted $file_lists($w) $path]
620 if {$w ne
{} && $lno >= 1} {
621 $w tag add in_diff
$lno.0 [expr {$lno + 1}].0
624 set s
$file_states($path)
628 set current_diff_path
$path
629 set current_diff_side
$w
630 set ui_status_value
"Loading diff of [escape_path $path]..."
632 # - Git won't give us the diff, there's nothing to compare to!
636 set fd
[open
$path r
]
637 set content
[read $fd]
642 set ui_status_value
"Unable to display [escape_path $path]"
643 error_popup
"Error loading file:\n\n$err"
646 $ui_diff conf
-state normal
647 $ui_diff insert end
$content
648 $ui_diff conf
-state disabled
651 set ui_status_value
{Ready.
}
656 if {$w eq
$ui_index} {
657 lappend cmd diff-index
659 } elseif
{$w eq
$ui_workdir} {
660 if {[string index
$m 0] eq
{U
}} {
663 lappend cmd diff-files
668 lappend cmd
--no-color
669 if {$repo_config(gui.diffcontext
) > 0} {
670 lappend cmd
"-U$repo_config(gui.diffcontext)"
672 if {$w eq
$ui_index} {
678 if {[catch
{set fd
[open
$cmd r
]} err
]} {
681 set ui_status_value
"Unable to display [escape_path $path]"
682 error_popup
"Error loading diff:\n\n$err"
686 fconfigure
$fd -blocking 0 -translation auto
687 fileevent
$fd readable
[list read_diff
$fd]
690 proc read_diff
{fd
} {
691 global ui_diff ui_status_value is_3way_diff diff_active
694 $ui_diff conf
-state normal
695 while {[gets
$fd line
] >= 0} {
696 # -- Cleanup uninteresting diff header lines.
698 if {[string match
{diff --git *} $line]} continue
699 if {[string match
{diff --cc *} $line]} continue
700 if {[string match
{diff --combined *} $line]} continue
701 if {[string match
{--- *} $line]} continue
702 if {[string match
{+++ *} $line]} continue
703 if {$line eq
{deleted
file mode
120000}} {
704 set line
"deleted symlink"
707 # -- Automatically detect if this is a 3 way diff.
709 if {[string match
{@@@
*} $line]} {set is_3way_diff
1}
711 if {[string match
{index
*} $line]} {
713 } elseif
{$is_3way_diff} {
714 set op
[string range
$line 0 1]
724 if {[regexp
{^\
+\
+([<>]{7} |
={7})} $line _g op
]} {
725 set line
[string replace
$line 0 1 { }]
732 puts
"error: Unhandled 3 way diff marker: {$op}"
737 set op
[string index
$line 0]
743 if {[regexp
{^\
+([<>]{7} |
={7})} $line _g op
]} {
744 set line
[string replace
$line 0 0 { }]
751 puts
"error: Unhandled 2 way diff marker: {$op}"
756 $ui_diff insert end
$line $tags
757 $ui_diff insert end
"\n" $tags
759 $ui_diff conf
-state disabled
765 set ui_status_value
{Ready.
}
767 if {$repo_config(gui.trustmtime
) eq
{true
}
768 && [$ui_diff index end
] eq
{2.0}} {
774 ######################################################################
778 proc load_last_commit
{} {
779 global HEAD PARENT MERGE_HEAD commit_type ui_comm
781 if {[llength
$PARENT] == 0} {
782 error_popup
{There is nothing to amend.
784 You are about to create the initial commit.
785 There is no commit before this to amend.
790 repository_state curType curHEAD curMERGE_HEAD
791 if {$curType eq
{merge
}} {
792 error_popup
{Cannot amend
while merging.
794 You are currently
in the middle of a merge that
795 has not been fully completed. You cannot amend
796 the prior commit unless you first abort the
797 current merge activity.
805 set fd
[open
"| git cat-file commit $curHEAD" r
]
806 while {[gets
$fd line
] > 0} {
807 if {[string match
{parent
*} $line]} {
808 lappend parents
[string range
$line 7 end
]
811 set msg
[string trim
[read $fd]]
814 error_popup
"Error loading commit data for amend:\n\n$err"
820 set MERGE_HEAD
[list
]
821 switch
-- [llength
$parents] {
822 0 {set commit_type amend-initial
}
823 1 {set commit_type amend
}
824 default
{set commit_type amend-merge
}
827 $ui_comm delete
0.0 end
828 $ui_comm insert end
$msg
830 $ui_comm edit modified false
831 rescan
{set ui_status_value
{Ready.
}}
834 proc create_new_commit
{} {
835 global commit_type ui_comm
837 set commit_type normal
838 $ui_comm delete
0.0 end
840 $ui_comm edit modified false
841 rescan
{set ui_status_value
{Ready.
}}
844 set GIT_COMMITTER_IDENT
{}
846 proc committer_ident
{} {
847 global GIT_COMMITTER_IDENT
849 if {$GIT_COMMITTER_IDENT eq
{}} {
850 if {[catch
{set me
[exec git var GIT_COMMITTER_IDENT
]} err
]} {
851 error_popup
"Unable to obtain your identity:\n\n$err"
854 if {![regexp
{^
(.
*) [0-9]+ [-+0-9]+$
} \
855 $me me GIT_COMMITTER_IDENT
]} {
856 error_popup
"Invalid GIT_COMMITTER_IDENT:\n\n$me"
861 return $GIT_COMMITTER_IDENT
864 proc commit_tree
{} {
865 global HEAD commit_type file_states ui_comm repo_config
866 global ui_status_value pch_error
868 if {![lock_index update
]} return
869 if {[committer_ident
] eq
{}} return
871 # -- Our in memory state should match the repository.
873 repository_state curType curHEAD curMERGE_HEAD
874 if {[string match amend
* $commit_type]
875 && $curType eq
{normal
}
876 && $curHEAD eq
$HEAD} {
877 } elseif
{$commit_type ne
$curType ||
$HEAD ne
$curHEAD} {
878 info_popup
{Last scanned state does not match repository state.
880 Another Git program has modified this repository
881 since the last scan. A rescan must be performed
882 before another commit can be created.
884 The rescan will be automatically started now.
887 rescan
{set ui_status_value
{Ready.
}}
891 # -- At least one file should differ in the index.
894 foreach path
[array names file_states
] {
895 switch
-glob -- [lindex
$file_states($path) 0] {
899 M?
{set files_ready
1}
901 error_popup
"Unmerged files cannot be committed.
903 File [short_path $path] has merge conflicts.
904 You must resolve them and add the file before committing.
910 error_popup
"Unknown file state [lindex $s 0] detected.
912 File [short_path $path] cannot be committed by this program.
918 error_popup
{No changes to commit.
920 You must add
at least
1 file before you can commit.
926 # -- A message is required.
928 set msg
[string trim
[$ui_comm get
1.0 end
]]
930 error_popup
{Please supply a commit message.
932 A good commit message has the following format
:
934 - First line
: Describe
in one sentance what you did.
936 - Remaining lines
: Describe why this change is good.
942 # -- Run the pre-commit hook.
944 set pchook
[gitdir hooks pre-commit
]
946 # On Cygwin [file executable] might lie so we need to ask
947 # the shell if the hook is executable. Yes that's annoying.
949 if {[is_Windows
] && [file isfile
$pchook]} {
950 set pchook
[list sh
-c [concat \
951 "if test -x \"$pchook\";" \
952 "then exec \"$pchook\" 2>&1;" \
954 } elseif
{[file executable
$pchook]} {
955 set pchook
[list
$pchook |
& cat]
957 commit_writetree
$curHEAD $msg
961 set ui_status_value
{Calling pre-commit hook...
}
963 set fd_ph
[open
"| $pchook" r
]
964 fconfigure
$fd_ph -blocking 0 -translation binary
965 fileevent
$fd_ph readable \
966 [list commit_prehook_wait
$fd_ph $curHEAD $msg]
969 proc commit_prehook_wait
{fd_ph curHEAD msg
} {
970 global pch_error ui_status_value
972 append pch_error
[read $fd_ph]
973 fconfigure
$fd_ph -blocking 1
975 if {[catch
{close
$fd_ph}]} {
976 set ui_status_value
{Commit declined by pre-commit hook.
}
977 hook_failed_popup pre-commit
$pch_error
980 commit_writetree
$curHEAD $msg
985 fconfigure
$fd_ph -blocking 0
988 proc commit_writetree
{curHEAD msg
} {
989 global ui_status_value
991 set ui_status_value
{Committing changes...
}
992 set fd_wt
[open
"| git write-tree" r
]
993 fileevent
$fd_wt readable \
994 [list commit_committree
$fd_wt $curHEAD $msg]
997 proc commit_committree
{fd_wt curHEAD msg
} {
998 global HEAD PARENT MERGE_HEAD commit_type
1000 global ui_status_value ui_comm selected_commit_type
1001 global file_states selected_paths rescan_active
1004 if {$tree_id eq
{} ||
[catch
{close
$fd_wt} err
]} {
1005 error_popup
"write-tree failed:\n\n$err"
1006 set ui_status_value
{Commit failed.
}
1011 # -- Create the commit.
1013 set cmd
[list git commit-tree
$tree_id]
1014 set parents
[concat
$PARENT $MERGE_HEAD]
1015 if {[llength
$parents] > 0} {
1016 foreach p
$parents {
1020 # git commit-tree writes to stderr during initial commit.
1021 lappend cmd
2>/dev
/null
1024 if {[catch
{set cmt_id
[eval exec $cmd]} err
]} {
1025 error_popup
"commit-tree failed:\n\n$err"
1026 set ui_status_value
{Commit failed.
}
1031 # -- Update the HEAD ref.
1034 if {$commit_type ne
{normal
}} {
1035 append reflogm
" ($commit_type)"
1037 set i
[string first
"\n" $msg]
1039 append reflogm
{: } [string range
$msg 0 [expr {$i - 1}]]
1041 append reflogm
{: } $msg
1043 set cmd
[list git update-ref
-m $reflogm HEAD
$cmt_id $curHEAD]
1044 if {[catch
{eval exec $cmd} err
]} {
1045 error_popup
"update-ref failed:\n\n$err"
1046 set ui_status_value
{Commit failed.
}
1051 # -- Cleanup after ourselves.
1053 catch
{file delete
[gitdir MERGE_HEAD
]}
1054 catch
{file delete
[gitdir MERGE_MSG
]}
1055 catch
{file delete
[gitdir SQUASH_MSG
]}
1056 catch
{file delete
[gitdir GITGUI_MSG
]}
1058 # -- Let rerere do its thing.
1060 if {[file isdirectory
[gitdir rr-cache
]]} {
1061 catch
{exec git rerere
}
1064 # -- Run the post-commit hook.
1066 set pchook
[gitdir hooks post-commit
]
1067 if {[is_Windows
] && [file isfile
$pchook]} {
1068 set pchook
[list sh
-c [concat \
1069 "if test -x \"$pchook\";" \
1070 "then exec \"$pchook\";" \
1072 } elseif
{![file executable
$pchook]} {
1075 if {$pchook ne
{}} {
1076 catch
{exec $pchook &}
1079 $ui_comm delete
0.0 end
1081 $ui_comm edit modified false
1083 if {$single_commit} do_quit
1085 # -- Update in memory status
1087 set selected_commit_type new
1088 set commit_type normal
1091 set MERGE_HEAD
[list
]
1093 foreach path
[array names file_states
] {
1094 set s
$file_states($path)
1096 switch
-glob -- $m {
1104 unset file_states
($path)
1105 catch
{unset selected_paths
($path)}
1108 set file_states
($path) [list _O
[lindex
$s 1] {} {}]
1114 set file_states
($path) [list \
1115 _
[string index
$m 1] \
1126 set ui_status_value \
1127 "Changes committed as [string range $cmt_id 0 7]."
1130 ######################################################################
1134 proc fetch_from
{remote
} {
1135 set w
[new_console
"fetch $remote" \
1136 "Fetching new changes from $remote"]
1137 set cmd
[list git fetch
]
1139 console_exec
$w $cmd
1142 proc pull_remote
{remote branch
} {
1143 global HEAD commit_type file_states repo_config
1145 if {![lock_index update
]} return
1147 # -- Our in memory state should match the repository.
1149 repository_state curType curHEAD curMERGE_HEAD
1150 if {$commit_type ne
$curType ||
$HEAD ne
$curHEAD} {
1151 info_popup
{Last scanned state does not match repository state.
1153 Another Git program has modified this repository
1154 since the last scan. A rescan must be performed
1155 before a pull operation can be started.
1157 The rescan will be automatically started now.
1160 rescan
{set ui_status_value
{Ready.
}}
1164 # -- No differences should exist before a pull.
1166 if {[array size file_states
] != 0} {
1167 error_popup
{Uncommitted but modified files are present.
1169 You should not perform a pull with unmodified
1170 files
in your working directory as Git will be
1171 unable to recover from an incorrect merge.
1173 You should commit or revert all changes before
1174 starting a pull operation.
1180 set w
[new_console
"pull $remote $branch" \
1181 "Pulling new changes from branch $branch in $remote"]
1182 set cmd
[list git pull
]
1183 if {$repo_config(gui.pullsummary
) eq
{false
}} {
1184 lappend cmd
--no-summary
1188 console_exec
$w $cmd [list post_pull_remote
$remote $branch]
1191 proc post_pull_remote
{remote branch success
} {
1192 global HEAD PARENT MERGE_HEAD commit_type selected_commit_type
1193 global ui_status_value
1197 repository_state commit_type HEAD MERGE_HEAD
1199 set selected_commit_type new
1200 set ui_status_value
"Pulling $branch from $remote complete."
1202 rescan
[list
set ui_status_value \
1203 "Conflicts detected while pulling $branch from $remote."]
1207 proc push_to
{remote
} {
1208 set w
[new_console
"push $remote" \
1209 "Pushing changes to $remote"]
1210 set cmd
[list git push
]
1212 console_exec
$w $cmd
1215 ######################################################################
1219 proc mapicon
{w state path
} {
1222 if {[catch
{set r
$all_icons($state$w)}]} {
1223 puts
"error: no icon for $w state={$state} $path"
1229 proc mapdesc
{state path
} {
1232 if {[catch
{set r
$all_descs($state)}]} {
1233 puts
"error: no desc for state={$state} $path"
1239 proc escape_path
{path
} {
1240 regsub
-all "\n" $path "\\n" path
1244 proc short_path
{path
} {
1245 return [escape_path
[lindex
[file split $path] end
]]
1249 set null_sha1
[string repeat
0 40]
1251 proc merge_state
{path new_state
{head_info
{}} {index_info
{}}} {
1252 global file_states next_icon_id null_sha1
1254 set s0
[string index
$new_state 0]
1255 set s1
[string index
$new_state 1]
1257 if {[catch
{set info
$file_states($path)}]} {
1259 set icon n
[incr next_icon_id
]
1261 set state
[lindex
$info 0]
1262 set icon
[lindex
$info 1]
1263 if {$head_info eq
{}} {set head_info
[lindex
$info 2]}
1264 if {$index_info eq
{}} {set index_info
[lindex
$info 3]}
1267 if {$s0 eq
{?
}} {set s0
[string index
$state 0]} \
1268 elseif
{$s0 eq
{_
}} {set s0 _
}
1270 if {$s1 eq
{?
}} {set s1
[string index
$state 1]} \
1271 elseif
{$s1 eq
{_
}} {set s1 _
}
1273 if {$s0 eq
{A
} && $s1 eq
{_
} && $head_info eq
{}} {
1274 set head_info
[list
0 $null_sha1]
1275 } elseif
{$s0 ne
{_
} && [string index
$state 0] eq
{_
}
1276 && $head_info eq
{}} {
1277 set head_info
$index_info
1280 set file_states
($path) [list
$s0$s1 $icon \
1281 $head_info $index_info \
1286 proc display_file_helper
{w path icon_name old_m new_m
} {
1289 if {$new_m eq
{_
}} {
1290 set lno
[lsearch
-sorted $file_lists($w) $path]
1292 set file_lists
($w) [lreplace
$file_lists($w) $lno $lno]
1294 $w conf
-state normal
1295 $w delete
$lno.0 [expr {$lno + 1}].0
1296 $w conf
-state disabled
1298 } elseif
{$old_m eq
{_
} && $new_m ne
{_
}} {
1299 lappend file_lists
($w) $path
1300 set file_lists
($w) [lsort
-unique $file_lists($w)]
1301 set lno
[lsearch
-sorted $file_lists($w) $path]
1303 $w conf
-state normal
1304 $w image create
$lno.0 \
1305 -align center
-padx 5 -pady 1 \
1307 -image [mapicon
$w $new_m $path]
1308 $w insert
$lno.1 "[escape_path $path]\n"
1309 $w conf
-state disabled
1310 } elseif
{$old_m ne
$new_m} {
1311 $w conf
-state normal
1312 $w image conf
$icon_name -image [mapicon
$w $new_m $path]
1313 $w conf
-state disabled
1317 proc display_file
{path state
} {
1318 global file_states selected_paths
1319 global ui_index ui_workdir
1321 set old_m
[merge_state
$path $state]
1322 set s
$file_states($path)
1323 set new_m
[lindex
$s 0]
1324 set icon_name
[lindex
$s 1]
1326 set o
[string index
$old_m 0]
1327 set n
[string index
$new_m 0]
1334 display_file_helper
$ui_index $path $icon_name $o $n
1336 if {[string index
$old_m 0] eq
{U
}} {
1339 set o
[string index
$old_m 1]
1341 if {[string index
$new_m 0] eq
{U
}} {
1344 set n
[string index
$new_m 1]
1346 display_file_helper
$ui_workdir $path $icon_name $o $n
1348 if {$new_m eq
{__
}} {
1349 unset file_states
($path)
1350 catch
{unset selected_paths
($path)}
1354 proc display_all_files_helper
{w path icon_name m
} {
1357 lappend file_lists
($w) $path
1358 set lno
[expr {[lindex
[split [$w index end
] .
] 0] - 1}]
1359 $w image create end \
1360 -align center
-padx 5 -pady 1 \
1362 -image [mapicon
$w $m $path]
1363 $w insert end
"[escape_path $path]\n"
1366 proc display_all_files
{} {
1367 global ui_index ui_workdir
1368 global file_states file_lists
1371 $ui_index conf
-state normal
1372 $ui_workdir conf
-state normal
1374 $ui_index delete
0.0 end
1375 $ui_workdir delete
0.0 end
1378 set file_lists
($ui_index) [list
]
1379 set file_lists
($ui_workdir) [list
]
1381 foreach path
[lsort
[array names file_states
]] {
1382 set s
$file_states($path)
1384 set icon_name
[lindex
$s 1]
1386 set s
[string index
$m 0]
1387 if {$s ne
{U
} && $s ne
{_
}} {
1388 display_all_files_helper
$ui_index $path \
1392 if {[string index
$m 0] eq
{U
}} {
1395 set s
[string index
$m 1]
1398 display_all_files_helper
$ui_workdir $path \
1403 $ui_index conf
-state disabled
1404 $ui_workdir conf
-state disabled
1407 proc update_indexinfo
{msg pathList after
} {
1408 global update_index_cp ui_status_value
1410 if {![lock_index update
]} return
1412 set update_index_cp
0
1413 set pathList
[lsort
$pathList]
1414 set totalCnt
[llength
$pathList]
1415 set batch [expr {int
($totalCnt * .01) + 1}]
1416 if {$batch > 25} {set batch 25}
1418 set ui_status_value
[format \
1419 "$msg... %i/%i files (%.2f%%)" \
1423 set fd
[open
"| git update-index -z --index-info" w
]
1429 fileevent
$fd writable
[list \
1430 write_update_indexinfo \
1440 proc write_update_indexinfo
{fd pathList totalCnt
batch msg after
} {
1441 global update_index_cp ui_status_value
1442 global file_states current_diff_path
1444 if {$update_index_cp >= $totalCnt} {
1451 for {set i
$batch} \
1452 {$update_index_cp < $totalCnt && $i > 0} \
1454 set path
[lindex
$pathList $update_index_cp]
1455 incr update_index_cp
1457 set s
$file_states($path)
1458 switch
-glob -- [lindex
$s 0] {
1465 set info
[lindex
$s 2]
1466 if {$info eq
{}} continue
1468 puts
-nonewline $fd "$info\t$path\0"
1469 display_file
$path $new
1472 set ui_status_value
[format \
1473 "$msg... %i/%i files (%.2f%%)" \
1476 [expr {100.0 * $update_index_cp / $totalCnt}]]
1479 proc update_index
{msg pathList after
} {
1480 global update_index_cp ui_status_value
1482 if {![lock_index update
]} return
1484 set update_index_cp
0
1485 set pathList
[lsort
$pathList]
1486 set totalCnt
[llength
$pathList]
1487 set batch [expr {int
($totalCnt * .01) + 1}]
1488 if {$batch > 25} {set batch 25}
1490 set ui_status_value
[format \
1491 "$msg... %i/%i files (%.2f%%)" \
1495 set fd
[open
"| git update-index --add --remove -z --stdin" w
]
1501 fileevent
$fd writable
[list \
1502 write_update_index \
1512 proc write_update_index
{fd pathList totalCnt
batch msg after
} {
1513 global update_index_cp ui_status_value
1514 global file_states current_diff_path
1516 if {$update_index_cp >= $totalCnt} {
1523 for {set i
$batch} \
1524 {$update_index_cp < $totalCnt && $i > 0} \
1526 set path
[lindex
$pathList $update_index_cp]
1527 incr update_index_cp
1529 switch
-glob -- [lindex
$file_states($path) 0] {
1535 if {[file exists
$path]} {
1544 puts
-nonewline $fd "$path\0"
1545 display_file
$path $new
1548 set ui_status_value
[format \
1549 "$msg... %i/%i files (%.2f%%)" \
1552 [expr {100.0 * $update_index_cp / $totalCnt}]]
1555 proc checkout_index
{msg pathList after
} {
1556 global update_index_cp ui_status_value
1558 if {![lock_index update
]} return
1560 set update_index_cp
0
1561 set pathList
[lsort
$pathList]
1562 set totalCnt
[llength
$pathList]
1563 set batch [expr {int
($totalCnt * .01) + 1}]
1564 if {$batch > 25} {set batch 25}
1566 set ui_status_value
[format \
1567 "$msg... %i/%i files (%.2f%%)" \
1571 set cmd
[list git checkout-index
]
1577 set fd
[open
"| $cmd " w
]
1583 fileevent
$fd writable
[list \
1584 write_checkout_index \
1594 proc write_checkout_index
{fd pathList totalCnt
batch msg after
} {
1595 global update_index_cp ui_status_value
1596 global file_states current_diff_path
1598 if {$update_index_cp >= $totalCnt} {
1605 for {set i
$batch} \
1606 {$update_index_cp < $totalCnt && $i > 0} \
1608 set path
[lindex
$pathList $update_index_cp]
1609 incr update_index_cp
1610 switch
-glob -- [lindex
$file_states($path) 0] {
1614 puts
-nonewline $fd "$path\0"
1615 display_file
$path ?_
1620 set ui_status_value
[format \
1621 "$msg... %i/%i files (%.2f%%)" \
1624 [expr {100.0 * $update_index_cp / $totalCnt}]]
1627 ######################################################################
1629 ## branch management
1631 proc load_all_heads
{} {
1632 global all_heads tracking_branches
1634 set all_heads
[list
]
1635 set cmd
[list git for-each-ref
]
1636 lappend cmd
--format=%(refname
)
1637 lappend cmd refs
/heads
1638 set fd
[open
"| $cmd" r
]
1639 while {[gets
$fd line
] > 0} {
1640 if {![catch
{set info
$tracking_branches($line)}]} continue
1641 if {![regsub ^refs
/heads
/ $line {} name
]} continue
1642 lappend all_heads
$name
1646 set all_heads
[lsort
$all_heads]
1649 proc populate_branch_menu
{} {
1650 global all_heads disable_on_lock
1653 set last
[$m index last
]
1654 for {set i
0} {$i <= $last} {incr i
} {
1655 if {[$m type $i] eq
{separator
}} {
1658 foreach a
$disable_on_lock {
1659 if {[lindex
$a 0] ne
$m ||
[lindex
$a 2] < $i} {
1663 set disable_on_lock
$new_dol
1669 foreach b
$all_heads {
1670 $m add radiobutton \
1672 -command [list switch_branch
$b] \
1673 -variable current_branch \
1676 lappend disable_on_lock \
1677 [list
$m entryconf
[$m index last
] -state]
1681 proc do_create_branch_action
{w
} {
1682 global all_heads null_sha1
1683 global create_branch_checkout create_branch_revtype
1684 global create_branch_head create_branch_trackinghead
1686 set newbranch
[string trim
[$w.name.t get
0.0 end
]]
1687 if {![catch
{exec git show-ref
--verify -- "refs/heads/$newbranch"}]} {
1691 -title [wm title
$w] \
1693 -message "Branch '$newbranch' already exists."
1697 if {[catch
{exec git check-ref-format
"heads/$newbranch"}]} {
1701 -title [wm title
$w] \
1703 -message "We do not like '$newbranch' as a branch name."
1709 switch
-- $create_branch_revtype {
1710 head {set rev $create_branch_head}
1711 tracking
{set rev $create_branch_trackinghead}
1712 expression
{set rev [string trim
[$w.from.exp.t get
0.0 end
]]}
1714 if {[catch
{set cmt
[exec git rev-parse
--verify "${rev}^0"]}]} {
1718 -title [wm title
$w] \
1720 -message "Invalid starting revision: $rev"
1723 set cmd
[list git update-ref
]
1725 lappend cmd
"branch: Created from $rev"
1726 lappend cmd
"refs/heads/$newbranch"
1728 lappend cmd
$null_sha1
1729 if {[catch
{eval exec $cmd} err
]} {
1733 -title [wm title
$w] \
1735 -message "Failed to create '$newbranch'.\n\n$err"
1739 lappend all_heads
$newbranch
1740 set all_heads
[lsort
$all_heads]
1741 populate_branch_menu
1743 if {$create_branch_checkout} {
1744 switch_branch
$newbranch
1748 proc do_create_branch
{} {
1749 global all_heads current_branch tracking_branches
1750 global create_branch_checkout create_branch_revtype
1751 global create_branch_head create_branch_trackinghead
1753 set create_branch_checkout
1
1754 set create_branch_revtype
head
1755 set create_branch_head
$current_branch
1756 set create_branch_trackinghead
{}
1758 set w .branch_editor
1760 wm geometry
$w "+[winfo rootx .]+[winfo rooty .]"
1762 label
$w.header
-text {Create New Branch
} \
1764 pack
$w.header
-side top
-fill x
1767 button
$w.buttons.create
-text Create \
1770 -command [list do_create_branch_action
$w]
1771 pack
$w.buttons.create
-side right
1772 button
$w.buttons.cancel
-text {Cancel
} \
1774 -command [list destroy
$w]
1775 pack
$w.buttons.cancel
-side right
-padx 5
1776 pack
$w.buttons
-side bottom
-fill x
-pady 10 -padx 10
1778 labelframe
$w.name \
1779 -text {Branch Description
} \
1781 label
$w.name.l
-text {Name
:} -font font_ui
1788 bind $w.name.t
<Shift-Key-Tab
> "focus $w.postActions.checkout;break"
1789 bind $w.name.t
<Key-Tab
> "focus $w.from.exp.t;break"
1790 bind $w.name.t
<Key-Return
> "do_create_branch_action $w;break"
1791 bind $w.name.t
<Key
> {
1792 if {{%K
} ne
{BackSpace
}
1795 && {%K
} ne
{Return
}} {
1797 if {[string first
%A
{~^
:?
*[}] >= 0} break
1800 pack
$w.name.l
-side left
-padx 5
1801 pack
$w.name.t
-side left
-fill x
-expand 1
1802 pack
$w.name
-anchor nw
-fill x
-pady 5 -padx 5
1804 set all_trackings
[list
]
1805 foreach b
[array names tracking_branches
] {
1806 regsub ^refs
/(heads|remotes
)/ $b {} b
1807 lappend all_trackings
$b
1809 set all_trackings
[lsort
-unique $all_trackings]
1810 if {$all_trackings ne
{}} {
1811 set create_branch_trackinghead
[lindex
$all_trackings 0]
1814 labelframe
$w.from \
1815 -text {Starting Revision
} \
1818 radiobutton
$w.from.
head.r \
1819 -text {Local Branch
:} \
1821 -variable create_branch_revtype \
1823 eval tk_optionMenu
$w.from.
head.m create_branch_head
$all_heads
1824 pack
$w.from.
head.r
-side left
1825 pack
$w.from.
head.m
-side left
1826 frame
$w.from.tracking
1827 radiobutton
$w.from.tracking.r \
1828 -text {Tracking Branch
:} \
1830 -variable create_branch_revtype \
1832 eval tk_optionMenu
$w.from.tracking.m \
1833 create_branch_trackinghead \
1835 pack
$w.from.tracking.r
-side left
1836 pack
$w.from.tracking.m
-side left
1838 radiobutton
$w.from.exp.r \
1839 -text {Revision Expression
:} \
1841 -variable create_branch_revtype \
1843 text
$w.from.exp.t \
1849 bind $w.from.exp.t
<Shift-Key-Tab
> "focus $w.name.t;break"
1850 bind $w.from.exp.t
<Key-Tab
> "focus $w.postActions.checkout;break"
1851 bind $w.from.exp.t
<Key-Return
> "do_create_branch_action $w;break"
1852 pack
$w.from.exp.r
-side left
1853 pack
$w.from.exp.t
-side left
-fill x
-expand 1
1854 pack
$w.from.
head -padx 5 -fill x
-expand 1
1855 pack
$w.from.tracking
-padx 5 -fill x
-expand 1
1856 pack
$w.from.exp
-padx 5 -fill x
-expand 1
1857 pack
$w.from
-anchor nw
-fill x
-pady 5 -padx 5
1859 labelframe
$w.postActions \
1860 -text {Post Creation Actions
} \
1862 checkbutton
$w.postActions.checkout \
1863 -text {Checkout after creation
} \
1864 -variable create_branch_checkout \
1866 pack
$w.postActions.checkout
-anchor nw
1867 pack
$w.postActions
-anchor nw
-fill x
-pady 5 -padx 5
1869 bind $w <Visibility
> "grab $w; focus $w.name.t"
1870 bind $w <Key-Escape
> "destroy $w"
1871 bind $w <Key-Return
> "do_create_branch_action $w;break"
1872 wm title
$w "[appname] ([reponame]): Create Branch"
1876 proc do_delete_branch_action
{w
} {
1878 global delete_branch_checkhead delete_branch_head
1880 set to_delete
[list
]
1881 set not_merged
[list
]
1882 foreach i
[$w.list.l curselection
] {
1883 set b
[$w.list.l get
$i]
1884 if {[catch
{set o
[exec git rev-parse
--verify $b]}]} continue
1885 if {$delete_branch_checkhead} {
1886 if {$b eq
$delete_branch_head} continue
1887 if {[catch
{set m
[exec git merge-base
$o $delete_branch_head]}]} continue
1889 lappend not_merged
$b
1893 lappend to_delete
[list
$b $o]
1895 if {$not_merged ne
{}} {
1896 set msg
"The following branches are not completely merged into $delete_branch_head:
1898 - [join $not_merged "\n - "]"
1902 -title [wm title
$w] \
1906 if {$to_delete eq
{}} return
1907 if {!$delete_branch_checkhead} {
1908 set msg
{Recovering deleted branches is difficult.
1910 Delete the selected branches?
}
1911 if {[tk_messageBox \
1914 -title [wm title
$w] \
1916 -message $msg] ne
yes} {
1922 foreach i
$to_delete {
1925 if {[catch
{exec git update-ref
-d "refs/heads/$b" $o} err
]} {
1926 append failed
" - $b: $err\n"
1928 set x
[lsearch
-sorted $all_heads $b]
1930 set all_heads
[lreplace
$all_heads $x $x]
1935 if {$failed ne
{}} {
1939 -title [wm title
$w] \
1941 -message "Failed to delete branches:\n$failed"
1944 set all_heads
[lsort
$all_heads]
1945 populate_branch_menu
1949 proc do_delete_branch
{} {
1950 global all_heads tracking_branches current_branch
1951 global delete_branch_checkhead delete_branch_head
1953 set delete_branch_checkhead
1
1954 set delete_branch_head
$current_branch
1956 set w .branch_editor
1958 wm geometry
$w "+[winfo rootx .]+[winfo rooty .]"
1960 label
$w.header
-text {Delete Local Branch
} \
1962 pack
$w.header
-side top
-fill x
1965 button
$w.buttons.create
-text Delete \
1967 -command [list do_delete_branch_action
$w]
1968 pack
$w.buttons.create
-side right
1969 button
$w.buttons.cancel
-text {Cancel
} \
1971 -command [list destroy
$w]
1972 pack
$w.buttons.cancel
-side right
-padx 5
1973 pack
$w.buttons
-side bottom
-fill x
-pady 10 -padx 10
1975 labelframe
$w.list \
1976 -text {Local Branches
} \
1981 -selectmode extended \
1983 foreach h
$all_heads {
1984 if {$h ne
$current_branch} {
1985 $w.list.l insert end
$h
1988 pack
$w.list.l
-fill both
-pady 5 -padx 5
1989 pack
$w.list
-fill both
-pady 5 -padx 5
1991 set all_trackings
[list
]
1992 foreach b
[array names tracking_branches
] {
1993 regsub ^refs
/(heads|remotes
)/ $b {} b
1994 lappend all_trackings
$b
1997 labelframe
$w.validate \
1998 -text {Only Delete If
} \
2000 frame
$w.validate.
head
2001 checkbutton
$w.validate.
head.r \
2002 -text {Already Merged Into
:} \
2003 -variable delete_branch_checkhead \
2005 eval tk_optionMenu
$w.validate.
head.m delete_branch_head \
2007 [lsort
-unique $all_trackings]
2008 pack
$w.validate.
head.r
-side left
2009 pack
$w.validate.
head.m
-side left
2010 pack
$w.validate.
head -padx 5 -fill x
-expand 1
2011 pack
$w.validate
-anchor nw
-fill x
-pady 5 -padx 5
2013 bind $w <Visibility
> "grab $w; focus $w"
2014 bind $w <Key-Escape
> "destroy $w"
2015 wm title
$w "[appname] ([reponame]): Delete Branch"
2019 proc switch_branch
{b
} {
2020 global HEAD commit_type file_states current_branch
2021 global selected_commit_type ui_comm
2023 if {![lock_index switch
]} return
2025 # -- Backup the selected branch (repository_state resets it)
2027 set new_branch
$current_branch
2029 # -- Our in memory state should match the repository.
2031 repository_state curType curHEAD curMERGE_HEAD
2032 if {[string match amend
* $commit_type]
2033 && $curType eq
{normal
}
2034 && $curHEAD eq
$HEAD} {
2035 } elseif
{$commit_type ne
$curType ||
$HEAD ne
$curHEAD} {
2036 info_popup
{Last scanned state does not match repository state.
2038 Another Git program has modified this repository
2039 since the last scan. A rescan must be performed
2040 before the current branch can be changed.
2042 The rescan will be automatically started now.
2045 rescan
{set ui_status_value
{Ready.
}}
2049 # -- Toss the message buffer if we are in amend mode.
2051 if {[string match amend
* $curType]} {
2052 $ui_comm delete
0.0 end
2054 $ui_comm edit modified false
2057 set selected_commit_type new
2058 set current_branch
$new_branch
2061 error
"NOT FINISHED"
2064 ######################################################################
2066 ## remote management
2068 proc load_all_remotes
{} {
2070 global all_remotes tracking_branches
2072 set all_remotes
[list
]
2073 array
unset tracking_branches
2075 set rm_dir
[gitdir remotes
]
2076 if {[file isdirectory
$rm_dir]} {
2077 set all_remotes
[glob \
2081 -directory $rm_dir *]
2083 foreach name
$all_remotes {
2085 set fd
[open
[file join $rm_dir $name] r
]
2086 while {[gets
$fd line
] >= 0} {
2087 if {![regexp
{^Pull
:[ ]*([^
:]+):(.
+)$
} \
2088 $line line src dst
]} continue
2089 if {![regexp ^refs
/ $dst]} {
2090 set dst
"refs/heads/$dst"
2092 set tracking_branches
($dst) [list
$name $src]
2099 foreach line
[array names repo_config remote.
*.url
] {
2100 if {![regexp ^remote\.
(.
*)\.url\$
$line line name
]} continue
2101 lappend all_remotes
$name
2103 if {[catch
{set fl
$repo_config(remote.
$name.fetch
)}]} {
2107 if {![regexp
{^
([^
:]+):(.
+)$
} $line line src dst
]} continue
2108 if {![regexp ^refs
/ $dst]} {
2109 set dst
"refs/heads/$dst"
2111 set tracking_branches
($dst) [list
$name $src]
2115 set all_remotes
[lsort
-unique $all_remotes]
2118 proc populate_fetch_menu
{m
} {
2119 global all_remotes repo_config
2121 foreach r
$all_remotes {
2123 if {![catch
{set a
$repo_config(remote.
$r.url
)}]} {
2124 if {![catch
{set a
$repo_config(remote.
$r.fetch
)}]} {
2129 set fd
[open
[gitdir remotes
$r] r
]
2130 while {[gets
$fd n
] >= 0} {
2131 if {[regexp
{^Pull
:[ \t]*([^
:]+):} $n]} {
2142 -label "Fetch from $r..." \
2143 -command [list fetch_from
$r] \
2149 proc populate_push_menu
{m
} {
2150 global all_remotes repo_config
2152 foreach r
$all_remotes {
2154 if {![catch
{set a
$repo_config(remote.
$r.url
)}]} {
2155 if {![catch
{set a
$repo_config(remote.
$r.push
)}]} {
2160 set fd
[open
[gitdir remotes
$r] r
]
2161 while {[gets
$fd n
] >= 0} {
2162 if {[regexp
{^Push
:[ \t]*([^
:]+):} $n]} {
2173 -label "Push to $r..." \
2174 -command [list push_to
$r] \
2180 proc populate_pull_menu
{m
} {
2181 global repo_config all_remotes disable_on_lock
2183 foreach remote
$all_remotes {
2185 if {[array get repo_config remote.
$remote.url
] ne
{}} {
2186 if {[array get repo_config remote.
$remote.fetch
] ne
{}} {
2187 foreach line
$repo_config(remote.
$remote.fetch
) {
2188 if {[regexp
{^
([^
:]+):} $line line rb
]} {
2195 set fd
[open
[gitdir remotes
$remote] r
]
2196 while {[gets
$fd line
] >= 0} {
2197 if {[regexp
{^Pull
:[ \t]*([^
:]+):} $line line rb
]} {
2205 foreach rb
$rb_list {
2206 regsub ^refs
/heads
/ $rb {} rb_short
2208 -label "Branch $rb_short from $remote..." \
2209 -command [list pull_remote
$remote $rb] \
2211 lappend disable_on_lock \
2212 [list
$m entryconf
[$m index last
] -state]
2217 ######################################################################
2222 #define mask_width 14
2223 #define mask_height 15
2224 static unsigned char mask_bits
[] = {
2225 0xfe, 0x1f, 0xfe, 0x1f, 0xfe, 0x1f, 0xfe, 0x1f, 0xfe, 0x1f, 0xfe, 0x1f,
2226 0xfe, 0x1f, 0xfe, 0x1f, 0xfe, 0x1f, 0xfe, 0x1f, 0xfe, 0x1f, 0xfe, 0x1f,
2227 0xfe, 0x1f, 0xfe, 0x1f, 0xfe, 0x1f};
2230 image create bitmap file_plain
-background white
-foreground black
-data {
2231 #define plain_width 14
2232 #define plain_height 15
2233 static unsigned char plain_bits
[] = {
2234 0xfe, 0x01, 0x02, 0x03, 0x02, 0x05, 0x02, 0x09, 0x02, 0x1f, 0x02, 0x10,
2235 0x02, 0x10, 0x02, 0x10, 0x02, 0x10, 0x02, 0x10, 0x02, 0x10, 0x02, 0x10,
2236 0x02, 0x10, 0x02, 0x10, 0xfe, 0x1f};
2237 } -maskdata $filemask
2239 image create bitmap file_mod
-background white
-foreground blue
-data {
2240 #define mod_width 14
2241 #define mod_height 15
2242 static unsigned char mod_bits
[] = {
2243 0xfe, 0x01, 0x02, 0x03, 0x7a, 0x05, 0x02, 0x09, 0x7a, 0x1f, 0x02, 0x10,
2244 0xfa, 0x17, 0x02, 0x10, 0xfa, 0x17, 0x02, 0x10, 0xfa, 0x17, 0x02, 0x10,
2245 0xfa, 0x17, 0x02, 0x10, 0xfe, 0x1f};
2246 } -maskdata $filemask
2248 image create bitmap file_fulltick
-background white
-foreground "#007000" -data {
2249 #define file_fulltick_width 14
2250 #define file_fulltick_height 15
2251 static unsigned char file_fulltick_bits
[] = {
2252 0xfe, 0x01, 0x02, 0x1a, 0x02, 0x0c, 0x02, 0x0c, 0x02, 0x16, 0x02, 0x16,
2253 0x02, 0x13, 0x00, 0x13, 0x86, 0x11, 0x8c, 0x11, 0xd8, 0x10, 0xf2, 0x10,
2254 0x62, 0x10, 0x02, 0x10, 0xfe, 0x1f};
2255 } -maskdata $filemask
2257 image create bitmap file_parttick
-background white
-foreground "#005050" -data {
2258 #define parttick_width 14
2259 #define parttick_height 15
2260 static unsigned char parttick_bits
[] = {
2261 0xfe, 0x01, 0x02, 0x03, 0x7a, 0x05, 0x02, 0x09, 0x7a, 0x1f, 0x02, 0x10,
2262 0x7a, 0x14, 0x02, 0x16, 0x02, 0x13, 0x8a, 0x11, 0xda, 0x10, 0x72, 0x10,
2263 0x22, 0x10, 0x02, 0x10, 0xfe, 0x1f};
2264 } -maskdata $filemask
2266 image create bitmap file_question
-background white
-foreground black
-data {
2267 #define file_question_width 14
2268 #define file_question_height 15
2269 static unsigned char file_question_bits
[] = {
2270 0xfe, 0x01, 0x02, 0x02, 0xe2, 0x04, 0xf2, 0x09, 0x1a, 0x1b, 0x0a, 0x13,
2271 0x82, 0x11, 0xc2, 0x10, 0x62, 0x10, 0x62, 0x10, 0x02, 0x10, 0x62, 0x10,
2272 0x62, 0x10, 0x02, 0x10, 0xfe, 0x1f};
2273 } -maskdata $filemask
2275 image create bitmap file_removed
-background white
-foreground red
-data {
2276 #define file_removed_width 14
2277 #define file_removed_height 15
2278 static unsigned char file_removed_bits
[] = {
2279 0xfe, 0x01, 0x02, 0x03, 0x02, 0x05, 0x02, 0x09, 0x02, 0x1f, 0x02, 0x10,
2280 0x1a, 0x16, 0x32, 0x13, 0xe2, 0x11, 0xc2, 0x10, 0xe2, 0x11, 0x32, 0x13,
2281 0x1a, 0x16, 0x02, 0x10, 0xfe, 0x1f};
2282 } -maskdata $filemask
2284 image create bitmap file_merge
-background white
-foreground blue
-data {
2285 #define file_merge_width 14
2286 #define file_merge_height 15
2287 static unsigned char file_merge_bits
[] = {
2288 0xfe, 0x01, 0x02, 0x03, 0x62, 0x05, 0x62, 0x09, 0x62, 0x1f, 0x62, 0x10,
2289 0xfa, 0x11, 0xf2, 0x10, 0x62, 0x10, 0x02, 0x10, 0xfa, 0x17, 0x02, 0x10,
2290 0xfa, 0x17, 0x02, 0x10, 0xfe, 0x1f};
2291 } -maskdata $filemask
2293 set ui_index .vpane.files.index.list
2294 set ui_workdir .vpane.files.workdir.list
2296 set all_icons
(_
$ui_index) file_plain
2297 set all_icons
(A
$ui_index) file_fulltick
2298 set all_icons
(M
$ui_index) file_fulltick
2299 set all_icons
(D
$ui_index) file_removed
2300 set all_icons
(U
$ui_index) file_merge
2302 set all_icons
(_
$ui_workdir) file_plain
2303 set all_icons
(M
$ui_workdir) file_mod
2304 set all_icons
(D
$ui_workdir) file_question
2305 set all_icons
(U
$ui_workdir) file_merge
2306 set all_icons
(O
$ui_workdir) file_plain
2308 set max_status_desc
0
2312 {_M
"Modified, not staged"}
2313 {M_
"Staged for commit"}
2314 {MM
"Portions staged for commit"}
2315 {MD
"Staged for commit, missing"}
2317 {_O
"Untracked, not staged"}
2318 {A_
"Staged for commit"}
2319 {AM
"Portions staged for commit"}
2320 {AD
"Staged for commit, missing"}
2323 {D_
"Staged for removal"}
2324 {DO
"Staged for removal, still present"}
2326 {U_
"Requires merge resolution"}
2327 {UU
"Requires merge resolution"}
2328 {UM
"Requires merge resolution"}
2329 {UD
"Requires merge resolution"}
2331 if {$max_status_desc < [string length
[lindex
$i 1]]} {
2332 set max_status_desc
[string length
[lindex
$i 1]]
2334 set all_descs
([lindex
$i 0]) [lindex
$i 1]
2338 ######################################################################
2343 global tcl_platform tk_library
2344 if {[tk windowingsystem
] eq
{aqua
}} {
2350 proc is_Windows
{} {
2352 if {$tcl_platform(platform
) eq
{windows
}} {
2358 proc bind_button3
{w cmd
} {
2359 bind $w <Any-Button-3
> $cmd
2361 bind $w <Control-Button-1
> $cmd
2365 proc incr_font_size
{font
{amt
1}} {
2366 set sz
[font configure
$font -size]
2368 font configure
$font -size $sz
2369 font configure
${font}bold
-size $sz
2372 proc hook_failed_popup
{hook msg
} {
2377 label
$w.m.l1
-text "$hook hook failed:" \
2382 -background white
-borderwidth 1 \
2384 -width 80 -height 10 \
2386 -yscrollcommand [list
$w.m.sby
set]
2388 -text {You must correct the above errors before committing.
} \
2392 scrollbar
$w.m.sby
-command [list
$w.m.t yview
]
2393 pack
$w.m.l1
-side top
-fill x
2394 pack
$w.m.l2
-side bottom
-fill x
2395 pack
$w.m.sby
-side right
-fill y
2396 pack
$w.m.t
-side left
-fill both
-expand 1
2397 pack
$w.m
-side top
-fill both
-expand 1 -padx 5 -pady 10
2399 $w.m.t insert
1.0 $msg
2400 $w.m.t conf
-state disabled
2402 button
$w.ok
-text OK \
2405 -command "destroy $w"
2406 pack
$w.ok
-side bottom
-anchor e
-pady 10 -padx 10
2408 bind $w <Visibility
> "grab $w; focus $w"
2409 bind $w <Key-Return
> "destroy $w"
2410 wm title
$w "[appname] ([reponame]): error"
2414 set next_console_id
0
2416 proc new_console
{short_title long_title
} {
2417 global next_console_id console_data
2418 set w .console
[incr next_console_id
]
2419 set console_data
($w) [list
$short_title $long_title]
2420 return [console_init
$w]
2423 proc console_init
{w
} {
2424 global console_cr console_data M1B
2426 set console_cr
($w) 1.0
2429 label
$w.m.l1
-text "[lindex $console_data($w) 1]:" \
2434 -background white
-borderwidth 1 \
2436 -width 80 -height 10 \
2439 -yscrollcommand [list
$w.m.sby
set]
2440 label
$w.m.s
-text {Working... please
wait...
} \
2444 scrollbar
$w.m.sby
-command [list
$w.m.t yview
]
2445 pack
$w.m.l1
-side top
-fill x
2446 pack
$w.m.s
-side bottom
-fill x
2447 pack
$w.m.sby
-side right
-fill y
2448 pack
$w.m.t
-side left
-fill both
-expand 1
2449 pack
$w.m
-side top
-fill both
-expand 1 -padx 5 -pady 10
2451 menu
$w.ctxm
-tearoff 0
2452 $w.ctxm add
command -label "Copy" \
2454 -command "tk_textCopy $w.m.t"
2455 $w.ctxm add
command -label "Select All" \
2457 -command "$w.m.t tag add sel 0.0 end"
2458 $w.ctxm add
command -label "Copy All" \
2461 $w.m.t tag add sel 0.0 end
2463 $w.m.t tag remove sel 0.0 end
2466 button
$w.ok
-text {Close
} \
2469 -command "destroy $w"
2470 pack
$w.ok
-side bottom
-anchor e
-pady 10 -padx 10
2472 bind_button3
$w.m.t
"tk_popup $w.ctxm %X %Y"
2473 bind $w.m.t
<$M1B-Key-a> "$w.m.t tag add sel 0.0 end;break"
2474 bind $w.m.t
<$M1B-Key-A> "$w.m.t tag add sel 0.0 end;break"
2475 bind $w <Visibility
> "focus $w"
2476 wm title
$w "[appname] ([reponame]): [lindex $console_data($w) 0]"
2480 proc console_exec
{w cmd
{after
{}}} {
2481 # -- Windows tosses the enviroment when we exec our child.
2482 # But most users need that so we have to relogin. :-(
2485 set cmd
[list sh
--login -c "cd \"[pwd]\" && [join $cmd { }]"]
2488 # -- Tcl won't let us redirect both stdout and stderr to
2489 # the same pipe. So pass it through cat...
2491 set cmd
[concat |
$cmd |
& cat]
2493 set fd_f
[open
$cmd r
]
2494 fconfigure
$fd_f -blocking 0 -translation binary
2495 fileevent
$fd_f readable
[list console_read
$w $fd_f $after]
2498 proc console_read
{w fd after
} {
2499 global console_cr console_data
2503 if {![winfo exists
$w]} {console_init
$w}
2504 $w.m.t conf
-state normal
2506 set n
[string length
$buf]
2508 set cr
[string first
"\r" $buf $c]
2509 set lf
[string first
"\n" $buf $c]
2510 if {$cr < 0} {set cr
[expr {$n + 1}]}
2511 if {$lf < 0} {set lf
[expr {$n + 1}]}
2514 $w.m.t insert end
[string range
$buf $c $lf]
2515 set console_cr
($w) [$w.m.t index
{end
-1c}]
2519 $w.m.t delete
$console_cr($w) end
2520 $w.m.t insert end
"\n"
2521 $w.m.t insert end
[string range
$buf $c $cr]
2526 $w.m.t conf
-state disabled
2530 fconfigure
$fd -blocking 1
2532 if {[catch
{close
$fd}]} {
2533 if {![winfo exists
$w]} {console_init
$w}
2534 $w.m.s conf
-background red
-text {Error
: Command Failed
}
2535 $w.ok conf
-state normal
2537 } elseif
{[winfo exists
$w]} {
2538 $w.m.s conf
-background green
-text {Success
}
2539 $w.ok conf
-state normal
2542 array
unset console_cr
$w
2543 array
unset console_data
$w
2545 uplevel
#0 $after $ok
2549 fconfigure
$fd -blocking 0
2552 ######################################################################
2556 set starting_gitk_msg
{Starting gitk... please
wait...
}
2558 proc do_gitk
{revs
} {
2559 global ui_status_value starting_gitk_msg
2567 set cmd
"sh -c \"exec $cmd\""
2571 if {[catch
{eval exec $cmd} err
]} {
2572 error_popup
"Failed to start gitk:\n\n$err"
2574 set ui_status_value
$starting_gitk_msg
2576 if {$ui_status_value eq
$starting_gitk_msg} {
2577 set ui_status_value
{Ready.
}
2584 set w
[new_console
{gc
} {Compressing the object database
}]
2585 console_exec
$w {git gc
}
2588 proc do_fsck_objects
{} {
2589 set w
[new_console
{fsck-objects
} \
2590 {Verifying the object database with fsck-objects
}]
2591 set cmd
[list git fsck-objects
]
2594 lappend cmd
--strict
2595 console_exec
$w $cmd
2601 global ui_comm is_quitting repo_config commit_type
2603 if {$is_quitting} return
2606 # -- Stash our current commit buffer.
2608 set save
[gitdir GITGUI_MSG
]
2609 set msg
[string trim
[$ui_comm get
0.0 end
]]
2610 if {![string match amend
* $commit_type]
2611 && [$ui_comm edit modified
]
2614 set fd
[open
$save w
]
2615 puts
$fd [string trim
[$ui_comm get
0.0 end
]]
2619 catch
{file delete
$save}
2622 # -- Stash our current window geometry into this repository.
2624 set cfg_geometry
[list
]
2625 lappend cfg_geometry
[wm geometry .
]
2626 lappend cfg_geometry
[lindex
[.vpane sash coord
0] 1]
2627 lappend cfg_geometry
[lindex
[.vpane.files sash coord
0] 0]
2628 if {[catch
{set rc_geometry
$repo_config(gui.geometry
)}]} {
2631 if {$cfg_geometry ne
$rc_geometry} {
2632 catch
{exec git repo-config gui.geometry
$cfg_geometry}
2639 rescan
{set ui_status_value
{Ready.
}}
2642 proc unstage_helper
{txt paths
} {
2643 global file_states current_diff_path
2645 if {![lock_index begin-update
]} return
2649 foreach path
$paths {
2650 switch
-glob -- [lindex
$file_states($path) 0] {
2654 lappend pathList
$path
2655 if {$path eq
$current_diff_path} {
2656 set after
{reshow_diff
;}
2661 if {$pathList eq
{}} {
2667 [concat
$after {set ui_status_value
{Ready.
}}]
2671 proc do_unstage_selection
{} {
2672 global current_diff_path selected_paths
2674 if {[array size selected_paths
] > 0} {
2676 {Unstaging selected files from commit
} \
2677 [array names selected_paths
]
2678 } elseif
{$current_diff_path ne
{}} {
2680 "Unstaging [short_path $current_diff_path] from commit" \
2681 [list
$current_diff_path]
2685 proc add_helper
{txt paths
} {
2686 global file_states current_diff_path
2688 if {![lock_index begin-update
]} return
2692 foreach path
$paths {
2693 switch
-glob -- [lindex
$file_states($path) 0] {
2698 lappend pathList
$path
2699 if {$path eq
$current_diff_path} {
2700 set after
{reshow_diff
;}
2705 if {$pathList eq
{}} {
2711 [concat
$after {set ui_status_value
{Ready to commit.
}}]
2715 proc do_add_selection
{} {
2716 global current_diff_path selected_paths
2718 if {[array size selected_paths
] > 0} {
2720 {Adding selected files
} \
2721 [array names selected_paths
]
2722 } elseif
{$current_diff_path ne
{}} {
2724 "Adding [short_path $current_diff_path]" \
2725 [list
$current_diff_path]
2729 proc do_add_all
{} {
2733 foreach path
[array names file_states
] {
2734 switch
-glob -- [lindex
$file_states($path) 0] {
2737 ?D
{lappend paths
$path}
2740 add_helper
{Adding all changed files
} $paths
2743 proc revert_helper
{txt paths
} {
2744 global file_states current_diff_path
2746 if {![lock_index begin-update
]} return
2750 foreach path
$paths {
2751 switch
-glob -- [lindex
$file_states($path) 0] {
2755 lappend pathList
$path
2756 if {$path eq
$current_diff_path} {
2757 set after
{reshow_diff
;}
2763 set n
[llength
$pathList]
2767 } elseif
{$n == 1} {
2768 set s
"[short_path [lindex $pathList]]"
2770 set s
"these $n files"
2773 set reply
[tk_dialog \
2775 "[appname] ([reponame])" \
2776 "Revert changes in $s?
2778 Any unadded changes will be permanently lost by the revert." \
2788 [concat
$after {set ui_status_value
{Ready.
}}]
2794 proc do_revert_selection
{} {
2795 global current_diff_path selected_paths
2797 if {[array size selected_paths
] > 0} {
2799 {Reverting selected files
} \
2800 [array names selected_paths
]
2801 } elseif
{$current_diff_path ne
{}} {
2803 "Reverting [short_path $current_diff_path]" \
2804 [list
$current_diff_path]
2808 proc do_signoff
{} {
2811 set me
[committer_ident
]
2812 if {$me eq
{}} return
2814 set sob
"Signed-off-by: $me"
2815 set last
[$ui_comm get
{end
-1c linestart
} {end
-1c}]
2816 if {$last ne
$sob} {
2817 $ui_comm edit separator
2819 && ![regexp
{^
[A-Z
][A-Za-z
]*-[A-Za-z-
]+: *} $last]} {
2820 $ui_comm insert end
"\n"
2822 $ui_comm insert end
"\n$sob"
2823 $ui_comm edit separator
2828 proc do_select_commit_type
{} {
2829 global commit_type selected_commit_type
2831 if {$selected_commit_type eq
{new
}
2832 && [string match amend
* $commit_type]} {
2834 } elseif
{$selected_commit_type eq
{amend
}
2835 && ![string match amend
* $commit_type]} {
2838 # The amend request was rejected...
2840 if {![string match amend
* $commit_type]} {
2841 set selected_commit_type new
2851 global appvers copyright
2852 global tcl_patchLevel tk_patchLevel
2856 wm geometry
$w "+[winfo rootx .]+[winfo rooty .]"
2858 label
$w.header
-text "About [appname]" \
2860 pack
$w.header
-side top
-fill x
2863 button
$w.buttons.close
-text {Close
} \
2865 -command [list destroy
$w]
2866 pack
$w.buttons.close
-side right
2867 pack
$w.buttons
-side bottom
-fill x
-pady 10 -padx 10
2870 -text "[appname] - a commit creation tool for Git.
2878 pack
$w.desc
-side top
-fill x
-padx 5 -pady 5
2881 append v
"[appname] version $appvers\n"
2882 append v
"[exec git version]\n"
2884 if {$tcl_patchLevel eq
$tk_patchLevel} {
2885 append v
"Tcl/Tk version $tcl_patchLevel"
2887 append v
"Tcl version $tcl_patchLevel"
2888 append v
", Tk version $tk_patchLevel"
2899 pack
$w.vers
-side top
-fill x
-padx 5 -pady 5
2901 menu
$w.ctxm
-tearoff 0
2902 $w.ctxm add
command \
2907 clipboard append -format STRING -type STRING -- \[$w.vers cget -text\]
2910 bind $w <Visibility
> "grab $w; focus $w"
2911 bind $w <Key-Escape
> "destroy $w"
2912 bind_button3
$w.vers
"tk_popup $w.ctxm %X %Y; grab $w; focus $w"
2913 wm title
$w "About [appname]"
2917 proc do_options
{} {
2918 global repo_config global_config font_descs
2919 global repo_config_new global_config_new
2921 array
unset repo_config_new
2922 array
unset global_config_new
2923 foreach name
[array names repo_config
] {
2924 set repo_config_new
($name) $repo_config($name)
2927 foreach name
[array names repo_config
] {
2929 gui.diffcontext
{continue}
2931 set repo_config_new
($name) $repo_config($name)
2933 foreach name
[array names global_config
] {
2934 set global_config_new
($name) $global_config($name)
2937 set w .options_editor
2939 wm geometry
$w "+[winfo rootx .]+[winfo rooty .]"
2941 label
$w.header
-text "[appname] Options" \
2943 pack
$w.header
-side top
-fill x
2946 button
$w.buttons.restore
-text {Restore Defaults
} \
2948 -command do_restore_defaults
2949 pack
$w.buttons.restore
-side left
2950 button
$w.buttons.save
-text Save \
2952 -command [list do_save_config
$w]
2953 pack
$w.buttons.save
-side right
2954 button
$w.buttons.cancel
-text {Cancel
} \
2956 -command [list destroy
$w]
2957 pack
$w.buttons.cancel
-side right
-padx 5
2958 pack
$w.buttons
-side bottom
-fill x
-pady 10 -padx 10
2960 labelframe
$w.repo
-text "[reponame] Repository" \
2962 -relief raised
-borderwidth 2
2963 labelframe
$w.global
-text {Global
(All Repositories
)} \
2965 -relief raised
-borderwidth 2
2966 pack
$w.repo
-side left
-fill both
-expand 1 -pady 5 -padx 5
2967 pack
$w.global
-side right
-fill both
-expand 1 -pady 5 -padx 5
2970 {b pullsummary
{Show Pull Summary
}}
2971 {b trustmtime
{Trust File Modification Timestamps
}}
2972 {i diffcontext
{Number of Diff Context Lines
}}
2974 set type [lindex
$option 0]
2975 set name
[lindex
$option 1]
2976 set text
[lindex
$option 2]
2977 foreach f
{repo global
} {
2980 checkbutton
$w.
$f.
$name -text $text \
2981 -variable ${f}_config_new
(gui.
$name) \
2985 pack
$w.
$f.
$name -side top
-anchor w
2989 label
$w.
$f.
$name.l
-text "$text:" -font font_ui
2990 pack
$w.
$f.
$name.l
-side left
-anchor w
-fill x
2991 spinbox
$w.
$f.
$name.v \
2992 -textvariable ${f}_config_new
(gui.
$name) \
2993 -from 1 -to 99 -increment 1 \
2996 pack
$w.
$f.
$name.v
-side right
-anchor e
2997 pack
$w.
$f.
$name -side top
-anchor w
-fill x
3003 set all_fonts
[lsort
[font families
]]
3004 foreach option
$font_descs {
3005 set name
[lindex
$option 0]
3006 set font
[lindex
$option 1]
3007 set text
[lindex
$option 2]
3009 set global_config_new
(gui.
$font^^family
) \
3010 [font configure
$font -family]
3011 set global_config_new
(gui.
$font^^size
) \
3012 [font configure
$font -size]
3014 frame
$w.global.
$name
3015 label
$w.global.
$name.l
-text "$text:" -font font_ui
3016 pack
$w.global.
$name.l
-side left
-anchor w
-fill x
3017 eval tk_optionMenu
$w.global.
$name.family \
3018 global_config_new
(gui.
$font^^family
) \
3020 spinbox
$w.global.
$name.size \
3021 -textvariable global_config_new
(gui.
$font^^size
) \
3022 -from 2 -to 80 -increment 1 \
3025 pack
$w.global.
$name.size
-side right
-anchor e
3026 pack
$w.global.
$name.family
-side right
-anchor e
3027 pack
$w.global.
$name -side top
-anchor w
-fill x
3030 bind $w <Visibility
> "grab $w; focus $w"
3031 bind $w <Key-Escape
> "destroy $w"
3032 wm title
$w "[appname] ([reponame]): Options"
3036 proc do_restore_defaults
{} {
3037 global font_descs default_config repo_config
3038 global repo_config_new global_config_new
3040 foreach name
[array names default_config
] {
3041 set repo_config_new
($name) $default_config($name)
3042 set global_config_new
($name) $default_config($name)
3045 foreach option
$font_descs {
3046 set name
[lindex
$option 0]
3047 set repo_config
(gui.
$name) $default_config(gui.
$name)
3051 foreach option
$font_descs {
3052 set name
[lindex
$option 0]
3053 set font
[lindex
$option 1]
3054 set global_config_new
(gui.
$font^^family
) \
3055 [font configure
$font -family]
3056 set global_config_new
(gui.
$font^^size
) \
3057 [font configure
$font -size]
3061 proc do_save_config
{w
} {
3062 if {[catch
{save_config
} err
]} {
3063 error_popup
"Failed to completely save options:\n\n$err"
3069 proc do_windows_shortcut
{} {
3073 set desktop
[exec cygpath \
3081 set fn
[tk_getSaveFile \
3083 -title "[appname] ([reponame]): Create Desktop Icon" \
3084 -initialdir $desktop \
3085 -initialfile "Git [reponame].bat"]
3089 set sh
[exec cygpath \
3093 set me
[exec cygpath \
3097 set gd
[exec cygpath \
3101 set gw
[exec cygpath \
3104 [file dirname [gitdir
]]]
3105 regsub
-all ' $me "'\\''" me
3106 regsub -all ' $gd "'\\''" gd
3107 puts $fd "@ECHO Entering $gw"
3108 puts $fd "@ECHO Starting git-gui... please wait..."
3109 puts -nonewline $fd "@\"$sh\" --login -c \""
3110 puts -nonewline $fd "GIT_DIR='$gd'"
3111 puts -nonewline $fd " '$me'"
3115 error_popup "Cannot write script:\n\n$err"
3120 proc do_macosx_app {} {
3123 set fn [tk_getSaveFile \
3125 -title "[appname] ([reponame]): Create Desktop Icon" \
3126 -initialdir [file join $env(HOME) Desktop] \
3127 -initialfile "Git [reponame].app"]
3130 set Contents [file join $fn Contents]
3131 set MacOS [file join $Contents MacOS]
3132 set exe [file join $MacOS git-gui]
3136 set fd [open [file join $Contents Info.plist] w]
3137 puts $fd {<?xml version="1.0" encoding="UTF-8"?>
3138 <!DOCTYPE plist PUBLIC "-//Apple Computer//DTD PLIST 1.0//EN" "http://www.apple.com/DTDs/PropertyList-1.0.dtd">
3139 <plist version="1.0">
3141 <key>CFBundleDevelopmentRegion</key>
3142 <string>English</string>
3143 <key>CFBundleExecutable</key>
3144 <string>git-gui</string>
3145 <key>CFBundleIdentifier</key>
3146 <string>org.spearce.git-gui</string>
3147 <key>CFBundleInfoDictionaryVersion</key>
3148 <string>6.0</string>
3149 <key>CFBundlePackageType</key>
3150 <string>APPL</string>
3151 <key>CFBundleSignature</key>
3152 <string>????</string>
3153 <key>CFBundleVersion</key>
3154 <string>1.0</string>
3155 <key>NSPrincipalClass</key>
3156 <string>NSApplication</string>
3161 set fd [open $exe w]
3162 set gd [file normalize [gitdir]]
3163 set ep [file normalize [exec git --exec-path]]
3164 regsub -all ' $gd "'\\''" gd
3165 regsub
-all ' $ep "'\\''" ep
3166 puts $fd "#!/bin/sh"
3167 foreach name
[array names env
] {
3168 if {[string match GIT_
* $name]} {
3169 regsub
-all ' $env($name) "'\\''" v
3170 puts $fd "export $name='$v'"
3173 puts $fd "export PATH
='$ep':\
$PATH"
3174 puts $fd "export GIT_DIR
='$gd'"
3175 puts $fd "exec [file normalize
$argv0]"
3178 file attributes $exe -permissions u+x,g+x,o+x
3180 error_popup "Cannot
write icon
:\n\n$err"
3185 proc toggle_or_diff {w x y} {
3186 global file_states file_lists current_diff_path ui_index ui_workdir
3187 global last_clicked selected_paths
3189 set pos [split [$w index @$x,$y] .]
3190 set lno [lindex $pos 0]
3191 set col [lindex $pos 1]
3192 set path [lindex $file_lists($w) [expr {$lno - 1}]]
3198 set last_clicked [list $w $lno]
3199 array unset selected_paths
3200 $ui_index tag remove in_sel 0.0 end
3201 $ui_workdir tag remove in_sel 0.0 end
3204 if {$current_diff_path eq $path} {
3205 set after {reshow_diff;}
3209 if {$w eq $ui_index} {
3211 "Unstaging
[short_path
$path] from commit
" \
3213 [concat $after {set ui_status_value {Ready.}}]
3214 } elseif {$w eq $ui_workdir} {
3216 "Adding
[short_path
$path]" \
3218 [concat $after {set ui_status_value {Ready.}}]
3221 show_diff $path $w $lno
3225 proc add_one_to_selection {w x y} {
3226 global file_lists last_clicked selected_paths
3228 set lno [lindex [split [$w index @$x,$y] .] 0]
3229 set path [lindex $file_lists($w) [expr {$lno - 1}]]
3235 if {$last_clicked ne {}
3236 && [lindex $last_clicked 0] ne $w} {
3237 array unset selected_paths
3238 [lindex $last_clicked 0] tag remove in_sel 0.0 end
3241 set last_clicked [list $w $lno]
3242 if {[catch {set in_sel $selected_paths($path)}]} {
3246 unset selected_paths($path)
3247 $w tag remove in_sel $lno.0 [expr {$lno + 1}].0
3249 set selected_paths($path) 1
3250 $w tag add in_sel $lno.0 [expr {$lno + 1}].0
3254 proc add_range_to_selection {w x y} {
3255 global file_lists last_clicked selected_paths
3257 if {[lindex $last_clicked 0] ne $w} {
3258 toggle_or_diff $w $x $y
3262 set lno [lindex [split [$w index @$x,$y] .] 0]
3263 set lc [lindex $last_clicked 1]
3272 foreach path [lrange $file_lists($w) \
3273 [expr {$begin - 1}] \
3274 [expr {$end - 1}]] {
3275 set selected_paths($path) 1
3277 $w tag add in_sel $begin.0 [expr {$end + 1}].0
3280 ######################################################################
3284 set cursor_ptr arrow
3285 font create font_diff -family Courier -size 10
3289 eval font configure font_ui [font actual [.dummy cget -font]]
3293 font create font_uibold
3294 font create font_diffbold
3299 } elseif {[is_MacOSX]} {
3307 proc apply_config {} {
3308 global repo_config font_descs
3310 foreach option $font_descs {
3311 set name [lindex $option 0]
3312 set font [lindex $option 1]
3314 foreach {cn cv} $repo_config(gui.$name) {
3315 font configure $font $cn $cv
3318 error_popup "Invalid font specified
in gui.
$name:\n\n$err"
3320 foreach {cn cv} [font configure $font] {
3321 font configure ${font}bold $cn $cv
3323 font configure ${font}bold -weight bold
3327 set default_config(gui.trustmtime) false
3328 set default_config(gui.pullsummary) true
3329 set default_config(gui.diffcontext) 5
3330 set default_config(gui.fontui) [font configure font_ui]
3331 set default_config(gui.fontdiff) [font configure font_diff]
3333 {fontui font_ui {Main Font}}
3334 {fontdiff font_diff {Diff/Console Font}}
3339 ######################################################################
3345 menu .mbar -tearoff 0
3346 .mbar add cascade -label Repository -menu .mbar.repository
3347 .mbar add cascade -label Edit -menu .mbar.edit
3348 if {!$single_commit} {
3349 .mbar add cascade -label Branch -menu .mbar.branch
3351 .mbar add cascade -label Commit -menu .mbar.commit
3352 if {!$single_commit} {
3353 .mbar add cascade -label Fetch -menu .mbar.fetch
3354 .mbar add cascade -label Pull -menu .mbar.pull
3355 .mbar add cascade -label Push -menu .mbar.push
3357 . configure -menu .mbar
3359 # -- Repository Menu
3361 menu .mbar.repository
3362 .mbar.repository add command \
3363 -label {Visualize Current Branch} \
3364 -command {do_gitk {}} \
3367 .mbar.repository add command \
3368 -label {Visualize All Branches} \
3369 -command {do_gitk {--all}} \
3372 .mbar.repository add separator
3374 if {!$single_commit} {
3375 .mbar.repository add command -label {Compress Database} \
3379 .mbar.repository add command -label {Verify Database} \
3380 -command do_fsck_objects \
3383 .mbar.repository add separator
3386 .mbar.repository add command \
3387 -label {Create Desktop Icon} \
3388 -command do_windows_shortcut \
3390 } elseif {[is_MacOSX]} {
3391 .mbar.repository add command \
3392 -label {Create Desktop Icon} \
3393 -command do_macosx_app \
3398 .mbar.repository add command -label Quit \
3400 -accelerator $M1T-Q \
3406 .mbar.edit add command -label Undo \
3407 -command {catch {[focus] edit undo}} \
3408 -accelerator $M1T-Z \
3410 .mbar.edit add command -label Redo \
3411 -command {catch {[focus] edit redo}} \
3412 -accelerator $M1T-Y \
3414 .mbar.edit add separator
3415 .mbar.edit add command -label Cut \
3416 -command {catch {tk_textCut [focus]}} \
3417 -accelerator $M1T-X \
3419 .mbar.edit add command -label Copy \
3420 -command {catch {tk_textCopy [focus]}} \
3421 -accelerator $M1T-C \
3423 .mbar.edit add command -label Paste \
3424 -command {catch {tk_textPaste [focus]; [focus] see insert}} \
3425 -accelerator $M1T-V \
3427 .mbar.edit add command -label Delete \
3428 -command {catch {[focus] delete sel.first sel.last}} \
3431 .mbar.edit add separator
3432 .mbar.edit add command -label {Select All} \
3433 -command {catch {[focus] tag add sel 0.0 end}} \
3434 -accelerator $M1T-A \
3439 if {!$single_commit} {
3442 .mbar.branch add command -label {Create...} \
3443 -command do_create_branch \
3444 -accelerator $M1T-N \
3446 lappend disable_on_lock [list .mbar.branch entryconf \
3447 [.mbar.branch index last] -state]
3449 .mbar.branch add command -label {Delete...} \
3450 -command do_delete_branch \
3452 lappend disable_on_lock [list .mbar.branch entryconf \
3453 [.mbar.branch index last] -state]
3460 .mbar.commit add radiobutton \
3461 -label {New Commit} \
3462 -command do_select_commit_type \
3463 -variable selected_commit_type \
3466 lappend disable_on_lock \
3467 [list .mbar.commit entryconf [.mbar.commit index last] -state]
3469 .mbar.commit add radiobutton \
3470 -label {Amend Last Commit} \
3471 -command do_select_commit_type \
3472 -variable selected_commit_type \
3475 lappend disable_on_lock \
3476 [list .mbar.commit entryconf [.mbar.commit index last] -state]
3478 .mbar.commit add separator
3480 .mbar.commit add command -label Rescan \
3481 -command do_rescan \
3484 lappend disable_on_lock \
3485 [list .mbar.commit entryconf [.mbar.commit index last] -state]
3487 .mbar.commit add command -label {Add To Commit} \
3488 -command do_add_selection \
3490 lappend disable_on_lock \
3491 [list .mbar.commit entryconf [.mbar.commit index last] -state]
3493 .mbar.commit add command -label {Add All To Commit} \
3494 -command do_add_all \
3495 -accelerator $M1T-I \
3497 lappend disable_on_lock \
3498 [list .mbar.commit entryconf [.mbar.commit index last] -state]
3500 .mbar.commit add command -label {Unstage From Commit} \
3501 -command do_unstage_selection \
3503 lappend disable_on_lock \
3504 [list .mbar.commit entryconf [.mbar.commit index last] -state]
3506 .mbar.commit add command -label {Revert Changes} \
3507 -command do_revert_selection \
3509 lappend disable_on_lock \
3510 [list .mbar.commit entryconf [.mbar.commit index last] -state]
3512 .mbar.commit add separator
3514 .mbar.commit add command -label {Sign Off} \
3515 -command do_signoff \
3516 -accelerator $M1T-S \
3519 .mbar.commit add command -label Commit \
3520 -command do_commit \
3521 -accelerator $M1T-Return \
3523 lappend disable_on_lock \
3524 [list .mbar.commit entryconf [.mbar.commit index last] -state]
3526 # -- Transport menus
3528 if {!$single_commit} {
3535 # -- Apple Menu (Mac OS X only)
3537 .mbar add cascade -label Apple -menu .mbar.apple
3540 .mbar.apple add command -label "About
[appname
]" \
3543 .mbar.apple add command -label "[appname
] Options...
" \
3544 -command do_options \
3549 .mbar.edit add separator
3550 .mbar.edit add command -label {Options...} \
3551 -command do_options \
3556 if {[file exists /usr/local/miga/lib/gui-miga]
3557 && [file exists .pvcsrc]} {
3559 global ui_status_value
3560 if {![lock_index update]} return
3561 set cmd [list sh --login -c "/usr
/local
/miga
/lib
/gui-miga
\"[pwd]\""]
3562 set miga_fd [open "|
$cmd" r]
3563 fconfigure $miga_fd -blocking 0
3564 fileevent $miga_fd readable [list miga_done $miga_fd]
3565 set ui_status_value {Running miga...}
3567 proc miga_done {fd} {
3572 rescan [list set ui_status_value {Ready.}]
3575 .mbar add cascade -label Tools -menu .mbar.tools
3577 .mbar.tools add command -label "Migrate
" \
3580 lappend disable_on_lock \
3581 [list .mbar.tools entryconf [.mbar.tools index last] -state]
3586 .mbar add cascade -label Help -menu .mbar.help
3589 .mbar.help add command -label "About
[appname
]" \
3601 -text {Current Branch:} \
3606 -textvariable current_branch \
3610 pack .branch.l1 -side left
3611 pack .branch.cb -side left -fill x
3612 pack .branch -side top -fill x
3614 # -- Main Window Layout
3616 panedwindow .vpane -orient vertical
3617 panedwindow .vpane.files -orient horizontal
3618 .vpane add .vpane.files -sticky nsew -height 100 -width 400
3619 pack .vpane -anchor n -side top -fill both -expand 1
3621 # -- Index File List
3623 frame .vpane.files.index -height 100 -width 400
3624 label .vpane.files.index.title -text {Changes To Be Committed} \
3627 text $ui_index -background white -borderwidth 0 \
3628 -width 40 -height 10 \
3630 -cursor $cursor_ptr \
3631 -yscrollcommand {.vpane.files.index.sb set} \
3633 scrollbar .vpane.files.index.sb -command [list $ui_index yview]
3634 pack .vpane.files.index.title -side top -fill x
3635 pack .vpane.files.index.sb -side right -fill y
3636 pack $ui_index -side left -fill both -expand 1
3637 .vpane.files add .vpane.files.index -sticky nsew
3639 # -- Working Directory File List
3641 frame .vpane.files.workdir -height 100 -width 100
3642 label .vpane.files.workdir.title -text {Changed But Not Updated} \
3645 text $ui_workdir -background white -borderwidth 0 \
3646 -width 40 -height 10 \
3648 -cursor $cursor_ptr \
3649 -yscrollcommand {.vpane.files.workdir.sb set} \
3651 scrollbar .vpane.files.workdir.sb -command [list $ui_workdir yview]
3652 pack .vpane.files.workdir.title -side top -fill x
3653 pack .vpane.files.workdir.sb -side right -fill y
3654 pack $ui_workdir -side left -fill both -expand 1
3655 .vpane.files add .vpane.files.workdir -sticky nsew
3657 foreach i [list $ui_index $ui_workdir] {
3658 $i tag conf in_diff -font font_uibold
3659 $i tag conf in_sel \
3660 -background [$i cget -foreground] \
3661 -foreground [$i cget -background]
3665 # -- Diff and Commit Area
3667 frame .vpane.lower -height 300 -width 400
3668 frame .vpane.lower.commarea
3669 frame .vpane.lower.diff -relief sunken -borderwidth 1
3670 pack .vpane.lower.commarea -side top -fill x
3671 pack .vpane.lower.diff -side bottom -fill both -expand 1
3672 .vpane add .vpane.lower -stick nsew
3674 # -- Commit Area Buttons
3676 frame .vpane.lower.commarea.buttons
3677 label .vpane.lower.commarea.buttons.l -text {} \
3681 pack .vpane.lower.commarea.buttons.l -side top -fill x
3682 pack .vpane.lower.commarea.buttons -side left -fill y
3684 button .vpane.lower.commarea.buttons.rescan -text {Rescan} \
3685 -command do_rescan \
3687 pack .vpane.lower.commarea.buttons.rescan -side top -fill x
3688 lappend disable_on_lock \
3689 {.vpane.lower.commarea.buttons.rescan conf -state}
3691 button .vpane.lower.commarea.buttons.incall -text {Add All} \
3692 -command do_add_all \
3694 pack .vpane.lower.commarea.buttons.incall -side top -fill x
3695 lappend disable_on_lock \
3696 {.vpane.lower.commarea.buttons.incall conf -state}
3698 button .vpane.lower.commarea.buttons.signoff -text {Sign Off} \
3699 -command do_signoff \
3701 pack .vpane.lower.commarea.buttons.signoff -side top -fill x
3703 button .vpane.lower.commarea.buttons.commit -text {Commit} \
3704 -command do_commit \
3706 pack .vpane.lower.commarea.buttons.commit -side top -fill x
3707 lappend disable_on_lock \
3708 {.vpane.lower.commarea.buttons.commit conf -state}
3710 # -- Commit Message Buffer
3712 frame .vpane.lower.commarea.buffer
3713 frame .vpane.lower.commarea.buffer.header
3714 set ui_comm .vpane.lower.commarea.buffer.t
3715 set ui_coml .vpane.lower.commarea.buffer.header.l
3716 radiobutton .vpane.lower.commarea.buffer.header.new \
3717 -text {New Commit} \
3718 -command do_select_commit_type \
3719 -variable selected_commit_type \
3722 lappend disable_on_lock \
3723 [list .vpane.lower.commarea.buffer.header.new conf -state]
3724 radiobutton .vpane.lower.commarea.buffer.header.amend \
3725 -text {Amend Last Commit} \
3726 -command do_select_commit_type \
3727 -variable selected_commit_type \
3730 lappend disable_on_lock \
3731 [list .vpane.lower.commarea.buffer.header.amend conf -state]
3736 proc trace_commit_type {varname args} {
3737 global ui_coml commit_type
3738 switch -glob -- $commit_type {
3739 initial {set txt {Initial Commit Message:}}
3740 amend {set txt {Amended Commit Message:}}
3741 amend-initial {set txt {Amended Initial Commit Message:}}
3742 amend-merge {set txt {Amended Merge Commit Message:}}
3743 merge {set txt {Merge Commit Message:}}
3744 * {set txt {Commit Message:}}
3746 $ui_coml conf -text $txt
3748 trace add variable commit_type write trace_commit_type
3749 pack $ui_coml -side left -fill x
3750 pack .vpane.lower.commarea.buffer.header.amend -side right
3751 pack .vpane.lower.commarea.buffer.header.new -side right
3753 text $ui_comm -background white -borderwidth 1 \
3756 -autoseparators true \
3758 -width 75 -height 9 -wrap none \
3760 -yscrollcommand {.vpane.lower.commarea.buffer.sby set}
3761 scrollbar .vpane.lower.commarea.buffer.sby \
3762 -command [list $ui_comm yview]
3763 pack .vpane.lower.commarea.buffer.header -side top -fill x
3764 pack .vpane.lower.commarea.buffer.sby -side right -fill y
3765 pack $ui_comm -side left -fill y
3766 pack .vpane.lower.commarea.buffer -side left -fill y
3768 # -- Commit Message Buffer Context Menu
3770 set ctxm .vpane.lower.commarea.buffer.ctxm
3771 menu $ctxm -tearoff 0
3775 -command {tk_textCut $ui_comm}
3779 -command {tk_textCopy $ui_comm}
3783 -command {tk_textPaste $ui_comm}
3787 -command {$ui_comm delete sel.first sel.last}
3790 -label {Select All} \
3792 -command {$ui_comm tag add sel 0.0 end}
3797 $ui_comm tag add sel 0.0 end
3798 tk_textCopy $ui_comm
3799 $ui_comm tag remove sel 0.0 end
3806 bind_button3 $ui_comm "tk_popup
$ctxm %X
%Y
"
3810 set current_diff_path {}
3811 set diff_actions [list]
3812 proc trace_current_diff_path {varname args} {
3813 global current_diff_path diff_actions file_states
3814 if {$current_diff_path eq {}} {
3820 set p $current_diff_path
3821 set s [mapdesc [lindex $file_states($p) 0] $p]
3823 set p [escape_path $p]
3827 .vpane.lower.diff.header.status configure -text $s
3828 .vpane.lower.diff.header.file configure -text $f
3829 .vpane.lower.diff.header.path configure -text $p
3830 foreach w $diff_actions {
3834 trace add variable current_diff_path write trace_current_diff_path
3836 frame .vpane.lower.diff.header -background orange
3837 label .vpane.lower.diff.header.status \
3838 -background orange \
3839 -width $max_status_desc \
3843 label .vpane.lower.diff.header.file \
3844 -background orange \
3848 label .vpane.lower.diff.header.path \
3849 -background orange \
3853 pack .vpane.lower.diff.header.status -side left
3854 pack .vpane.lower.diff.header.file -side left
3855 pack .vpane.lower.diff.header.path -fill x
3856 set ctxm .vpane.lower.diff.header.ctxm
3857 menu $ctxm -tearoff 0
3866 -- $current_diff_path
3868 lappend diff_actions [list $ctxm entryconf [$ctxm index last] -state]
3869 bind_button3 .vpane.lower.diff.header.path "tk_popup
$ctxm %X
%Y
"
3873 frame .vpane.lower.diff.body
3874 set ui_diff .vpane.lower.diff.body.t
3875 text $ui_diff -background white -borderwidth 0 \
3876 -width 80 -height 15 -wrap none \
3878 -xscrollcommand {.vpane.lower.diff.body.sbx set} \
3879 -yscrollcommand {.vpane.lower.diff.body.sby set} \
3881 scrollbar .vpane.lower.diff.body.sbx -orient horizontal \
3882 -command [list $ui_diff xview]
3883 scrollbar .vpane.lower.diff.body.sby -orient vertical \
3884 -command [list $ui_diff yview]
3885 pack .vpane.lower.diff.body.sbx -side bottom -fill x
3886 pack .vpane.lower.diff.body.sby -side right -fill y
3887 pack $ui_diff -side left -fill both -expand 1
3888 pack .vpane.lower.diff.header -side top -fill x
3889 pack .vpane.lower.diff.body -side bottom -fill both -expand 1
3891 $ui_diff tag conf d_@ -font font_diffbold
3892 $ui_diff tag conf d_+ -foreground blue
3893 $ui_diff tag conf d_- -foreground red
3895 $ui_diff tag conf d_++ -foreground blue
3896 $ui_diff tag conf d_-- -foreground red
3897 $ui_diff tag conf d_+s \
3900 $ui_diff tag conf d_-s \
3903 $ui_diff tag conf d_s+ \
3905 -background {light goldenrod yellow}
3906 $ui_diff tag conf d_s- \
3908 -background {light goldenrod yellow}
3910 $ui_diff tag conf d<<<<<<< \
3911 -foreground orange \
3913 $ui_diff tag conf d======= \
3914 -foreground orange \
3916 $ui_diff tag conf d>>>>>>> \
3917 -foreground orange \
3920 # -- Diff Body Context Menu
3922 set ctxm .vpane.lower.diff.body.ctxm
3923 menu $ctxm -tearoff 0
3927 -command reshow_diff
3931 -command {tk_textCopy $ui_diff}
3932 lappend diff_actions [list $ctxm entryconf [$ctxm index last] -state]
3934 -label {Select All} \
3936 -command {$ui_diff tag add sel 0.0 end}
3937 lappend diff_actions [list $ctxm entryconf [$ctxm index last] -state]
3942 $ui_diff tag add sel 0.0 end
3943 tk_textCopy $ui_diff
3944 $ui_diff tag remove sel 0.0 end
3946 lappend diff_actions [list $ctxm entryconf [$ctxm index last] -state]
3949 -label {Decrease Font Size} \
3951 -command {incr_font_size font_diff -1}
3952 lappend diff_actions [list $ctxm entryconf [$ctxm index last] -state]
3954 -label {Increase Font Size} \
3956 -command {incr_font_size font_diff 1}
3957 lappend diff_actions [list $ctxm entryconf [$ctxm index last] -state]
3960 -label {Show Less Context} \
3962 -command {if {$repo_config(gui.diffcontext) >= 2} {
3963 incr repo_config(gui.diffcontext) -1
3966 lappend diff_actions [list $ctxm entryconf [$ctxm index last] -state]
3968 -label {Show More Context} \
3971 incr repo_config(gui.diffcontext)
3974 lappend diff_actions [list $ctxm entryconf [$ctxm index last] -state]
3976 $ctxm add command -label {Options...} \
3979 bind_button3 $ui_diff "tk_popup
$ctxm %X
%Y
"
3983 set ui_status_value {Initializing...}
3984 label .status -textvariable ui_status_value \
3990 pack .status -anchor w -side bottom -fill x
3995 set gm $repo_config(gui.geometry)
3996 wm geometry . [lindex $gm 0]
3997 .vpane sash place 0 \
3998 [lindex [.vpane sash coord 0] 0] \
4000 .vpane.files sash place 0 \
4002 [lindex [.vpane.files sash coord 0] 1]
4008 bind $ui_comm <$M1B-Key-Return> {do_commit;break}
4009 bind $ui_comm <$M1B-Key-i> {do_add_all;break}
4010 bind $ui_comm <$M1B-Key-I> {do_add_all;break}
4011 bind $ui_comm <$M1B-Key-x> {tk_textCut %W;break}
4012 bind $ui_comm <$M1B-Key-X> {tk_textCut %W;break}
4013 bind $ui_comm <$M1B-Key-c> {tk_textCopy %W;break}
4014 bind $ui_comm <$M1B-Key-C> {tk_textCopy %W;break}
4015 bind $ui_comm <$M1B-Key-v> {tk_textPaste %W; %W see insert; break}
4016 bind $ui_comm <$M1B-Key-V> {tk_textPaste %W; %W see insert; break}
4017 bind $ui_comm <$M1B-Key-a> {%W tag add sel 0.0 end;break}
4018 bind $ui_comm <$M1B-Key-A> {%W tag add sel 0.0 end;break}
4020 bind $ui_diff <$M1B-Key-x> {tk_textCopy %W;break}
4021 bind $ui_diff <$M1B-Key-X> {tk_textCopy %W;break}
4022 bind $ui_diff <$M1B-Key-c> {tk_textCopy %W;break}
4023 bind $ui_diff <$M1B-Key-C> {tk_textCopy %W;break}
4024 bind $ui_diff <$M1B-Key-v> {break}
4025 bind $ui_diff <$M1B-Key-V> {break}
4026 bind $ui_diff <$M1B-Key-a> {%W tag add sel 0.0 end;break}
4027 bind $ui_diff <$M1B-Key-A> {%W tag add sel 0.0 end;break}
4028 bind $ui_diff <Key-Up> {catch {%W yview scroll -1 units};break}
4029 bind $ui_diff <Key-Down> {catch {%W yview scroll 1 units};break}
4030 bind $ui_diff <Key-Left> {catch {%W xview scroll -1 units};break}
4031 bind $ui_diff <Key-Right> {catch {%W xview scroll 1 units};break}
4033 if {!$single_commit} {
4034 bind . <$M1B-Key-n> do_create_branch
4035 bind . <$M1B-Key-N> do_create_branch
4038 bind . <Destroy> do_quit
4039 bind all <Key-F5> do_rescan
4040 bind all <$M1B-Key-r> do_rescan
4041 bind all <$M1B-Key-R> do_rescan
4042 bind . <$M1B-Key-s> do_signoff
4043 bind . <$M1B-Key-S> do_signoff
4044 bind . <$M1B-Key-i> do_add_all
4045 bind . <$M1B-Key-I> do_add_all
4046 bind . <$M1B-Key-Return> do_commit
4047 bind all <$M1B-Key-q> do_quit
4048 bind all <$M1B-Key-Q> do_quit
4049 bind all <$M1B-Key-w> {destroy [winfo toplevel %W]}
4050 bind all <$M1B-Key-W> {destroy [winfo toplevel %W]}
4051 foreach i [list $ui_index $ui_workdir] {
4052 bind $i <Button-1> "toggle_or_diff
$i %x
%y
; break"
4053 bind $i <$M1B-Button-1> "add_one_to_selection
$i %x
%y
; break"
4054 bind $i <Shift-Button-1> "add_range_to_selection
$i %x
%y
; break"
4058 set file_lists($ui_index) [list]
4059 set file_lists($ui_workdir) [list]
4063 set MERGE_HEAD [list]
4066 set current_branch {}
4067 set current_diff_path {}
4068 set selected_commit_type new
4070 wm title . "[appname
] ([file normalize
[file dirname [gitdir
]]])"
4071 focus -force $ui_comm
4073 # -- Warn the user about environmental problems. Cygwin's Tcl
4074 # does *not* pass its env array onto any processes it spawns.
4075 # This means that git processes get none of our environment.
4080 set msg "Possible environment issues exist.
4082 The following environment variables are probably
4083 going to be ignored by any Git subprocess run
4087 foreach name [array names env] {
4088 switch -regexp -- $name {
4089 {^GIT_INDEX_FILE$} -
4090 {^GIT_OBJECT_DIRECTORY$} -
4091 {^GIT_ALTERNATE_OBJECT_DIRECTORIES$} -
4093 {^GIT_EXTERNAL_DIFF$} -
4097 {^GIT_CONFIG_LOCAL$} -
4098 {^GIT_(AUTHOR|COMMITTER)_DATE$} {
4099 append msg " - $name\n"
4102 {^GIT_(AUTHOR|COMMITTER)_(NAME|EMAIL)$} {
4103 append msg " - $name\n"
4105 set suggest_user $name
4109 if {$ignored_env > 0} {
4111 This is due to a known issue with the
4112 Tcl binary distributed by Cygwin.
"
4114 if {$suggest_user ne {}} {
4117 A good replacement
for $suggest_user
4118 is placing values
for the user.name and
4119 user.email settings into your personal
4125 unset ignored_env msg suggest_user name
4128 # -- Only initialize complex UI if we are going to stay running.
4130 if {!$single_commit} {
4134 populate_branch_menu
4135 populate_fetch_menu .mbar.fetch
4136 populate_pull_menu .mbar.pull
4137 populate_push_menu .mbar.push
4140 # -- Only suggest a gc run if we are going to stay running.
4142 if {!$single_commit} {
4143 set object_limit 2000
4144 if {[is_Windows]} {set object_limit 200}
4145 regexp {^([0-9]+) objects,} [exec git count-objects] _junk objects_current
4146 if {$objects_current >= $object_limit} {
4148 "This repository currently has
$objects_current loose objects.
4150 To maintain optimal performance it is strongly
4151 recommended that you
compress the database
4152 when
more than
$object_limit loose objects exist.
4154 Compress the database now?
"] eq yes} {
4158 unset object_limit _junk objects_current
4161 lock_index begin-read