This repository has been archived on 2022-01-28. You can view files and clone it, but cannot push or open issues or pull requests.
Marlin-Artillery-M600/buildroot/share/git/mfinit

18 lines
567 B
Plaintext
Raw Normal View History

#!/usr/bin/env bash
#
# mfinit
#
2017-04-21 04:24:43 +02:00
# Create the upstream remote for a forked repository
#
2017-07-03 03:43:57 +02:00
[[ $# == 0 ]] || { echo "Usage: `basename $0`" 1>&2 ; exit 1; }
2017-04-21 04:24:43 +02:00
2017-07-03 03:43:57 +02:00
[[ -z $(git branch 2>/dev/null | grep ^* | sed 's/\* //g') ]] && { echo "No git repository here!" 1>&2 ; exit 1; }
2017-04-21 04:24:43 +02:00
2017-07-03 03:43:57 +02:00
REPO=$(git remote get-url origin 2>/dev/null | sed -E 's/.*\/(.*)\.git/\1/')
[[ -z $REPO ]] && { echo "`basename $0`: No 'origin' remote found." 1>&2 ; exit 1; }
2017-04-21 04:24:43 +02:00
2017-07-03 03:43:57 +02:00
echo "Adding 'upstream' remote for convenience."
git remote add upstream "git@github.com:MarlinFirmware/$REPO.git"
git fetch upstream