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.
1234567891011121314151617181920 |
- #!/usr/bin/env bash
- #
- # mfadd
- #
- # Add a remote and fetch it
- #
-
- [[ $# == 1 ]] || { echo "Usage: `basename $0` user" 1>&2 ; exit 1; }
-
- USER=$1
-
- MFINFO=$(mfinfo) || exit 1
- IFS=' ' read -a INFO <<< "$MFINFO"
- REPO=${INFO[2]}
-
- set -e
-
- echo "Adding and fetching $USER..."
- git remote add "$USER" "git@github.com:$USER/$REPO.git"
- git fetch "$USER"
|