mirror of
https://github.com/MarlinFirmware/Marlin.git
synced 2025-08-09 23:05:00 -06:00
Improve existing git helper scripts
This commit is contained in:
parent
06f4776be4
commit
7b4c245de3
6 changed files with 16 additions and 24 deletions
|
@ -2,7 +2,15 @@
|
|||
#
|
||||
# mfinit
|
||||
#
|
||||
# Create the upstream repository for Marlin
|
||||
# Create the upstream remote for a forked repository
|
||||
#
|
||||
|
||||
git remote add upstream git@github.com:MarlinFirmware/Marlin.git
|
||||
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
|
Loading…
Add table
Add a link
Reference in a new issue