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.7KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657
  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, MarlinDev, MarlinDocumentation)
  10. # - PR Target branch (bugfix-1.1.x, bugfix-2.0.x, or master)
  11. # - Branch Arg (the branch argument or current branch)
  12. # - Current Branch
  13. #
  14. usage() {
  15. echo "Usage: `basename $0` [1|2] [branch]" 1>&2
  16. }
  17. [[ $# < 3 && $1 != "-h" && $1 != "--help" ]] || { usage; exit 1; }
  18. CURR=$(git branch 2>/dev/null | grep ^* | sed 's/\* //g')
  19. [[ -z $CURR ]] && { echo "No git repository here!" 1>&2 ; exit 1; }
  20. [[ $CURR == "(no"* ]] && { echo "Git is busy with merge, rebase, etc." 1>&2 ; exit 1; }
  21. REPO=$(git remote get-url upstream 2>/dev/null | sed -E 's/.*\/(.*)\.git/\1/')
  22. [[ -z $REPO ]] && { echo "`basename $0`: No 'upstream' remote found. (Did you run mfinit?)" 1>&2 ; exit 1; }
  23. ORG=$(git remote get-url upstream 2>/dev/null | sed -E 's/.*[\/:](.*)\/.*$/\1/')
  24. [[ $ORG == MarlinFirmware ]] || { echo "`basename $0`: Not a Marlin repository." 1>&2 ; exit 1; }
  25. case "$REPO" in
  26. Marlin ) TARG=bugfix-1.1.x ;
  27. [[ $# > 0 ]] && [[ $1 == 2 ]] && TARG=bugfix-2.0.x
  28. ;;
  29. MarlinDocumentation ) TARG=master ;;
  30. esac
  31. FORK=$(git remote get-url origin 2>/dev/null | sed -E 's/.*[\/:](.*)\/.*$/\1/')
  32. # BRANCH can be given as the last argument
  33. case "$#" in
  34. 0 ) BRANCH=$CURR ;;
  35. 1 )
  36. case "$1" in
  37. 1|2) BRANCH=$CURR ;;
  38. *) BRANCH=$1 ;;
  39. esac
  40. ;;
  41. 2 )
  42. case "$1" in
  43. 1|2) BRANCH=$2 ;;
  44. *) usage ; exit 1 ;;
  45. esac
  46. ;;
  47. esac
  48. echo "$ORG $FORK $REPO $TARG $BRANCH $CURR"