initial commit

This commit is contained in:
erinn 2020-01-29 13:50:36 -08:00
incheckning 14bb2ece01
1 ändrade filer med 21 tillägg och 0 borttagningar

21
gitfix Executable file
Visa fil

@ -0,0 +1,21 @@
#!/bin/bash
if [ ! -d ".git" ]; then
echo "err: not a git repository"
exit
fi
url=$(git remote -v | grep fetch | sed 's/\t/ /g' | cut -d' ' -f2 | sort | uniq)
lines=$(echo "$url" | wc -l)
dir=$(pwd)
if [ "$lines" != "1" ]; then
echo "err: too many remotes"
exit
fi
cd ..
rm -rf $dir
git clone $url
cd $dir