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.

mfinfo 1.8KB

1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556575859
  1. #!/usr/bin/env bash
  2. #
  3. # mfinfo
  4. #
  5. # Provide the following info about the working directory:
  6. #
  7. # - Remote (upstream) Org name (MarlinFirmware)
  8. # - Remote (origin) Org name (your Github username)
  9. # - Repo Name (Marlin, MarlinDocumentation)
  10. # - PR Target branch (bugfix-1.1.x, bugfix-2.0.x, etc.)
  11. # - Branch Arg (the branch argument or current branch)
  12. # - Current Branch
  13. #
  14. # usage() { echo "usage: `basename $0` [1|2] [branch]" 1>&2 ; }
  15. # [[ $# < 3 && $1 != "-h" && $1 != "--help" ]] || { usage; exit 1; }
  16. CURR=$(git branch 2>/dev/null | grep ^* | sed 's/\* //g')
  17. [[ -z $CURR ]] && { echo "No git repository here!" 1>&2 ; exit 1; }
  18. [[ $CURR == "(no"* ]] && { echo "Git is busy with merge, rebase, etc." 1>&2 ; exit 1; }
  19. REPO=$(git remote get-url upstream 2>/dev/null | sed -E 's/.*\/(.*)\.git/\1/')
  20. [[ -z $REPO ]] && { echo "`basename $0`: No 'upstream' remote found. (Did you run mfinit?)" 1>&2 ; exit 1; }
  21. ORG=$(git remote get-url upstream 2>/dev/null | sed -E 's/.*[\/:](.*)\/.*$/\1/')
  22. [[ $ORG == MarlinFirmware ]] || { echo "`basename $0`: Not a Marlin repository." 1>&2 ; exit 1; }
  23. FORK=$(git remote get-url origin 2>/dev/null | sed -E 's/.*[\/:](.*)\/.*$/\1/')
  24. # Defaults if no arguments given
  25. BRANCH=$CURR
  26. INDEX=1
  27. while [[ $# -gt 0 ]]; do
  28. opt="$1" ; shift ; val="$1"
  29. IFS='=' read -a PARTS <<<"$opt"
  30. [[ "${PARTS[1]}" != "" ]] && { HAS_EQUALS=1 ; opt="${PARTS[0]}" ; val="${PARTS[1]}" ; }
  31. GOODVAL=1
  32. if [[ "$val" =~ ^-{1,2}.* || ! "$opt" =~ ^-{1,2}.* ]]; then
  33. GOODVAL=0
  34. val=""
  35. fi
  36. case "$opt" in
  37. -*|--*) MORE="$MORE$opt " ; [[ $HAS_EQUALS ]] && MORE="$MORE=$val" ;;
  38. 1|2) INDEX=$opt ;;
  39. *) BRANCH="$opt" ;;
  40. esac
  41. done
  42. case "$REPO" in
  43. Marlin ) TARG=bugfix-1.1.x ; [[ $INDEX == 2 ]] && TARG=bugfix-2.0.x ;;
  44. MarlinDocumentation ) TARG=master ;;
  45. esac
  46. echo "$ORG $FORK $REPO $TARG $BRANCH $CURR $MORE"