My Marlin configs for Fabrikator Mini and CTC i3 Pro B
Nevar pievienot vairāk kā 25 tēmas Tēmai ir jāsākas ar burtu vai ciparu, tā var saturēt domu zīmes ('-') un var būt līdz 35 simboliem gara.

mfinfo 1.6KB

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