Add scripts for managing reviews for ONAP
[infra/tools.git] / 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 4 ]
30 then
31   echo "usage $0 nordix-gerrit-userid onap-gerrit-userid repository-path local-repository"
32   echo "   example: $0 seancitizen janjansson policy/core core "
33   exit 1
34 fi
35
36 git clone ssh://$1@gerrit.nordix.org:29418/$3 $4
37
38 scp -p -P 29418 $1@gerrit.nordix.org:hooks/commit-msg $4/.git/hooks
39
40 echo '[remote "upstream"]' >> $4/.git/config
41 echo "  url = ssh://$2@gerrit.onap.org:29418/$3.git" >> $4/.git/config
42 echo "  fetch = +refs/heads/*:refs/remotes/upstream/*" >> $4/.git/config