dotfiles/.local/bin/scripts/git-origin

12 lines
418 B
Bash
Executable File

#!/bin/sh -e
# set repo as origin and set all branches upstream to a corresponding remote branch, if available
git remote $(case "$(git remote)" in
(*origin*) echo set-url;;
(*) echo add;;
esac) origin "$(git-repo "$@")"
git remote -v && git fetch
git branch --format='%(refname:short)' | while read branch
do test $(git branch -a | grep origin/$branch | wc -l) -gt 0 && git branch -u origin/$branch $branch
done