Open
Description
Something I've come across a few times trying to deal with automating multiple repositories is that the only way to fetch is with a defined remote. I want to be able to do the equivalent of git fetch git://repo.url/path/repo.git branch/name
and have it return a FetchInfo I can use. Currently i'm working around this by creating a new remote, fetching from it and deleting it at the end of the operation.
Thanks.