Petko Manolov wrote: > On Wed, 16 Jan 2008, Jakub Narebski wrote: > > > You can always tag a blob (like junio-gpg-pub tag in git.git repository), > > but it wouldn't be in a working directory. But it would get distributed > > on clone. > > Hm, how does it work? You use git-hash-object to put file (-t blob) into the object database. It would return sha1 of added object. Use git-tag to create tag to blob (use returned sha1 for head). You can get file (to stdout) with "git cat-file blob tagname^{blob}". The file would be in object database, but not in working directory by default. > > BTW. if those large binary files doesn't differ much between version, > > they should get well compressed even if you would store them normally, > > all revisions. > > Unfortunately this is not the case. These binary blobs are already > compressed and/or encrypted and adding even a few bytes ends up storing > new version in full size. Can't you store them uncompressed? -- Jakub Narebski Poland - 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