Fix error message on script
[infra/tools.git] / onap / onap-reviews / heis-clone.sh
1 #! /bin/bash
2
3 # ============LICENSE_START=======================================================
4 #  Copyright (C) 2018 The Nordix Foundation. All rights reserved.
5 # ================================================================================
6 # Licensed under the Apache License, Version 2.0 (the "License");
7 # you may not use this file except in compliance with the License.
8 # You may obtain a copy of the License at
9 #
10 #      http://www.apache.org/licenses/LICENSE-2.0
11 #
12 # Unless required by applicable law or agreed to in writing, software
13 # distributed under the License is distributed on an "AS IS" BASIS,
14 # WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
15 # See the License for the specific language governing permissions and
16 # limitations under the License.
17 #
18 # SPDX-License-Identifier: Apache-2.0
19 # ============LICENSE_END=========================================================
20
21 #
22 # This script clones and sets up an ONAP repository from the Nordix gerrit. It
23 # - clones the repository from the Nordix gerrit
24 # - sets up a commit hook that signs reviews when they are committed
25 # - sets up the ONAP gerrit as the "upstream" of the cloned repository by adding
26 #   it as an entry to the .git/config configuration file of the repository
27 #
28
29 if [ $# -ne 3 ]
30 then
31   echo "usage $0 nordix-gerrit-userid repository-path local-repository"
32   echo "   example: $0 seancitizen onap/policy/core core "
33   exit 1
34 fi
35
36 git clone ssh://$1@gerrit.nordix.org:29418/$2 $3
37 scp -p -P 29418 $1@gerrit.nordix.org:hooks/commit-msg $3/.git/hooks
38 cd $3
39
40 # Adding gerrit remote base on the origin URL to make sure the git review have
41 # a correct project path for repositories on Nordix
42 gerrit_remote=$(git remote -v | awk ' /^origin.*\(push\)/ { print $2 }')
43 git remote add gerrit ${gerrit_remote}
44
45 git checkout master