This repository has been archived on 2022-01-28. You can view files and clone it, but cannot push or open issues or pull requests.
Marlin-Artillery-M600/buildroot/share/git/mfadd

33 lines
771 B
Plaintext
Raw Normal View History

#!/usr/bin/env bash
#
2019-06-26 10:03:39 +02:00
# mfadd (user|ref) [copyname]
#
2018-03-02 03:41:01 +01:00
# Add a remote and fetch it. Optionally copy a branch.
#
2019-05-10 02:28:41 +02:00
# Example: mfadd myfork:patch-1 copy_of_patch-1
#
2019-06-26 10:03:39 +02:00
[[ $# > 0 && $# < 3 && $1 != "-h" && $1 != "--help" ]] || { echo "usage: `basename $0` (user|ref) [copyname]" 1>&2 ; exit 1; }
2018-03-02 03:41:01 +01:00
# If a colon is included, split the parts
if [[ $1 =~ ":" ]]; then
IFS=':' read -a DATA <<< "$1"
USER=${DATA[0]}
BRANCH=${DATA[1]}
NAME=$2
else
USER=$1
fi
2017-07-03 03:43:57 +02:00
MFINFO=$(mfinfo) || exit 1
IFS=' ' read -a INFO <<< "$MFINFO"
REPO=${INFO[2]}
set -e
echo "Adding and fetching $USER..."
2018-03-02 03:41:01 +01:00
git remote add "$USER" "git@github.com:$USER/$REPO.git" >/dev/null 2>&1 || echo "Remote exists."
2017-07-03 03:43:57 +02:00
git fetch "$USER"
2018-03-02 03:41:01 +01:00
[[ ! -z "$BRANCH" && ! -z "$NAME" ]] && git checkout $USER/$BRANCH -b $NAME