Commit graph

1465 commits

Author SHA1 Message Date
Joey Hess
2cbcb4f1a8
update associated files database on smudge and clean 2015-12-07 14:41:22 -04:00
Joey Hess
2fe21d47c5
init: Configure .git/info/attributes to use git-annex as a smudge filter.
Note that this changes the default behavior of git add in a newly
initialized repository; it will add files to the annex.

Don't like that this could break workflows, but it's necessary in order for
any pointer files in the repo to be handled by git-annex.
2015-12-04 17:57:15 -04:00
Joey Hess
e7f75b079d
don't let git-annex direct be run in a v6 repo 2015-12-04 16:33:09 -04:00
Joey Hess
ccc49861ca
add v6; keep v5 working for now and manual upgrade
Since all places where a repo is used in direct mode need to have git-annex
upgraded before the repo can safely be converted to v6, the upgrade needs
to be manual for now.

I suppose that at some point I'll want to drop all the direct mode support
code. At that point, will stop supporting v5, and will need to auto-upgrade
any remaining v5 repos. If possible, I'd like to carry the direct mode
support for say, a year or so, to give people plenty of time to upgrade and
avoid disruption.
2015-12-04 16:14:48 -04:00
Joey Hess
20ca89dfa3
skeleton smudge/clean filters 2015-12-04 13:03:39 -04:00
Joey Hess
f16e235983
addurl, importfeed: Changed to honor annex.largefiles settings, when the content of the url is downloaded. (Not when using --fast or --relaxed.)
importfeed just calls addurl functions, so inherits this from it.

Note that addurl still generates a temp file, and uses that key to download
the file. It just adds it to the work tree at the end when the file is small.
2015-12-02 15:12:33 -04:00
Joey Hess
382f8a790a
fix name of comment 2015-12-02 12:06:04 -04:00
Joey Hess
6cd222fbe8
remove redundant and unnecessary todo
Mostly because of the --
2015-12-02 12:00:41 -04:00
https://me.yahoo.com/a/EbvxpTI_xP9Aod7Mg4cwGhgjrCrdM5s-#7c0f4
7b7a9e2468 2015-11-30 18:49:49 +00:00
Joey Hess
3f63666727
file map analysis 2015-11-24 11:39:47 -04:00
Joey Hess
cf0130894e
notes on merge 2015-11-23 18:10:50 -04:00
Joey Hess
fe55caa2ae
upgrading 2015-11-23 17:57:47 -04:00
Joey Hess
33fb0de1a3
smudge design 2015-11-23 16:53:05 -04:00
https://me.yahoo.com/a/EbvxpTI_xP9Aod7Mg4cwGhgjrCrdM5s-#7c0f4
472df9c9b5 added [[!meta author=yoh]] 2015-11-10 19:25:28 +00:00
https://me.yahoo.com/a/EbvxpTI_xP9Aod7Mg4cwGhgjrCrdM5s-#7c0f4
ee69735b7f Added a comment 2015-11-10 19:24:59 +00:00
Joey Hess
952d9e42dc
hmm 2015-11-10 15:12:12 -04:00
Joey Hess
78b63888a6
close 2015-11-06 13:52:47 -04:00
Joey Hess
c6fc0945f3
update 2015-11-04 17:03:32 -04:00
https://me.yahoo.com/a/EbvxpTI_xP9Aod7Mg4cwGhgjrCrdM5s-#7c0f4
bf0b84a86d 2015-11-02 20:59:38 +00:00
Joey Hess
e806e62fa3
document default --autostart --startdelay=5 and comment 2015-11-02 11:18:44 -04:00
https://id.koumbit.net/anarcat
3d0d832b6c add three more alternatives... 2015-10-30 15:42:35 +00:00
https://id.koumbit.net/anarcat
ad87b9c708 Added a comment: re tox 2015-10-30 15:37:09 +00:00
Gastlag
c07dd514e0 Added a comment: Is xmpp the problem ? 2015-10-30 10:42:06 +00:00
parhuzamos
0ec35e8b45 User "bence" was using Google OpenID which is not supported anymore. Found this moved page, edited it to get notified if anything happens. 2015-10-28 21:01:29 +00:00
Jonan
cf3d3037b6 2015-10-28 11:10:44 +00:00
Jonan
c38b28f874 2015-10-28 11:06:30 +00:00
Joey Hess
6e7eddb5d6
comment 2015-10-26 15:33:32 -04:00
anarcat
48c78c9b2a trick question 2015-10-20 04:44:39 +00:00
Joey Hess
f9adb905fc
Avoid unncessary write to the location log when a file is unlocked and then added back with unchanged content.
Implemented with no additional overhead of compares etc.

