Details |
Last modification |
View Log
| RSS feed
Rev |
Author |
Line No. |
Line |
1 |
ron |
1 |
#!/usr/bin/env bash
|
|
|
2 |
#
|
|
|
3 |
# mfinit
|
|
|
4 |
#
|
|
|
5 |
# Create the upstream remote for a forked repository
|
|
|
6 |
#
|
|
|
7 |
|
|
|
8 |
[[ $# == 0 ]] || { echo "Usage: `basename $0`" 1>&2 ; exit 1; }
|
|
|
9 |
|
|
|
10 |
[[ -z $(git branch 2>/dev/null | grep ^* | sed 's/\* //g') ]] && { echo "No git repository here!" 1>&2 ; exit 1; }
|
|
|
11 |
|
|
|
12 |
REPO=$(git remote get-url origin 2>/dev/null | sed -E 's/.*\/(.*)\.git/\1/')
|
|
|
13 |
[[ -z $REPO ]] && { echo "`basename $0`: No 'origin' remote found." 1>&2 ; exit 1; }
|
|
|
14 |
|
|
|
15 |
echo "Adding 'upstream' remote for convenience."
|
|
|
16 |
git remote add upstream "git@github.com:MarlinFirmware/$REPO.git"
|
|
|
17 |
git fetch upstream
|