Files
Z3Prover-z3/scripts/trackall.sh
T
Leonardo de Moura 85ac2f558c marked script as executable
Signed-off-by: Leonardo de Moura <leonardo@microsoft.com>
2012-12-13 07:23:09 -08:00

10 lines
309 B
Bash
Executable File

#!/bin/bash
# Script for "cloning" (and tracking) all branches at codeplex.
# On Windows, this script must be executed in the "git Bash" console.
for branch in `git branch -a | grep remotes | grep -v HEAD | grep -v master`; do
git branch --track ${branch##*/} $branch
done
git fetch --all
git pull --all