This is safe to do for presence logs because of their locality of change;
a given repo's presence logs are only ever changed in that repo, or in a
repo that has just been actively changing the content of that repo.

So, we don't need to worry about a split-brain situation where there'd
be disagreement about the location of a key in a repo. And so, it's ok to
not update the timestamp when that's the only change that would be made
due to logging presence info.
2015-10-12 14:46:47 -04:00
Joey Hess
82ba8c9a6a
comment 2015-10-12 13:29:00 -04:00
tribut
53d3b5a197 2015-10-11 17:33:20 +00:00
Joey Hess
9bcc32de3b Merge branch 'master' of ssh://git-annex.branchable.com 2015-10-01 16:17:52 -04:00
Joey Hess
2fb3722ce9 Do verification of checksums of annex objects downloaded from remotes.
* When annex objects are received into git repositories, their checksums are
  verified then too.
* To get the old, faster, behavior of not verifying checksums, set
  annex.verify=false, or remote.<name>.annex-verify=false.
* setkey, rekey: These commands also now verify that the provided file
  matches the key, unless annex.verify=false.
* reinject: Already verified content; this can now be disabled by
  setting annex.verify=false.

recvkey and reinject already did verification, so removed now duplicate
code from them. fsck still does its own verification, which is ok since it
does not use getViaTmp, so verification doesn't happen twice when using fsck
--from.
2015-10-01 15:56:39 -04:00
dxld@02c834b220f9ffc0410d37263aa29d9373cc455b
9825b4cb15 Added a comment: Fully p2p alternative to XMPP 2015-10-01 17:22:44 +00:00
Joey Hess
0c3a3c5187 comment 2015-10-01 11:57:59 -04:00
Joey Hess
4aa055cb39 Merge branch 'master' of ssh://git-annex.branchable.com 2015-09-29 11:20:00 -04:00
kalle@bdf75651b439b088e51f28f10f5a46ffcd2a704d
2ed24b88ae Added a comment: importfeed template 2015-09-28 19:52:16 +00:00
graboluk@f6de53961ab0f884e203f602f65eb5cdc0fb7513
31597d6676 Added a comment: timestamps are wrong as of 5.20150731 2015-09-26 18:31:46 +00:00
Joey Hess
209b8bbfbb Merge branch 'master' of ssh://git-annex.branchable.com 2015-09-26 08:57:53 -04:00
Joey Hess
7f102cf43d add 2015-09-26 07:23:08 -04:00
fastguy
8156862566 Added a comment: Any updates? 2015-09-25 19:35:18 +00:00
Joey Hess
f2b6ebd502 status: Show added but not yet committed files.
Seems easy, but git ls-files can't list the right subset of files.
So, I wrote a whole new parser for git status output, and converted the
status command to use that.

