3
0
Fork 0
mirror of https://github.com/Z3Prover/z3 synced 2025-04-05 09:04:07 +00:00
z3/scripts/trackall.sh
Leonardo de Moura 3fa05d8131 Added script for tracking all remote branches
Signed-off-by: Leonardo de Moura <leonardo@microsoft.com>
2012-12-12 08:58:10 -08:00

10 lines
309 B
Bash

#!/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