My Marlin configs for Fabrikator Mini and CTC i3 Pro B
You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

mfinit 567B

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