2016-06-16 05:24:10 +00:00
|
|
|
#!/usr/bin/env bash
|
|
|
|
#
|
|
|
|
# mfinit
|
|
|
|
#
|
2017-04-21 02:24:43 +00:00
|
|
|
# Create the upstream remote for a forked repository
|
2016-06-16 05:24:10 +00:00
|
|
|
#
|
|
|
|
|
2017-04-21 02:24:43 +00:00
|
|
|
REPO=$(git remote get-url origin 2>/dev/null | sed -E 's/.*\/(.*)\.git/\1/')
|
|
|
|
|
|
|
|
if [[ -z $REPO ]]; then
|
|
|
|
echo "`basename $0`: No 'origin' remote found." 1>&2 ; exit 1
|
|
|
|
fi
|
|
|
|
|
|
|
|
git remote add upstream "git@github.com:MarlinFirmware/$REPO.git"
|
|
|
|
|
|
|
|
git fetch upstream
|