diff options
author | Max Bolingbroke <batterseapower@hotmail.com> | 2011-11-19 11:27:38 +0000 |
---|---|---|
committer | Max Bolingbroke <batterseapower@hotmail.com> | 2011-11-19 11:27:38 +0000 |
commit | be879ba686f96375c6e3d65b97ed0508ddbfc9a1 (patch) | |
tree | eef5a09167a3d5b5e46a4083b600944882600f6f /sync-all | |
parent | 80e9070c77718b7ff0e913182e54842754726ce8 (diff) | |
download | haskell-be879ba686f96375c6e3d65b97ed0508ddbfc9a1.tar.gz |
Add branch command to sync-all
Diffstat (limited to 'sync-all')
-rwxr-xr-x | sync-all | 5 |
1 files changed, 5 insertions, 0 deletions
@@ -397,6 +397,10 @@ sub scmall { scm ($localpath, $scm, "reset", @args) unless $scm eq "darcs"; } + elsif ($command =~ /^branch$/) { + scm ($localpath, $scm, "branch", @args) + unless $scm eq "darcs"; + } elsif ($command =~ /^config$/) { scm ($localpath, $scm, "config", @args) unless $scm eq "darcs"; @@ -483,6 +487,7 @@ remote set-url [--push] <remote-name> These commands just run the equivalent git command on each repository, passing any extra arguments to git: + branch checkout clean commit |