summaryrefslogtreecommitdiff
path: root/doc
diff options
context:
space:
mode:
authorGravatar https://www.google.com/accounts/o8/id?id=AItOawkptNW1PzrVjYlJWP_9e499uH0mjnBV6GQ <Christian@web>2011-04-07 08:04:39 +0000
committerGravatar admin <admin@branchable.com>2011-04-07 08:04:39 +0000
commiteca9914be1213f8110afef35e647ce14ae22bfb7 (patch)
treeb091c6fa7234ae56b8424f9959cf71ceb4d5ed5b /doc
parenta4d37c4550b911567d0dfb29ed5ba89f619065a7 (diff)
(sorry for noise, had to format the code blocks)
Diffstat (limited to 'doc')
-rw-r--r--doc/forum/sparse_git_checkouts_with_annex.mdwn19
1 files changed, 11 insertions, 8 deletions
diff --git a/doc/forum/sparse_git_checkouts_with_annex.mdwn b/doc/forum/sparse_git_checkouts_with_annex.mdwn
index 32e6e4bbc..97d2f445d 100644
--- a/doc/forum/sparse_git_checkouts_with_annex.mdwn
+++ b/doc/forum/sparse_git_checkouts_with_annex.mdwn
@@ -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.