This was a leftover from setup.sh but as sync.sh uses find to get the git
repositories they always exist.
# Fetch from/Push to each remote of each git subdirectory.
for project in `find . -name .git -type d`; do
- if [ -d "$project" ]; then
- pwd=`pwd`
- cd "$project"
+ pwd=`pwd`
+ cd "$project"
- # Fetch from/Push to all remotes.
- for remote in `git remote`; do
- echo "$project: ${method}ing $remote ..."
- git $method "$remote"
- done
+ # Fetch from/Push to all remotes.
+ for remote in `git remote`; do
+ echo "$project: ${method}ing $remote ..."
+ git $method "$remote"
+ done
- cd "$pwd"
- fi
+ cd "$pwd"
done