There are a few other small behavior changes. The order changed. Unlocked
files show as T. In indirect mode, deleted files were not shown before, and
that's fixed. Regular files checked directly into git and modified
were not shown before, and are now.
2015-09-22 17:32:28 -04:00
Joey Hess
6885fe3c38 close, already implemented via a different todo 2015-09-22 15:46:42 -04:00
Joey Hess
c9acb6b89d new todo 2015-09-22 15:31:08 -04:00
Joey Hess
9fa60b676c close 2015-09-22 15:23:23 -04:00
Joey Hess
89238e9595 juggle dup bugs 2015-09-17 17:08:39 -04:00
Joey Hess
9cfb96c53d Special remotes configured with autoenable=true will be automatically enabled when git-annex init is run. 2015-09-14 14:49:48 -04:00
Joey Hess
ffa8221517 annex.hardlink extended to also try to use hard links when copying from the repository to a remote.
Also, it used to only check that one of the repos was not in direct mode;
now when either repo is direct mode, annex.hardlink won't have an effect.
2015-09-14 12:13:38 -04:00
https://id.koumbit.net/anarcat
8e30053d5b toc 2015-09-12 22:18:40 +00:00
Joey Hess
eab8c512d8 cleanup 2015-09-11 13:21:58 -04:00
Joey Hess
29187648e1 comment 2015-09-09 14:45:57 -04:00
Joey Hess
97fb358437 new todo 2015-09-09 14:44:43 -04:00
Joey Hess
c60181bd82 unused: Fix reversion in 5.20150727 that broke parsing of the --unused-refspec option. Thanks, Øyvind A. Holm. 2015-09-09 14:33:35 -04:00
sunny256
762ff6d584 Add patch to change --unused-refspec back to --used-refspec 2015-09-08 12:47:40 +00:00
lealanko
499719d660 2015-09-06 14:00:39 +00:00
lealanko
8733bd603d Added a comment 2015-09-06 13:26:49 +00:00
Joey Hess
b5c0fb1c48 possible optimisation idea 2015-09-03 13:52:43 -07:00
http://joeyh.name/
cb5756bfc5 Added a comment 2015-08-25 18:25:44 +00:00
https://me.yahoo.com/a/EbvxpTI_xP9Aod7Mg4cwGhgjrCrdM5s-#7c0f4
a768ee7128 2015-08-25 18:08:50 +00:00
vincent.mcintyre@1318ebde5cb96fc17e59dfa86f399f5634b1facc
fc7bfc27e1 2015-08-24 13:11:24 +00:00
anarcat
1f359ab899 Added a comment: great! 2015-08-17 04:07:28 +00:00
Joey Hess
87b4229b23 sync: Support --jobs
* sync: Support --jobs
* sync --content: Avoid unnecessary second pull from remotes when
  no file transfers are made.
