My Marlin configs for Fabrikator Mini and CTC i3 Pro B
您最多选择25个主题 主题必须以字母或数字开头,可以包含连字符 (-),并且长度不得超过35个字符

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