summaryrefslogtreecommitdiff
path: root/bin/git-refresh
blob: 41a84b328b5ecf3751258396c07facf1de0fe155 (plain)
1
2
3
4
5
6
7
8
#!/bin/bash

# Simply fetch all remotes in a git tree
for i in `git remote`; do
	echo "Fetching remote: $i..."
	git fetch $i
	echo "...Done"
done