From 95ba531d864df3e5f7a795f6078fba63df8e6b21 Mon Sep 17 00:00:00 2001 From: Ian Lynagh Date: Sat, 9 Apr 2011 15:16:01 +0100 Subject: [PATCH] Add "./sync-all reset" command --- sync-all | 4 ++++ 1 file changed, 4 insertions(+) diff --git a/sync-all b/sync-all index 09130c0..02ac521 100755 --- a/sync-all +++ b/sync-all @@ -361,6 +361,9 @@ sub scmall { # Hack around 'git grep' failing if there are no matches $ignore_failure = 1; } + elsif ($command =~ /^reset$/) { + @scm_args = "reset"; + } elsif ($command =~ /^config$/) { @scm_args = "config"; } @@ -419,6 +422,7 @@ Supported commands: * remote rm * remote set-url [--push] * grep + * reset * config Available package-tags are: -- 1.7.10.4