This repository has been archived by the owner on Apr 25, 2024. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 2
/
checkoutSite.sh
executable file
·143 lines (123 loc) · 3.33 KB
/
checkoutSite.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
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
#!/bin/bash
#
# Licensed to the Apache Software Foundation (ASF) under one
# or more contributor license agreements. See the NOTICE file
# distributed with this work for additional information
# regarding copyright ownership. The ASF licenses this file
# to you under the Apache License, Version 2.0 (the
# "License"); you may not use this file except in compliance
# with the License. You may obtain a copy of the License at
#
# http://www.apache.org/licenses/LICENSE-2.0
#
# Unless required by applicable law or agreed to in writing,
# software distributed under the License is distributed on an
# "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY
# KIND, either express or implied. See the License for the
# specific language governing permissions and limitations
# under the License.
#
# Author: Martin Stockhammer <martin_s@apache.org>
# Date: 2018-11-03
#
# This script runs a sparse git clone of a remote repository and
# initializes the git configuration.
#
# It is mainly used for site content creation, because the main archiva-web-content repository
# is rather large and we don't want to checkout the complete data.
#
SITE_DIR="site-content"
GIT_REMOTE=""
GIT_USER=$(git config user.name)
GIT_EMAIL=$(git config user.email)
GIT_PATTERN_FILE="git-sparse-checkout-pattern"
GIT_PATTERN_DEST=".git/info/sparse-checkout"
MY_PWD=$(pwd)
CLONE=1
FORCE=1
MODULE_DIR="${MY_PWD}"
PATTERN=""
BRANCH="master"
while [ ! -z "$1" ]; do
case "$1" in
-f)
FORCE=0
shift
;;
-d)
shift
SITE_DIR="$1"
shift
;;
-p)
shift
if [ -z "${PATTERN}" ]; then
PATTERN="${1}"
else
PATTERN="${PATTERN}\n${1}"
fi
shift
;;
-m)
shift
MODULE_DIR="$1"
shift
;;
-b)
shift
BRANCH="$1"
shift
;;
*)
GIT_REMOTE="$1"
shift
;;
esac
done
print_usage() {
echo "checkoutRepo [-m MODULE_DIR] [-d SITE_DIR] [-f] GIT_URL"
echo " -m: The module directory where the pattern file can be found and the site dir will be created."
echo " -d SITE_DIR: Use the given directory for checkout"
echo " -f: Force clone, even if directory exists"
}
if [ ! -f "${MODULE_DIR}/pom.xml" ]; then
echo "Looks like the working directory is not a valid dir. No pom.xml found."
exit 1
fi
cd "${MODULE_DIR}" || { echo "Could not change to module directory ${MODULE_DIR}"; exit 1; }
if [ -z "$GIT_REMOTE" ]; then
print_usage
exit 1
fi
if [ "${GIT_REMOTE:0:8}" == "scm:git:" ]; then
GIT_REMOTE="${GIT_REMOTE:8}"
fi
if [ -d "${SITE_DIR}" ]; then
if [ ! -d "${SITE_DIR}/.git" ]; then
echo "Directory ${SITE_DIR} exist already, but is not a git clone. Aborting."
exit 1
elif [ "$FORCE" -eq 0 ]; then
CLONE=0
fi
else
CLONE=0
fi
if [ $CLONE -eq 0 ]; then
git clone "${GIT_REMOTE}" "${SITE_DIR}" --no-checkout
if [ $? -ne 0 ]; then
echo "Git clone failed"
exit 1
fi
fi
cd "${SITE_DIR}" || { echo "Could not change to site dir ${SITE_DIR}"; exit 1; }
git checkout "${BRANCH}"
git config core.sparsecheckout true
git config user.name "${GIT_USER}"
git config user.email "${GIT_EMAIL}"
if [ ! -z "${PATTERN}" ]; then
echo -e "${PATTERN}" >"${GIT_PATTERN_DEST}"
elif [ -f "../${GIT_PATTERN_FILE}" ]; then
cp "../${GIT_PATTERN_FILE}" "${GIT_PATTERN_DEST}"
fi
git checkout --
cd "${MY_PWD}"