(sorry for noise, had to format the code blocks)

This commit is contained in:
https://www.google.com/accounts/o8/id?id=AItOawkptNW1PzrVjYlJWP_9e499uH0mjnBV6GQ 2011-04-07 08:04:39 +00:00 committed by admin
parent a4d37c4550
commit eca9914be1

View file

@ -16,13 +16,16 @@ Now i didn't simply clone the raid-annex to media, but did an sparse-checkout (p
As you can see i have to checkout the .git-annex directory with the file-logs twice which slows down git operations. Everything else works fine until now. git-annex doesn't have any problem, that only a part of the symlinks are present, which is really great. Is there a possibility to sparse checkout the .git-annex directory also? Perhaps splitting the log files in .git-annex/ into N subfolders, corresponding to the toplevel subfolders, like this?
* Before:
$ ls .git-annex
00 01 02....
* After:
$ ls .git-annex
documents/ music/ videos/
$ ls .git-annex/documents
00 01 02....
Before:
$ ls .git-annex
00 01 02....
After:
$ ls .git-annex
documents/ music/ videos/
$ ls .git-annex/documents
00 01 02....
This would make it possible to checkout only the part of the log files which i'm interested in.