mirror of
https://github.com/Z3Prover/z3
synced 2026-06-08 12:59:34 +00:00
85ac2f558c
Signed-off-by: Leonardo de Moura <leonardo@microsoft.com>
10 lines
309 B
Bash
Executable File
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
|