summary | shortlog | log | commit | commitdiff | tree
raw | patch | inline | side by side (parent: 7416bbc)
raw | patch | inline | side by side (parent: 7416bbc)
author | Shawn O. Pearce <spearce@spearce.org> | |
Sun, 29 Apr 2007 05:54:57 +0000 (01:54 -0400) | ||
committer | Shawn O. Pearce <spearce@spearce.org> | |
Wed, 2 May 2007 17:06:11 +0000 (13:06 -0400) |
Whenever we want to execute a git subcommand from the plumbing
layer (and on rare occasion, the more porcelain-ish layer) we
tend to use our proc wrapper, just to make the code slightly
cleaner at the call sites. I wasn't doing that in a couple of
places, so this is a simple cleanup to correct that.
Signed-off-by: Shawn O. Pearce <spearce@spearce.org>
layer (and on rare occasion, the more porcelain-ish layer) we
tend to use our proc wrapper, just to make the code slightly
cleaner at the call sites. I wasn't doing that in a couple of
places, so this is a simple cleanup to correct that.
Signed-off-by: Shawn O. Pearce <spearce@spearce.org>
git-gui.sh | patch | blob | history |
diff --git a/git-gui.sh b/git-gui.sh
index 94f80bb2b16295c731542284f2623345e51860f6..4c01b91f04a53fb3f0a1ffdd34c3c59b3977d119 100755 (executable)
--- a/git-gui.sh
+++ b/git-gui.sh
# -- Create the commit.
#
- set cmd [list git commit-tree $tree_id]
+ set cmd [list commit-tree $tree_id]
foreach p [concat $PARENT $MERGE_HEAD] {
lappend cmd -p $p
}
lappend cmd <$msg_p
- if {[catch {set cmt_id [eval exec $cmd]} err]} {
+ if {[catch {set cmt_id [eval git $cmd]} err]} {
error_popup "commit-tree failed:\n\n$err"
set ui_status_value {Commit failed.}
unlock_index
set subject $msg
}
append reflogm {: } $subject
- set cmd [list git update-ref -m $reflogm HEAD $cmt_id $curHEAD]
- if {[catch {eval exec $cmd} err]} {
+ if {[catch {
+ git update-ref -m $reflogm HEAD $cmt_id $curHEAD
+ } err]} {
error_popup "update-ref failed:\n\n$err"
set ui_status_value {Commit failed.}
unlock_index
-message "Invalid starting revision: $rev"
return
}
- set cmd [list git update-ref]
- lappend cmd -m
- lappend cmd "branch: Created from $rev"
- lappend cmd "refs/heads/$newbranch"
- lappend cmd $cmt
- lappend cmd $null_sha1
- if {[catch {eval exec $cmd} err]} {
+ if {[catch {
+ git update-ref \
+ -m "branch: Created from $rev" \
+ "refs/heads/$newbranch" \
+ $cmt \
+ $null_sha1
+ } err]} {
tk_messageBox \
-icon error \
-type ok \