mirror of
				https://github.com/Z3Prover/z3
				synced 2025-11-04 05:19:11 +00:00 
			
		
		
		
	
		
			
				
	
	
		
			11 lines
		
	
	
	
		
			353 B
		
	
	
	
		
			Bash
		
	
	
		
			Executable file
		
	
	
	
	
			
		
		
	
	
			11 lines
		
	
	
	
		
			353 B
		
	
	
	
		
			Bash
		
	
	
		
			Executable file
		
	
	
	
	
#!/bin/bash
 | 
						|
 | 
						|
# Copyright (c) 2015 Microsoft Corporation
 | 
						|
# 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
 |