10 lines
448 B
Bash
Executable File
10 lines
448 B
Bash
Executable File
#!/bin/sh
|
|
# set repo as origin and set all branches upstream to a corresponding remote branch, if available
|
|
git remote remove origin 2>/dev/null
|
|
git remote add origin $(git-repo "$@")
|
|
git remote -v && git fetch || ( last=$? && echo "git fetch failed, aborting\!" && return $last )
|
|
|
|
git branch | sed 's/ //g' | sed 's/*//' | while read branch
|
|
do test $(git branch -a | grep origin/$branch | wc -l) -gt 0 && git branch -u origin/$branch $branch
|
|
done
|