2015-08-14 13:49:55 -04:00
jonathan.stott+gitannex@7c5a9cff8c7c8f69680d0723dda182fa3ba78d43
d4bda84386 2015-08-14 13:40:45 +00:00
Joey Hess
4ab4417292 move item to todo list from bugs and followup 2015-08-13 16:43:58 -04:00
Joey Hess
00fd5b67bf more measuring 2015-08-13 16:15:22 -04:00
Joey Hess
983a95f021 Sped up downloads of files from ssh remotes, reducing the non-data-transfer overhead 6x. 2015-08-13 14:20:28 -04:00
Joey Hess
7584e47ba3 --debug log messages are now timestamped with fractional seconds. 2015-08-12 14:42:49 -04:00
Joey Hess
756551cfcc amazonka 2015-08-11 14:14:53 -04:00
Joey Hess
8ee295e446 comment 2015-08-11 13:52:54 -04:00
Joey Hess
21dc3ab49e response 2015-08-11 13:36:22 -04:00
tomekwi
d4ce800219 Added a comment: Linux-Windows repo 2015-08-10 18:22:22 +00:00
https://me.yahoo.com/a/EbvxpTI_xP9Aod7Mg4cwGhgjrCrdM5s-#7c0f4
7434cc0d72 Added a comment 2015-08-09 03:04:31 +00:00
https://me.yahoo.com/a/EbvxpTI_xP9Aod7Mg4cwGhgjrCrdM5s-#7c0f4
3cb9c0dd93 2015-08-09 02:51:41 +00:00
https://id.koumbit.net/anarcat
63aec0eba0 no haskell? 2015-08-06 21:14:47 +00:00
Joey Hess
6ded6fd19a promote comment to todo 2015-08-06 13:33:25 -04:00
Joey Hess
49947be595 done 2015-08-05 14:11:55 -04:00
Joey Hess
de9a35f64d Merge branch 'master' of ssh://git-annex.branchable.com 2015-08-05 09:45:26 -04:00
Joey Hess
a6fbf20671 longterm goal 2015-08-04 22:49:39 -04:00
https://me.yahoo.com/a/EbvxpTI_xP9Aod7Mg4cwGhgjrCrdM5s-#7c0f4
d9647df58d Added a comment: my bad 2015-08-05 02:33:46 +00:00
Joey Hess
1d51542cd4 comment 2015-08-04 16:23:21 -04:00
Joey Hess
89bb7d1244 cmment 2015-08-04 15:33:51 -04:00
Joey Hess
82c0fd7ed8 response 2015-08-04 12:21:22 -04:00
https://me.yahoo.com/a/EbvxpTI_xP9Aod7Mg4cwGhgjrCrdM5s-#7c0f4
b4182f5a97 Added a comment 2015-08-04 15:28:29 +00:00
https://me.yahoo.com/a/EbvxpTI_xP9Aod7Mg4cwGhgjrCrdM5s-#7c0f4
9ad6c8255c Added a comment 2015-08-04 15:00:03 +00:00
https://me.yahoo.com/a/EbvxpTI_xP9Aod7Mg4cwGhgjrCrdM5s-#7c0f4
c7f493fe2a 2015-08-04 14:53:27 +00:00
https://me.yahoo.com/a/EbvxpTI_xP9Aod7Mg4cwGhgjrCrdM5s-#7c0f4
45b2fb3463 2015-08-04 14:39:19 +00:00
Joey Hess
7fcdb85177 todo 2015-08-03 14:36:37 -04:00
https://me.yahoo.com/a/EbvxpTI_xP9Aod7Mg4cwGhgjrCrdM5s-#7c0f4
02ebc79ee7 2015-07-31 16:16:02 +00:00
torarnv@6179ecd599a0e00709a67306f015e46307a66eb6
f2a820c791 Added a comment: Git 2.5 allows smudge filters to not read all of stdin 2015-07-29 10:35:07 +00:00
Joey Hess
3e98e26303 open and close gitlab issues 2015-07-27 12:22:17 -04:00
CandyAngel
7c290e8b98 Added a comment 2015-07-22 07:41:53 +00:00
Joey Hess
49d102f98b addurl now accepts --prefix and --suffix options to adjust the filenames used 2015-07-21 12:50:05 -04:00
CandyAngel
f173be6e88 Added a comment 2015-07-21 12:11:45 +00:00
Joey Hess
bb2d8766aa update 2015-07-20 15:07:35 -04:00
Joey Hess
43bdd2c109 move to todo 2015-07-20 13:49:26 -04:00
Joey Hess
43ad045e1b response 2015-07-20 12:20:55 -04:00
CandyAngel
73d1812e18 2015-07-19 19:23:28 +00:00
mawillcockson
d61c11454e Added a comment 2015-07-18 19:13:03 +00:00
Joey Hess
7d6e6f15c1 comment 2015-07-15 11:53:40 -04:00
CandyAngel
3327e9ffae Added a comment 2015-07-15 10:20:55 +00:00
Joey Hess
b11d2f5a8a unused: --used-refspec can now be configured to look at refs in the reflog. This provides a way to not consider old versions of files to be unused after they have reached a specified age, when the old refs in the reflog expire.
May be slow.
2015-07-07 17:13:50 -04:00
Joey Hess
a51b98cdd5 sync: When annex.autocommit=false, avoid making any commit of local changes, while still merging with remote to the extent possible. 2015-07-07 16:36:11 -04:00
Joey Hess
81ad277a85 add: Stage symlinks the same as git add would, even if they are not a link to annexed content. 2015-07-07 16:15:30 -04:00
Joey Hess
772dd88ae9 close; use receive.denyCurrentBranch=updateInstead 2015-07-07 16:00:25 -04:00
sunny256
5436e10a96 Added a comment 2015-07-06 22:33:48 +00:00
Joey Hess
927ca3d804 comment 2015-07-06 13:49:10 -04:00
https://me.yahoo.com/a/EbvxpTI_xP9Aod7Mg4cwGhgjrCrdM5s-#7c0f4
3cf08435a1 Added a comment: explicit arguments? 2015-07-06 16:01:47 +00:00
Joey Hess
82312a6979 idea 2015-07-06 11:41:29 -04:00
Joey Hess
66973ccc1a close 2015-07-03 18:19:50 -04:00
Joey Hess
e54da868ac comment 2015-07-03 14:07:40 -04:00
Joey Hess
60e51e86b1 comment 2015-07-02 16:41:04 -04:00
Joey Hess
6648fa1c47 fixed 2015-07-02 16:35:58 -04:00
Joey Hess
a8a1566cb7 comment 2015-07-02 16:09:14 -04:00
Joey Hess
ad1ffa47ba comment 2015-07-02 16:02:53 -04:00
Joey Hess
9fa6671a47 fixed via time machine 2015-07-02 16:01:16 -04:00
Joey Hess
af3d4dc764 comment 2015-07-02 12:53:47 -04:00
sunny256
c3fa443c25 Add patch for "unrecognized argument: -raw" bug 2015-06-24 15:33:05 +00:00
anarcat
899cde1dcb clarify issue 2015-06-23 04:14:18 +00:00
anarcat
dc5f9dbe00 rename todo/git-annex_du.mdwn to todo/git-annex_info___34__du__34___remote_support.mdwn 2015-06-23 04:12:21 +00:00
acstubbins@9fd8dfbed08e99693f97e0782ddecf65eb816cb5
f0a4ce0bfd 2015-06-23 02:11:51 +00:00
anarcat
8410a1cccb another idea... 2015-06-22 22:06:30 +00:00
https://id.koumbit.net/anarcat
df2a084965 proper way to override the download command? 2015-06-18 17:33:15 +00:00
Joey Hess
8b0549b408 Merge branch 'master' of ssh://git-annex.branchable.com 2015-06-16 18:56:20 -04:00
anarcat
da60a29e56 sign and split out 2015-06-16 21:06:14 +00:00
anarcat
c508c3472a first python implementation of this 2015-06-16 21:03:48 +00:00
Joey Hess
29c03145e6 sync: Add support for --all and --unused. 2015-06-16 16:50:03 -04:00
anarcat
f5d84ac62e Added a comment 2015-06-16 20:10:50 +00:00
Joey Hess
32adb5f0e0 actually.. 2015-06-16 14:03:13 -04:00
Joey Hess
fbc06b3d1f Merge branch 'master' of ssh://git-annex.branchable.com 2015-06-16 13:50:48 -04:00
https://id.koumbit.net/anarcat
bc87ed040e neat checksumming api at s3 that could be leveraged 2015-06-16 00:50:06 +00:00
Joey Hess
f62138b9c5 add basic progress 2015-06-15 15:27:17 -04:00
Joey Hess
1744bd6b48 further thoughts 2015-06-11 15:24:30 -04:00
https://id.koumbit.net/anarcat
30c2a63933 i don't think this is valid 2015-06-11 19:17:45 +00:00
Antoine Beaupré
26fc983a16 move bug to a todo since it's a wishlist 2015-06-11 15:13:06 -04:00
Joey Hess
4497e2889d todo item (seems blocked on caching database) 2015-06-10 14:11:39 -04:00
frederik@ffbea6a549cb3f460d110386c0f634c1ddc6a68a
0995f265ee Added a comment 2015-06-10 12:43:45 +00:00
Joey Hess
fd55537bae tracked in debian bts 2015-06-09 12:53:54 -04:00
Joey Hess
3b7f278fc9 comment 2015-06-09 12:53:30 -04:00
https://id.koumbit.net/anarcat
193e3c6468 Added a comment 2015-06-09 13:51:10 +00:00
https://id.koumbit.net/anarcat
c427e6470a Added a comment 2015-06-08 19:27:03 +00:00
https://openid.stackexchange.com/user/7891307e-4b76-4697-8e71-083669c26e9f
6a8f30f02a 2015-06-07 14:17:30 +00:00
https://id.koumbit.net/anarcat
f6d34a0740 aaaawesome, thanks! :) 2015-06-05 20:53:27 +00:00
Joey Hess
52934c48ba Merge branch 'master' of ssh://git-annex.branchable.com 2015-06-05 16:28:08 -04:00
Joey Hess
5f0f063a7a S3: Publically accessible buckets can be used without creds. 2015-06-05 16:23:35 -04:00
Joey Hess
cb69574f96 comment 2015-06-05 13:29:54 -04:00
anarcat
b8a3221c4d 2015-06-05 05:17:57 +00:00
https://id.koumbit.net/anarcat
9b298f4c86 Added a comment: not free software 2015-06-04 14:37:33 +00:00
Joey Hess
762f2aad12 close dup; and remove dup closure of todo/Nearline_support
todo/Nearine_support is where this is being discussed, it was closed as a
dup erroniously.

Spending more time closing dups about this than working on it. :(
2015-06-02 14:52:33 -04:00
Joey Hess
429368659f Merge branch 'master' of ssh://git-annex.branchable.com 2015-06-02 14:21:05 -04:00
Joey Hess
d28e8fbfd5 get --incomplete: New option to resume any interrupted downloads. 2015-06-02 14:20:38 -04:00