Enable git review on tools repo
[infra/tools.git] / onap-reviews / heis-pull-review.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 pulls a review from the Nordix gerrit repository for rework. The script:
23 # - checks out the nordix-dev branch of the repository
24 # - resets the nordix-dev branch to be at the latest merged version of the nordix-dev branch on the
25 #   Nordix gerrit repository
26 # - pulls the given review onto the master branch
27 #
28
29 if [ $# -ne 1 ]
30 then
31   echo "usage $0 commit-id"
32   exit 1
33 fi
34
35 git checkout master
36 git fetch origin
37 git reset --hard origin/master
38
39 git pull origin $1