aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorGravatar Joey Hess <joeyh@joeyh.name>2017-05-18 20:52:44 -0400
committerGravatar Joey Hess <joeyh@joeyh.name>2017-05-18 20:52:44 -0400
commite0666acd95f749b9512e3f365d0bd287acc34978 (patch)
tree6bc4c21d50aab896f647049e5145a0b14ffc5a7f
parent2aa5e1245c3ad4d4848a09ba078161f22aa509b9 (diff)
parent3f542155469667f817e0fcf7e761acf93b85ee5f (diff)
Merge branch 'master' of ssh://git-annex.branchable.com
-rw-r--r--doc/forum/git-annex_help_import_outdated__63__.mdwn13
-rw-r--r--doc/forum/git-annex_sync_here.mdwn19
-rw-r--r--doc/forum/treat_directory_with_multiple_files_as_a_single_item.mdwn7
3 files changed, 39 insertions, 0 deletions
diff --git a/doc/forum/git-annex_help_import_outdated__63__.mdwn b/doc/forum/git-annex_help_import_outdated__63__.mdwn
new file mode 100644
index 000000000..6367fe148
--- /dev/null
+++ b/doc/forum/git-annex_help_import_outdated__63__.mdwn
@@ -0,0 +1,13 @@
+Hi,
+
+I just saw that my installed version of git-annex is too old for:
+
+ git-annex import --reinject-duplicates [...]
+
+Thus, I downloaded the precompiled binary: git-annex-standalone-amd64.tar.gz 2017-05-10 16:19 54M
+
+First of all, it works fine with this version. However, the "--reinject-duplicates" option is not shown, when calling:
+
+ ./git-annex help import ## in ~/git-annex.linux/
+
+So, is the help page just outdated, or does git-annex help gets confused because I still have an older version of git-annex installed in the system?
diff --git a/doc/forum/git-annex_sync_here.mdwn b/doc/forum/git-annex_sync_here.mdwn
new file mode 100644
index 000000000..9aa91ed2f
--- /dev/null
+++ b/doc/forum/git-annex_sync_here.mdwn
@@ -0,0 +1,19 @@
+Hello,
+
+git-annex does a lot of convenient stuff, also locally. With git-annex sync [remote-name] the synchronization can be restricted to a single remote.
+
+However, I think being able to restrict sync to no remote at all, only doing the local stuff, would be helpful.
+
+The natural syntax for me would be git-annex sync here. But it says:
+
+ $ git-annex sync here
+ commit ok
+ git-annex: there is no available git remote named "here"
+
+I think a workaround would be to do:
+
+ $ git-annex sync --no-push --no-pull
+
+Is that correct?
+
+Still, I think "git-annex sync here" would be a convenient shortcut.
diff --git a/doc/forum/treat_directory_with_multiple_files_as_a_single_item.mdwn b/doc/forum/treat_directory_with_multiple_files_as_a_single_item.mdwn
new file mode 100644
index 000000000..4adbedb6c
--- /dev/null
+++ b/doc/forum/treat_directory_with_multiple_files_as_a_single_item.mdwn
@@ -0,0 +1,7 @@
+In my analyses I often have multiple (>10k) generated small files in a single directory.
+
+
+I would like to store this in git annex, in order to version them and probably even synchronize. The problem is that if a huge number of files is stored inside the repository, the repository itself becomes huge and slow. There are some ways to improve the performance ([[1|tips/Repositories_with_large_number_of_files]], [[2|forum/Handling_a_large_number_of_files]], [[3|forum/__34__git_annex_sync__34___synced_after_8_hours]]), but it doesn't solve the issue completely.
+
+
+I was wondering if it is possible to force git annex to treat a single directory with multiple files as a single item? Probably with abandoning the checksum verification.