-
Notifications
You must be signed in to change notification settings - Fork 102
/
github-sync.sh
executable file
·53 lines (40 loc) · 1.39 KB
/
github-sync.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
#!/bin/sh
set -e
UPSTREAM_REPO=$1
BRANCH_MAPPING=$2
if [[ -z "$UPSTREAM_REPO" ]]; then
echo "Missing \$UPSTREAM_REPO"
exit 1
fi
if [[ -z "$BRANCH_MAPPING" ]]; then
echo "Missing \$SOURCE_BRANCH:\$DESTINATION_BRANCH"
exit 1
fi
if ! echo $UPSTREAM_REPO | grep -Eq ':|@|\.git\/?$'
then
echo "UPSTREAM_REPO does not seem to be a valid git URI, assuming it's a GitHub repo"
echo "Originally: $UPSTREAM_REPO"
UPSTREAM_REPO="https://github.com/${UPSTREAM_REPO}.git"
echo "Now: $UPSTREAM_REPO"
fi
echo "UPSTREAM_REPO=$UPSTREAM_REPO"
echo "BRANCHES=$BRANCH_MAPPING"
git config --unset-all http."https://github.com/".extraheader || :
echo "Resetting origin to: https://$GITHUB_ACTOR:[email protected]/$GITHUB_REPOSITORY"
git remote set-url origin "https://$GITHUB_ACTOR:[email protected]/$GITHUB_REPOSITORY"
echo "Adding tmp_upstream $UPSTREAM_REPO"
git remote add tmp_upstream "$UPSTREAM_REPO"
echo "Fetching tmp_upstream"
git fetch tmp_upstream --quiet
git remote --verbose
echo "Pushing changings from tmp_upstream to origin"
git push origin "refs/remotes/tmp_upstream/${BRANCH_MAPPING%%:*}:refs/heads/${BRANCH_MAPPING#*:}" --force
if [[ "$SYNC_TAGS" = true ]]; then
echo "Force syncing all tags"
git tag -d $(git tag -l) > /dev/null
git fetch tmp_upstream --tags --quiet
git push origin --tags --force
fi
echo "Removing tmp_upstream"
git remote rm tmp_upstream
git remote --verbose