1 # git-gui misc. commit reading/writing support
2 # Copyright (C) 2006, 2007 Shawn Pearce
4 proc load_last_commit
{} {
5 global HEAD PARENT MERGE_HEAD commit_type ui_comm
8 if {[llength $PARENT] == 0} {
9 error_popup
[mc
"There is nothing to amend.
11 You are about to create the initial commit. There is no commit before this to amend.
16 repository_state curType curHEAD curMERGE_HEAD
17 if {$curType eq
{merge
}} {
18 error_popup
[mc
"Cannot amend while merging.
20 You are currently in the middle of a merge that has not been fully completed. You cannot amend the prior commit unless you first abort the current merge activity.
28 set fd
[git_read cat-file commit
$curHEAD]
29 fconfigure $fd -encoding binary -translation lf
30 if {[catch {set enc
$repo_config(i18n.commitencoding
)}]} {
33 while {[gets $fd line
] > 0} {
34 if {[string match
{parent
*} $line]} {
35 lappend parents
[string range
$line 7 end
]
36 } elseif
{[string match
{encoding *} $line]} {
37 set enc
[string tolower
[string range
$line 9 end
]]
43 set enc
[tcl_encoding
$enc]
45 set msg
[encoding convertfrom
$enc $msg]
47 set msg
[string trim
$msg]
49 error_popup
[strcat
[mc
"Error loading commit data for amend:"] "\n\n$err"]
56 switch -- [llength $parents] {
57 0 {set commit_type amend-initial
}
58 1 {set commit_type amend
}
59 default {set commit_type amend-merge
}
62 $ui_comm delete
0.0 end
63 $ui_comm insert end
$msg
65 $ui_comm edit modified false
69 set GIT_COMMITTER_IDENT
{}
71 proc committer_ident
{} {
72 global GIT_COMMITTER_IDENT
74 if {$GIT_COMMITTER_IDENT eq
{}} {
75 if {[catch {set me
[git var GIT_COMMITTER_IDENT
]} err
]} {
76 error_popup
[strcat
[mc
"Unable to obtain your identity:"] "\n\n$err"]
79 if {![regexp {^
(.
*) [0-9]+ [-+0-9]+$} \
80 $me me GIT_COMMITTER_IDENT
]} {
81 error_popup
[strcat
[mc
"Invalid GIT_COMMITTER_IDENT:"] "\n\n$me"]
86 return $GIT_COMMITTER_IDENT
92 set me
[committer_ident
]
95 set sob
"Signed-off-by: $me"
96 set last
[$ui_comm get
{end
-1c linestart
} {end
-1c}]
98 $ui_comm edit separator
100 && ![regexp {^
[A-Z
][A-Za-z
]*-[A-Za-z-
]+: *} $last]} {
101 $ui_comm insert end
"\n"
103 $ui_comm insert end
"\n$sob"
104 $ui_comm edit separator
109 proc create_new_commit
{} {
110 global commit_type ui_comm
112 set commit_type normal
113 $ui_comm delete
0.0 end
115 $ui_comm edit modified false
119 proc commit_tree
{} {
120 global HEAD commit_type file_states ui_comm repo_config
123 if {[committer_ident
] eq
{}} return
124 if {![lock_index
update]} return
126 # -- Our in memory state should match the repository.
128 repository_state curType curHEAD curMERGE_HEAD
129 if {[string match amend
* $commit_type]
130 && $curType eq
{normal
}
131 && $curHEAD eq
$HEAD} {
132 } elseif
{$commit_type ne
$curType ||
$HEAD ne
$curHEAD} {
133 info_popup
[mc
"Last scanned state does not match repository state.
135 Another Git program has modified this repository since the last scan. A rescan must be performed before another commit can be created.
137 The rescan will be automatically started now.
144 # -- At least one file should differ in the index.
147 foreach path
[array names file_states
] {
148 switch -glob -- [lindex $file_states($path) 0] {
153 M?
{set files_ready
1}
156 error_popup
[mc
"Unmerged files cannot be committed.
158 File %s has merge conflicts. You must resolve them and stage the file before committing.
159 " [short_path
$path]]
164 error_popup
[mc
"Unknown file state %s detected.
166 File %s cannot be committed by this program.
167 " [lindex $s 0] [short_path
$path]]
171 if {!$files_ready && ![string match
*merge
$curType]} {
172 info_popup
[mc
"No changes to commit.
174 You must stage at least 1 file before you can commit.
180 # -- A message is required.
182 set msg
[string trim
[$ui_comm get
1.0 end
]]
183 regsub -all -line {[ \t\r]+$} $msg {} msg
185 error_popup
[mc
"Please supply a commit message.
187 A good commit message has the following format:
189 - First line: Describe in one sentence what you did.
191 - Remaining lines: Describe why this change is good.
197 # -- Build the message file.
199 set msg_p
[gitdir GITGUI_EDITMSG
]
200 set msg_wt
[open $msg_p w
]
201 fconfigure $msg_wt -translation lf
202 if {[catch {set enc
$repo_config(i18n.commitencoding
)}]} {
205 set use_enc
[tcl_encoding
$enc]
206 if {$use_enc ne
{}} {
207 fconfigure $msg_wt -encoding $use_enc
209 puts stderr
[mc
"warning: Tcl does not support encoding '%s'." $enc]
210 fconfigure $msg_wt -encoding utf-8
215 # -- Run the pre-commit hook.
217 set fd_ph
[githook_read pre-commit
]
219 commit_commitmsg
$curHEAD $msg_p
223 ui_status
[mc
"Calling pre-commit hook..."]
225 fconfigure $fd_ph -blocking 0 -translation binary -eofchar {}
226 fileevent $fd_ph readable
\
227 [list commit_prehook_wait
$fd_ph $curHEAD $msg_p]
230 proc commit_prehook_wait
{fd_ph curHEAD msg_p
} {
233 append pch_error
[read $fd_ph]
234 fconfigure $fd_ph -blocking 1
236 if {[catch {close $fd_ph}]} {
237 catch {file delete
$msg_p}
238 ui_status
[mc
"Commit declined by pre-commit hook."]
239 hook_failed_popup pre-commit
$pch_error
242 commit_commitmsg
$curHEAD $msg_p
247 fconfigure $fd_ph -blocking 0
250 proc commit_commitmsg
{curHEAD msg_p
} {
253 # -- Run the commit-msg hook.
255 set fd_ph
[githook_read commit-msg
$msg_p]
257 commit_writetree
$curHEAD $msg_p
261 ui_status
[mc
"Calling commit-msg hook..."]
263 fconfigure $fd_ph -blocking 0 -translation binary -eofchar {}
264 fileevent $fd_ph readable
\
265 [list commit_commitmsg_wait
$fd_ph $curHEAD $msg_p]
268 proc commit_commitmsg_wait
{fd_ph curHEAD msg_p
} {
271 append pch_error
[read $fd_ph]
272 fconfigure $fd_ph -blocking 1
274 if {[catch {close $fd_ph}]} {
275 catch {file delete
$msg_p}
276 ui_status
[mc
"Commit declined by commit-msg hook."]
277 hook_failed_popup commit-msg
$pch_error
280 commit_writetree
$curHEAD $msg_p
285 fconfigure $fd_ph -blocking 0
288 proc commit_writetree
{curHEAD msg_p
} {
289 ui_status
[mc
"Committing changes..."]
290 set fd_wt
[git_read write-tree
]
291 fileevent $fd_wt readable
\
292 [list commit_committree
$fd_wt $curHEAD $msg_p]
295 proc commit_committree
{fd_wt curHEAD msg_p
} {
296 global HEAD PARENT MERGE_HEAD commit_type
297 global current_branch
298 global ui_comm selected_commit_type
299 global file_states selected_paths rescan_active
303 if {[catch {close $fd_wt} err
]} {
304 catch {file delete
$msg_p}
305 error_popup
[strcat
[mc
"write-tree failed:"] "\n\n$err"]
306 ui_status
[mc
"Commit failed."]
311 # -- Verify this wasn't an empty change.
313 if {$commit_type eq
{normal
}} {
314 set fd_ot
[git_read cat-file commit
$PARENT]
315 fconfigure $fd_ot -encoding binary -translation lf
316 set old_tree
[gets $fd_ot]
319 if {[string equal
-length 5 {tree
} $old_tree]
320 && [string length
$old_tree] == 45} {
321 set old_tree
[string range
$old_tree 5 end
]
323 error [mc
"Commit %s appears to be corrupt" $PARENT]
326 if {$tree_id eq
$old_tree} {
327 catch {file delete
$msg_p}
328 info_popup
[mc
"No changes to commit.
330 No files were modified by this commit and it was not a merge commit.
332 A rescan will be automatically started now.
335 rescan
{ui_status
[mc
"No changes to commit."]}
340 # -- Create the commit.
342 set cmd
[list commit-tree
$tree_id]
343 foreach p
[concat $PARENT $MERGE_HEAD] {
347 if {[catch {set cmt_id
[eval git
$cmd]} err
]} {
348 catch {file delete
$msg_p}
349 error_popup
[strcat
[mc
"commit-tree failed:"] "\n\n$err"]
350 ui_status
[mc
"Commit failed."]
355 # -- Update the HEAD ref.
358 if {$commit_type ne
{normal
}} {
359 append reflogm
" ($commit_type)"
361 set msg_fd
[open $msg_p r
]
364 append reflogm
{: } $subject
366 git update-ref
-m $reflogm HEAD
$cmt_id $curHEAD
368 catch {file delete
$msg_p}
369 error_popup
[strcat
[mc
"update-ref failed:"] "\n\n$err"]
370 ui_status
[mc
"Commit failed."]
375 # -- Cleanup after ourselves.
377 catch {file delete
$msg_p}
378 catch {file delete
[gitdir MERGE_HEAD
]}
379 catch {file delete
[gitdir MERGE_MSG
]}
380 catch {file delete
[gitdir SQUASH_MSG
]}
381 catch {file delete
[gitdir GITGUI_MSG
]}
383 # -- Let rerere do its thing.
385 if {[get_config rerere.enabled
] eq
{}} {
386 set rerere
[file isdirectory
[gitdir rr-cache
]]
388 set rerere
[is_config_true rerere.enabled
]
394 # -- Run the post-commit hook.
396 set fd_ph
[githook_read post-commit
]
398 upvar #0 pch_error$cmt_id pc_err
400 fconfigure $fd_ph -blocking 0 -translation binary -eofchar {}
401 fileevent $fd_ph readable
\
402 [list commit_postcommit_wait
$fd_ph $cmt_id]
405 $ui_comm delete
0.0 end
407 $ui_comm edit modified false
408 if {$::GITGUI_BCK_exists} {
409 catch {file delete
[gitdir GITGUI_BCK
]}
410 set ::GITGUI_BCK_exists 0
413 if {[is_enabled singlecommit
]} do_quit
415 # -- Update in memory status
417 set selected_commit_type new
418 set commit_type normal
421 set MERGE_HEAD
[list]
423 foreach path
[array names file_states
] {
424 set s
$file_states($path)
435 unset file_states
($path)
436 catch {unset selected_paths
($path)}
439 set file_states
($path) [list _O
[lindex $s 1] {} {}]
445 set file_states
($path) [list \
446 _
[string index
$m 1] \
457 ui_status
[mc
"Created commit %s: %s" [string range
$cmt_id 0 7] $subject]
460 proc commit_postcommit_wait
{fd_ph cmt_id
} {
461 upvar #0 pch_error$cmt_id pch_error
463 append pch_error
[read $fd_ph]
464 fconfigure $fd_ph -blocking 1
466 if {[catch {close $fd_ph}]} {
467 hook_failed_popup post-commit
$pch_error 0
472 fconfigure $fd_ph -blocking 0