mirror of
https://github.com/MarlinFirmware/Marlin.git
synced 2025-08-10 15:25:07 -06:00
New git helper scripts 'mfadd' and 'mfqp'
- `mfadd` adds and fetches a user’s fork of Marlin - `mfqp` invokes `git commit -m`, `mfrb`, `git push -f`
This commit is contained in:
parent
7b4c245de3
commit
78308b1c0b
2 changed files with 43 additions and 0 deletions
24
buildroot/share/git/mfadd
Executable file
24
buildroot/share/git/mfadd
Executable file
|
@ -0,0 +1,24 @@
|
|||
#!/usr/bin/env bash
|
||||
#
|
||||
# mfadd
|
||||
#
|
||||
# Add a remote and fetch it
|
||||
#
|
||||
|
||||
MFINFO=$(mfinfo) || exit
|
||||
|
||||
IFS=' ' read -a INFO <<< "$MFINFO"
|
||||
|
||||
REPO=${INFO[2]}
|
||||
OLDBRANCH=${INFO[4]}
|
||||
|
||||
case "$#" in
|
||||
1 ) USER=$1 ;;
|
||||
* ) echo "Usage: `basename $0` [user]" 1>&2 ; exit 1 ;;
|
||||
esac
|
||||
|
||||
set -e
|
||||
|
||||
echo "Adding and fetching $USER..."
|
||||
|
||||
git remote add -f "$USER" "git@github.com:$USER/$REPO.git"
|
Loading…
Add table
Add a link
Reference in a new issue