summaryrefslogtreecommitdiff
path: root/git-gui/lib/database.tcl
diff options
context:
space:
mode:
authorJunio C Hamano <junkio@cox.net>2007-05-10 22:08:18 (GMT)
committerJunio C Hamano <junkio@cox.net>2007-05-10 22:08:18 (GMT)
commit2b93bfac0f5bcabbf60f174f4e7bfa9e318e64d5 (patch)
tree5e5d3dcf64aa8cd7576e335d3f133deaf22539b5 /git-gui/lib/database.tcl
parentffcc952b33575e28b971d63ba2b7e46b7726a257 (diff)
parentd6da71a9d16b8cf27f9d8f90692d3625c849cbc8 (diff)
downloadgit-2b93bfac0f5bcabbf60f174f4e7bfa9e318e64d5.zip
git-2b93bfac0f5bcabbf60f174f4e7bfa9e318e64d5.tar.gz
git-2b93bfac0f5bcabbf60f174f4e7bfa9e318e64d5.tar.bz2
Merge branch 'master' of git://repo.or.cz/git-gui
* 'master' of git://repo.or.cz/git-gui: git gui 0.7.0 git-gui: Paperbag fix blame in subdirectory git-gui: Format author/committer times in ISO format git-gui: Cleanup minor nits in blame code git-gui: Generate blame on uncommitted working tree file git-gui: Smarter command line parsing for browser, blame git-gui: Use prefix if blame is run in a subdirectory git-gui: Convert blame to the "class" way of doing things git-gui: Don't attempt to inline array reads in methods git-gui: Convert browser, console to "class" format git-gui: Define a simple class/method system git-gui: Allow shift-{k,j} to select a range of branches to merge git-gui: Call changes "Staged" and "Unstaged" in file list titles.
Diffstat (limited to 'git-gui/lib/database.tcl')
-rw-r--r--git-gui/lib/database.tcl12
1 files changed, 6 insertions, 6 deletions
diff --git a/git-gui/lib/database.tcl b/git-gui/lib/database.tcl
index 73058a8..43e4a28 100644
--- a/git-gui/lib/database.tcl
+++ b/git-gui/lib/database.tcl
@@ -70,12 +70,12 @@ proc do_stats {} {
proc do_gc {} {
set w [console::new {gc} {Compressing the object database}]
- console::chain {
- {exec {git pack-refs --prune}}
- {exec {git reflog expire --all}}
- {exec {git repack -a -d -l}}
- {exec {git rerere gc}}
- } $w
+ console::chain $w {
+ {exec git pack-refs --prune}
+ {exec git reflog expire --all}
+ {exec git repack -a -d -l}
+ {exec git rerere gc}
+ }
}
proc do_fsck_objects {} {