forked from samrocketman/gitlab-mirrors
-
Notifications
You must be signed in to change notification settings - Fork 0
/
update_mirror.sh
executable file
·101 lines (90 loc) · 2.79 KB
/
update_mirror.sh
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
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
#!/bin/bash
#Created by Sam Gleske
#MIT License
#Created Tue Sep 10 23:01:08 EDT 2013
#USAGE
# ./update_mirror.sh project_name
#bash option stop on first error
set -e
#Include all user options and dependencies
git_mirrors_dir="${0%/*}"
[ -f "${git_mirrors_dir}/config.sh" ] && . "${git_mirrors_dir}/config.sh"
. "${git_mirrors_dir}/lib/VERSION"
. "${git_mirrors_dir}/lib/functions.sh"
if [ ! -f "${git_mirrors_dir}/config.sh" ];then
red_echo "config.sh missing! Copy and customize from config.sh.SAMPLE. Aborting." 1>&2
exit 1
fi
#sane update defaults that are backwards compatible
force_update="${force_update:-false}"
prune_mirrors="${prune_mirrors:-false}"
#test force_update environment variable (must be bool)
if [ ! "${force_update}" = "true" ] && [ ! "${force_update}" = "false" ];then
red_echo -n "force_update="
yellow_echo -n "${force_update}"
red_echo -n " is not a valid option for force_update! Must be "
yellow_echo -n "true"
red_echo -n " or "
yellow_echo -n "false"
red_echo "."
exit 1
fi
#test prune_mirrors environment variable (must be bool)
if [ ! "${prune_mirrors}" = "true" ] && [ ! "${prune_mirrors}" = "false" ];then
red_echo -n "prune_mirrors="
yellow_echo -n "${prune_mirrors}"
red_echo -n " is not a valid option for prune_mirrors! Must be "
yellow_echo -n "true"
red_echo -n " or "
yellow_echo -n "false"
red_echo "."
exit 1
fi
cd "${git_mirrors_dir}"
PROGNAME="${0##*/}"
PROGVERSION="${VERSION}"
#Default script options
project_name="${1}"
if [ -z "${project_name}" ];then
echo "Must specify a project_name!" 1>&2
exit 1
elif [ ! -d "${repo_dir}/${gitlab_namespace}/${project_name}" ];then
echo "No git repository for ${1}! Perhaps run add_mirror.sh?" 1>&2
exit 1
fi
cd "${repo_dir}/${gitlab_namespace}/${project_name}"
#check for local only repository type
if git config --get gitlabmirrors.noremote &> /dev/null && [ "$(git config --get gitlabmirrors.noremote)" = "true" ];then
no_remote_set=true
fi
if git config --get svn-remote.svn.url &> /dev/null;then
#this is an SVN mirror so update it accordingly
if [ "$(git config --get core.bare)" = "true" ];then
git config --bool core.bare false
fi
git reset --hard
git svn fetch
git svn rebase
if ! ${no_remote_set};then
#push to the remote
cd .git
git config --bool core.bare true
#bug fix for when gitlab is off-line during a cron job the bare setting gets
#set back to false when the git command fails
git push gitlab
git config --bool core.bare false
fi
else
#just a git mirror so mirror it accordingly
if ${force_update};then
force_opt="--force"
fi
if ${prune_mirrors};then
prune_opt="--prune"
fi
git fetch ${force_opt} ${prune_opt} origin
if ! ${no_remote_set};then
#push to the remote
git push ${force_opt} ${prune_opt} gitlab
fi
fi