On Sun, Nov 11, 2007 at 04:09:55PM +0800, Yin Ping wrote: > I want to track remote repsotory (say remoteA) on my local repository > (say localB), so i do the following in directory localB > $ git remote add remoteA git://remoteAUrl > $ git fetch remoteA > This will fetch all objects from git://remoteAUrl if localB and > remoteA don't have common objects. > > If I already have a cloned remoteA on local machine (say > /path/to/remoteACloned), I want to do following to reduce the net > traffic as git-clone: > git fetch --reference /path/to/remoteACloned remotedA > > Is this reasonable? Or is there already a resolution for this case? It would probably be reasonable to have this on git-remote. Anyways, you can easily do it yourself by editing .git/objects/info/alternates and adding /path/to/remoteACloned in it. You can happily git fetch after that. Mike - To unsubscribe from this list: send the line "unsubscribe git" in the body of a message to majordomo@xxxxxxxxxxxxxxx More majordomo info at http://vger.kernel.org/majordomo-info.html