#!/bin/sh
root=$1
shift 1
if [ -n "$*" ]
then find $root -type d -name .git | xargs dirname | fzf -q "$*"
else find $root -type d -name .git | xargs dirname | fzf
fi