summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorIan Lynagh <igloo@earth.li>2011-04-01 16:47:06 +0100
committerIan Lynagh <igloo@earth.li>2011-04-01 16:47:06 +0100
commit9aa71a3ee0361c4796586b61bb2ab2beaeec1dc5 (patch)
tree8397347deaf3d358ea02daf63a65b34ed722c0f7
parent067268c561a73a80915144b314a9484d274090fe (diff)
parent0cb84f30414275484a23fffeb9d4db1f54808d4f (diff)
downloadhaskell-9aa71a3ee0361c4796586b61bb2ab2beaeec1dc5.tar.gz
Merge branch 'master' of http://darcs.haskell.org/ghc
-rwxr-xr-xsync-all8
1 files changed, 8 insertions, 0 deletions
diff --git a/sync-all b/sync-all
index 7bb8016354..d89e43954f 100755
--- a/sync-all
+++ b/sync-all
@@ -241,6 +241,12 @@ sub scmall {
elsif ($command =~ /^set-origin$/) {
@scm_args = ("remote", "set-url", "origin", $path);
}
+ elsif ($command =~ /^fetch$/) {
+ @scm_args = ("fetch", "origin");
+ }
+ elsif ($command =~ /^new$/) {
+ @scm_args = ("log", "origin..");
+ }
else {
die "Unknown command: $command";
}
@@ -333,8 +339,10 @@ Supported commands:
* --<package-tag>
* --complete
* --partial
+ * fetch
* send
* set-origin
+ * new
Available package-tags are:
END