summaryrefslogtreecommitdiff
path: root/doc
diff options
context:
space:
mode:
authorGravatar https://me.yahoo.com/a/EbvxpTI_xP9Aod7Mg4cwGhgjrCrdM5s-#7c0f4 <https://me.yahoo.com/a/EbvxpTI_xP9Aod7Mg4cwGhgjrCrdM5s-#7c0f4@web>2016-01-15 05:05:13 +0000
committerGravatar admin <admin@branchable.com>2016-01-15 05:05:13 +0000
commitcbe9b1ade4121ff56009e63035aeb787cbbb78bc (patch)
tree18aca22dd72d66eba3c438d73041c91d803cd3e5 /doc
parent9170282b5952edc7bf1d7f74702cc17b3a7fa4d8 (diff)
Diffstat (limited to 'doc')
-rw-r--r--doc/bugs/treatment_of_largefiles_is_not_working_for_addurl_--fast___40__or_--relaxed__41__.mdwn25
1 files changed, 25 insertions, 0 deletions
diff --git a/doc/bugs/treatment_of_largefiles_is_not_working_for_addurl_--fast___40__or_--relaxed__41__.mdwn b/doc/bugs/treatment_of_largefiles_is_not_working_for_addurl_--fast___40__or_--relaxed__41__.mdwn
new file mode 100644
index 000000000..af2461819
--- /dev/null
+++ b/doc/bugs/treatment_of_largefiles_is_not_working_for_addurl_--fast___40__or_--relaxed__41__.mdwn
@@ -0,0 +1,25 @@
+### Please describe the problem.
+
+As described [elsewhere](http://git-annex.branchable.com/todo/make_addurl_respect_annex.largefiles_option/#comment-817c4d5c215ddc0ec7bc5c4c05dff091) but since that one is closed -- making a dedicated one
+
+unfortunately addurl doesn't care about large files if --fast (or --relaxed, although that one I guess I can understand ):
+
+[[!format sh """
+
+$ chmod a+w -R /tmp/123; rm -rf /tmp/123; mkdir /tmp/123; cd /tmp/123; git init; git annex init;
+Initialized empty Git repository in /tmp/123/.git/
+init ok
+(recording state in git...)
+
+$ git -c annex.largefiles=exclude=*.txt annex addurl --file=test.txt --fast \"http://www.onerussian.com/tmp/banner.png\"
+addurl test.txt ok
+(recording state in git...)
+
+$ ls -l test.txt
+lrwxrwxrwx 1 yoh yoh 132 Jan 13 18:44 test.txt -> .git/annex/objects/KW/kj/URL-s25319--http&c%%www.onerussian.com%tmp%banner.png/URL-s25319--http&c%%www.onerussian.com%tmp%banner.png
+
+"""]]
+
+it does consider largefiles for if addurl without --fast, or --relaxed
+
+--[[yoh]]