diff options
author | Daniel Fischer <daniel.is.fischer@googlemail.com> | 2011-09-07 19:56:59 +0200 |
---|---|---|
committer | Daniel Fischer <daniel.is.fischer@googlemail.com> | 2011-09-07 19:56:59 +0200 |
commit | 193ad9fe87a2c2cb988e92fdd83f3ffb0c7bb196 (patch) | |
tree | e8927c10cb6ec923e0c74ab66b44b8a4b1ae0f2d | |
parent | df05656b54ebacc5bad555260b7dab78cf7c7814 (diff) | |
download | haskell-193ad9fe87a2c2cb988e92fdd83f3ffb0c7bb196.tar.gz |
Added repack command to sync-all
-rwxr-xr-x | sync-all | 5 |
1 files changed, 5 insertions, 0 deletions
@@ -401,6 +401,10 @@ sub scmall { scm ($localpath, $scm, "config", @args) unless $scm eq "darcs"; } + elsif ($command =~ /^repack$/) { + scm ($localpath, $scm, "repack", @args) + if $scm eq "git" + } else { die "Unknown command: $command"; } @@ -485,6 +489,7 @@ any extra arguments to git: new pull push + repack reset send status |