forked from Dieterbe/git-scripts
-
Notifications
You must be signed in to change notification settings - Fork 0
/
git-sync
executable file
·43 lines (38 loc) · 994 Bytes
/
git-sync
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
#!/bin/bash
DIRS="$@"
if [[ -z "$DIRS" ]]; then
DIRS="."
fi
find "$DIRS" \( -name .git -o -name '*.git' \) -type d | \
while read repo_dir
do
if [[ -f "$repo_dir"/config ]]
then
# If this is a git-svn repo, use git svn fetch
if grep -q '^\[svn-remote ' "$repo_dir"/config
then
echo git svn fetch: $repo_dir
GIT_DIR="$repo_dir" git svn fetch
# If this is a gc-utils repo, use gc-utils update
elif grep -q '^\[gc-utils\]' "$repo_dir"/config
then
echo gc-utils update: $repo_dir
(cd "$repo_dir"; gc-utils update)
else
for remote in $(GIT_DIR="$repo_dir" git remote)
do
if [[ $remote != mirror ]]; then
echo git fetch: $repo_dir -- $remote
GIT_DIR="$repo_dir" git fetch $remote
fi
done
fi
for remote in $(GIT_DIR="$repo_dir" git remote)
do
if [[ $remote == mirror ]]; then
echo git push: $repo_dir -- $remote
GIT_DIR="$repo_dir" git push --mirror $remote
fi
done
fi
done