My Marlin configs for Fabrikator Mini and CTC i3 Pro B
Vous ne pouvez pas sélectionner plus de 25 sujets Les noms de sujets doivent commencer par une lettre ou un nombre, peuvent contenir des tirets ('-') et peuvent comporter jusqu'à 35 caractères.

mfnew 445B

1234567891011121314151617181920212223
  1. #!/usr/bin/env bash
  2. #
  3. # mfnew
  4. #
  5. # Create a new branch based on RCBugFix or dev a given branch name
  6. #
  7. MFINFO=$(mfinfo) || exit
  8. IFS=' ' read -a INFO <<< "$MFINFO"
  9. TARG=${INFO[3]}
  10. if [[ ${INFO[4]} == "(no" ]]; then
  11. echo "Branch is unavailable!"
  12. exit 1
  13. fi
  14. case "$#" in
  15. 0 ) BRANCH=pr_for_$TARG-$(date +"%G-%d-%m|%H:%M:%S") ;;
  16. 1 ) BRANCH=$1 ;;
  17. * ) echo "Usage: `basename $0` [branch]" 1>&2 ; exit 1 ;;
  18. esac
  19. git checkout $TARG -b $BRANCH