When I run bower install package name or git url then it installs the package in the specified directory - but the package does not contain the .git directory - is there a way for bower to clone the entire repo (from a remote source, not using a pre-cloned repo on my disk) such that I could then just cd into the directory and make a change if required during the packages development? It seems npm is capable of this by just installing from a repo.
I know I could potentially just run bower link to symlink a local copy of the cloned repo elsewhere - or even cd into the package dir and clone the repo inside this but I thought maybe it was possible via config?