marlin-pavel/Marlin-1.1.x/buildroot/share/git/mfadd

21 lines
339 B
Plaintext
Raw Normal View History

2017-12-22 20:05:24 +01:00
#!/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"