Commit graph

12288 commits

Author SHA1 Message Date
https://www.google.com/accounts/o8/id?id=AItOawl9sYlePmv1xK-VvjBdN-5doOa_Xw-jH4U
72b0ca6e99 Added a comment 2014-01-21 00:20:36 +00:00
Richard Hartmann
48cdbf3bfd Merge branch 'master' of git://git-annex.branchable.com 2014-01-21 00:58:15 +01:00
Richard Hartmann
5c33242dd0 Wording 2014-01-21 00:58:04 +01:00
https://www.google.com/accounts/o8/id?id=AItOawkLdR1fuu5aEz3s9VKTBKVMize_SmeNRJM
f11ccc16a6 Added a comment: Past the SHA issues 2014-01-20 23:14:53 +00:00
Joey Hess
df66e15555 devblog 2014-01-20 17:47:17 -04:00
Joey Hess
3159da2693 Add and use numcopiesneeded preferred content expression.
* Add numcopiesneeded preferred content expression.
* Client, transfer, incremental backup, and archive repositories
  now want to get content that does not yet have enough copies.

This means the asssistant will make copies of files that don't yet
meet the configured numcopies, even to places that would not normally want
the file.

For example, if numcopies is 4, and there are 2 client repos and
2 transfer repos, and 2 removable backup drives, the file will be sent
to both transfer repos in order to make 4 copies. Once a removable drive
get a copy of the file, it will be dropped from one transfer repo or the
other (but not both).

Another example, numcopies is 3 and there is a client that has a backup
removable drive and two small archive repos. Normally once one of the small
archives has a file, it will not be put into the other one. But, to satisfy
numcopies, the assistant will duplicate it into the other small archive
too, if the backup repo is not available to receive the file.

I notice that these examples are fairly unlikely setups .. the old behavior
was not too bad, but it's nice to finally have it really correct.

.. Almost. I have skipped checking the annex.numcopies .gitattributes
out of fear it will be too slow.

This commit was sponsored by Florian Schlegel.
2014-01-20 17:35:29 -04:00
Joey Hess
5ddbd24a1c stability analysis 2014-01-20 17:11:02 -04:00
Joey Hess
b7828ec22e Merge branch 'master' of ssh://git-annex.branchable.com 2014-01-20 16:48:31 -04:00
Joey Hess
d66535f065 global numcopies setting
* numcopies: New command, sets global numcopies value that is seen by all
  clones of a repository.
* The annex.numcopies git config setting is deprecated. Once the numcopies
  command is used to set the global number of copies, any annex.numcopies
  git configs will be ignored.
* assistant: Make the prefs page set the global numcopies.

This global numcopies setting is needed to let preferred content
expressions operate on numcopies.

It's also convenient, because typically if you want git-annex to preserve N
copies of files in a repo, you want it to do that no matter which repo it's
running in. Making it global avoids needing to warn the user about gotchas
involving inconsistent annex.numcopies settings.
(See changes to doc/numcopies.mdwn.)

Added a new variety of git-annex branch log file, that holds only 1 value.
Will probably be useful for other stuff later.

This commit was sponsored by Nicolas Pouillard.
2014-01-20 16:47:56 -04:00
https://id.koumbit.net/anarcat
d979f2fbdf a separate sync daemon has many advantages indeed 2014-01-20 18:41:59 +00:00
Joey Hess
ecd4c35d7e promote stm dependency, since Remote.External needs it 2014-01-20 14:32:06 -04:00
Joey Hess
514a4efb7a Merge branch 'master' of ssh://git-annex.branchable.com 2014-01-20 14:30:39 -04:00
Joey Hess
e7f8c1911a design for preferred content numcopies check 2014-01-20 14:28:33 -04:00
Joey Hess
cfa6865056 wontfix 2014-01-20 12:36:19 -04:00
http://joeyh.name/
dde13f775a Added a comment 2014-01-20 16:33:28 +00:00
http://joeyh.name/
4a0fbbd472 Added a comment 2014-01-20 16:28:50 +00:00
https://www.google.com/accounts/o8/id?id=AItOawm_YXzEdPHzbSGVwtmTR7g1BqDtTnIBB5s
1ba8ea0c8a Added a comment: Chunk it 2014-01-20 16:22:21 +00:00
https://www.google.com/accounts/o8/id?id=AItOawkqUg2sSO_pOdi6M7GU86Hsyv5-r33baLs
92071e2170 2014-01-20 10:42:06 +00:00
Richard Hartmann
7845e09320 Fix misleading description 2014-01-20 01:13:41 +01:00
https://me.yahoo.com/a/FHnTlSBo1eCGJRwueeKeB6.RCaPbGMPr5jxx8A--#ce0d8
6633af6736 Added a comment 2014-01-19 23:56:18 +00:00
Joey Hess
df5e2e3d65 gathd 2014-01-19 19:19:19 -04:00
Joey Hess
12302cd05d Merge branch 'master' of ssh://git-annex.branchable.com 2014-01-19 18:48:17 -04:00
http://joeyh.name/
348a270cfe Added a comment 2014-01-19 22:43:11 +00:00
Joey Hess
b0044a4a0c devblog 2014-01-19 18:12:24 -04:00
Joey Hess
7e6e018408 followups and closures 2014-01-19 17:56:24 -04:00
Joey Hess
b6ba0bd556 sync --content: New option that makes the content of annexed files be transferred.
Similar to the assistant, this honors any configured preferred content
expressions.

I am not entirely happpy with the implementation. It would be nicer if
the seek function returned a list of actions which included the individual
file gets and copies and drops, rather than the current list of calls to
syncContent. This would allow getting rid of the somewhat reundant display
of "sync file [ok|failed]" after the get/put display.

But, do that, withFilesInGit would need to somehow be able to construct
such a mixed action list. And it would be less efficient than the current
implementation, which is able to reuse several values between eg get and
drop.

Note that currently this does not try to satisfy numcopies when
getting/putting files (numcopies are of course checked when dropping
files!) This makes it like the assistant, and unlike get --auto
and copy --auto, which do duplicate files when numcopies is not yet
satisfied. I don't know if this is the right decision; it only seemed to
make sense to have this parallel the assistant as far as possible to start
with, since I know the assistant works.

This commit was sponsored by Øyvind Andersen Holm.
2014-01-19 17:49:54 -04:00
Richard Hartmann
83562fccbc Typo 2014-01-19 22:41:36 +01:00
https://www.google.com/accounts/o8/id?id=AItOawniCRkhl_W87gOK5eElfsef3FoUsUFpAr4
eee3540e2d create 2014-01-19 19:17:55 +00:00
https://www.google.com/accounts/o8/id?id=AItOawkq2cjugiSvKWiWmcah3CPBqviQV_cin9I
f6c45f8ba4 Added a comment: The world of Mac 2014-01-19 14:13:55 +00:00
https://arthur.lutz.im/
8c027c5ced added bug about .local adresses 2014-01-19 10:53:10 +00:00
http://joeyh.name/
c5c339e87e Added a comment 2014-01-18 22:39:37 +00:00
https://me.yahoo.com/a/FHnTlSBo1eCGJRwueeKeB6.RCaPbGMPr5jxx8A--#ce0d8
215c02f0a5 2014-01-18 22:08:15 +00:00
Joey Hess
1729205dba devblog 2014-01-18 17:26:34 -04:00
Joey Hess
85185b8f50 Allow --all to be mixed with matching options like --copies and --in (but not --include and --exclude). 2014-01-18 14:58:56 -04:00
Joey Hess
a135bbd5a2 note that --all can't be mixed with eg --copies 2014-01-18 13:52:35 -04:00
Joey Hess
939eb666fe clarify sync 2014-01-18 13:26:47 -04:00
Yaroslav Halchenko
0bf41b335b Minor git-annex.mdwn tune ups (trailing spaces, typos, more consistency in tense)
Conflicts:
	doc/git-annex.mdwn -- I have managed to work on an old copy, so overlapped a bit
2014-01-18 13:06:15 -04:00
Joey Hess
456c9eedb0 status: Support --json. 2014-01-18 12:05:10 -04:00
Joey Hess
babd03d252 Merge branch 'master' of ssh://git-annex.branchable.com 2014-01-18 12:01:40 -04:00
Joey Hess
dce9faf6e4 close 2014-01-18 11:44:58 -04:00
http://joeyh.name/
386ce9395d Added a comment 2014-01-18 15:43:00 +00:00
https://www.google.com/accounts/o8/id?id=AItOawnx8kHW66N3BqmkVpgtXDlYMvr8TJ5VvfY
9135cb7b7c 2014-01-18 06:13:20 +00:00
https://www.google.com/accounts/o8/id?id=AItOawnx8kHW66N3BqmkVpgtXDlYMvr8TJ5VvfY
f49edaf104 Added a comment: could it be part/reason of the problem 2014-01-18 06:05:50 +00:00
https://www.google.com/accounts/o8/id?id=AItOawnx8kHW66N3BqmkVpgtXDlYMvr8TJ5VvfY
2535102e74 Added a comment: repair seems to be also confused 2014-01-18 05:47:02 +00:00
https://www.google.com/accounts/o8/id?id=AItOawnx8kHW66N3BqmkVpgtXDlYMvr8TJ5VvfY
e714837502 Added a comment: git annex fix starts fixing but then spits bulk of errors 2014-01-18 05:42:15 +00:00
https://www.google.com/accounts/o8/id?id=AItOawnx8kHW66N3BqmkVpgtXDlYMvr8TJ5VvfY
a2fe022d68 2014-01-18 05:39:37 +00:00
https://www.google.com/accounts/o8/id?id=AItOawnRRUUZo3W7pAoRoST8P_l0PtUBhvYuzDg
272a661f54 Added a comment: web storage 2014-01-17 22:59:28 +00:00
https://www.google.com/accounts/o8/id?id=AItOawmz8d2M0lQDYWLSbDQSjYRHfrQkWKgPu60
8e2d2a77a5 Added a comment: re: long polling 2014-01-17 20:27:40 +00:00
https://www.google.com/accounts/o8/id?id=AItOawll4Kgp7nMuOKdB0FfbcYZ3KRq7HCS0Slc
029fb5bfc8 Added a comment: Using Gitolite 3.2 2014-01-17 20:14:16 +00:00
http://joeyh.name/
5a3d394b1f Added a comment 2014-01-17 19:36:39 +00:00
http://joeyh.name/
8eb13b1ee6 Added a comment 2014-01-17 19:07:11 +00:00
https://www.google.com/accounts/o8/id?id=AItOawkLdR1fuu5aEz3s9VKTBKVMize_SmeNRJM
4b4c6277e5 Added a comment: Still crashing (again) 2014-01-16 23:33:15 +00:00
https://www.google.com/accounts/o8/id?id=AItOawkKNY4BvwyEilAJql8-Q6WpdmJjjntfLHA
9b11c2c0a2 2014-01-16 23:03:59 +00:00
stp
b7dd9f583d Added a comment: Probably confirming this bug 2014-01-16 19:59:56 +00:00
https://www.google.com/accounts/o8/id?id=AItOawk7iPiqWr3BVPLWEDvJhSSvcOqheLEbLNo
343246d6b7 Added a comment 2014-01-16 19:11:30 +00:00
https://www.google.com/accounts/o8/id?id=AItOawk7iPiqWr3BVPLWEDvJhSSvcOqheLEbLNo
84c2e08568 Added a comment 2014-01-16 18:53:36 +00:00
https://www.google.com/accounts/o8/id?id=AItOawll4Kgp7nMuOKdB0FfbcYZ3KRq7HCS0Slc
4c7c4fc4d0 Added a comment: Rebase all branches 2014-01-16 17:47:45 +00:00
https://www.google.com/accounts/o8/id?id=AItOawll4Kgp7nMuOKdB0FfbcYZ3KRq7HCS0Slc
4ff09cec08 removed 2014-01-16 17:45:53 +00:00
https://www.google.com/accounts/o8/id?id=AItOawll4Kgp7nMuOKdB0FfbcYZ3KRq7HCS0Slc
d75b22f1a4 Added a comment: Rebase all branches 2014-01-16 17:44:04 +00:00
https://id.koumbit.net/anarcat
d1760f0b13 Added a comment 2014-01-16 17:43:34 +00:00
http://joeyh.name/
713d7ccc33 Added a comment 2014-01-16 17:07:05 +00:00
https://id.koumbit.net/anarcat
b2f0c42d29 Added a comment 2014-01-16 17:04:44 +00:00
Joey Hess
2d9ec29154 Merge branch 'master' of ssh://git-annex.branchable.com 2014-01-16 12:32:17 -04:00
Joey Hess
4dec78b0eb add news item for git-annex 5.20140116 2014-01-16 12:32:13 -04:00
http://joeyh.name/
cd83d3d94c Added a comment 2014-01-16 16:29:02 +00:00
https://www.google.com/accounts/o8/id?id=AItOawkipQLNyt8RHREHpg2k5wdYeRSCCvSNSBg
4609b32e7d Added a comment: Just happened again 2014-01-16 16:23:03 +00:00
https://www.google.com/accounts/o8/id?id=AItOawk7iPiqWr3BVPLWEDvJhSSvcOqheLEbLNo
3b22d540b8 2014-01-16 16:08:40 +00:00
Joey Hess
876f1398c4 Merge branch 'master' of ssh://git-annex.branchable.com 2014-01-16 12:02:16 -04:00
Joey Hess
55f3244a80 remove hotlink to flattr icon
lintian dislikes this, and the icon is not important
2014-01-16 12:01:49 -04:00
https://id.koumbit.net/anarcat
15439127ae Added a comment 2014-01-16 15:55:07 +00:00
https://launchpad.net/~fbe
57da4e4a67 2014-01-16 12:25:24 +00:00
Greg Grossmeier
013d61e8fe escape to help with highlighting 2014-01-15 22:40:55 -08:00
https://www.google.com/accounts/o8/id?id=AItOawn_3tllXjSmtgm__aGr9Z4gVNFgJgGyJ30
437278906b Added a comment: Same 2014-01-16 05:45:35 +00:00
glattering
d2fce02aee 2014-01-16 04:23:25 +00:00
http://joeyh.name/
08590e0743 Added a comment 2014-01-16 03:32:08 +00:00
http://joeyh.name/
33029e4958 Added a comment 2014-01-16 03:03:48 +00:00
http://olivier.mehani.name/
9c23012b5a 2014-01-16 02:27:25 +00:00
http://olivier.mehani.name/
895f4584f3 Added a comment 2014-01-16 02:22:19 +00:00
https://www.google.com/accounts/o8/id?id=AItOawmz8d2M0lQDYWLSbDQSjYRHfrQkWKgPu60
9b9475525c Added a comment: long polling in Widget form 2014-01-16 00:08:12 +00:00
https://www.google.com/accounts/o8/id?id=AItOawkLdR1fuu5aEz3s9VKTBKVMize_SmeNRJM
208b23e2f3 Added a comment: Still crashing 2014-01-15 22:36:15 +00:00
http://joeyh.name/
a881902db7 Added a comment 2014-01-15 21:30:36 +00:00
http://joeyh.name/
7a8670481a Added a comment 2014-01-15 21:14:08 +00:00
http://joeyh.name/
d13a8eb259 Added a comment 2014-01-15 20:40:37 +00:00
Joey Hess
fa1de753d7 Merge branch 'master' of ssh://git-annex.branchable.com 2014-01-15 13:55:55 -04:00
Joey Hess
0ab15a4644 clarify that $client is a shorthand used on this page, and not part of preferred content expression syntax 2014-01-15 13:53:56 -04:00
http://joeyh.name/
7dffa425b2 Added a comment 2014-01-15 17:28:56 +00:00
Joey Hess
e10972905a wontfix 2014-01-15 13:20:03 -04:00
https://launchpad.net/~fbe
467651e653 2014-01-15 12:23:07 +00:00
https://id.koumbit.net/anarcat
5f52f3ddc6 Added a comment 2014-01-15 04:29:57 +00:00
http://olivier.mehani.name/
2f605d7d56 Added a comment 2014-01-15 02:26:31 +00:00
https://www.google.com/accounts/o8/id?id=AItOawkLdR1fuu5aEz3s9VKTBKVMize_SmeNRJM
846e282652 Added a comment 2014-01-15 02:21:38 +00:00
https://www.google.com/accounts/o8/id?id=AItOawn_3tllXjSmtgm__aGr9Z4gVNFgJgGyJ30
e9df6fd9d5 Added a comment: Yes 2014-01-15 01:41:12 +00:00
https://www.google.com/accounts/o8/id?id=AItOawn_3tllXjSmtgm__aGr9Z4gVNFgJgGyJ30
e842464a7b Added a comment: Partly fixed? 2014-01-15 01:35:19 +00:00
https://www.google.com/accounts/o8/id?id=AItOawn_3tllXjSmtgm__aGr9Z4gVNFgJgGyJ30
f388e947d7 removed 2014-01-15 01:24:49 +00:00
https://www.google.com/accounts/o8/id?id=AItOawn_3tllXjSmtgm__aGr9Z4gVNFgJgGyJ30
ce14fdc15e Added a comment: Fixed it for me 2014-01-15 01:13:14 +00:00
http://olivier.mehani.name/
2d3371f525 2014-01-15 00:48:28 +00:00
Richard Hartmann
a3eb41cff1 Typo, grammo, and commo
The adventures of OCD blog-checker continue!
2014-01-15 01:06:28 +01:00
https://www.google.com/accounts/o8/id?id=AItOawkLdR1fuu5aEz3s9VKTBKVMize_SmeNRJM
b0d1f3fab4 Added a comment: Different Crash on startup 2014-01-14 22:40:26 +00:00
Joey Hess
9ea52b03c6 Merge branch 'master' of ssh://git-annex.branchable.com 2014-01-14 17:23:27 -04:00
Joey Hess
e00d700b33 devblog 2014-01-14 17:23:08 -04:00
http://joeyh.name/
9d6a9077b8 Added a comment 2014-01-14 21:17:16 +00:00
http://joeyh.name/
a452ea7e2c Added a comment 2014-01-14 21:16:14 +00:00
https://www.google.com/accounts/o8/id?id=AItOawnsuhFUIfWNT-Q-C02FDaSQqceFDge5M9w
7fd95af191 Added a comment 2014-01-14 21:15:51 +00:00
http://joeyh.name/
f3c08f3e26 Added a comment 2014-01-14 21:12:19 +00:00
Joey Hess
e393c9eb9a Merge branch 'master' of ssh://git-annex.branchable.com 2014-01-14 17:11:26 -04:00
Joey Hess
18a3e51d52 assistant: Detect if .git/annex/index is corrupt at startup, and recover. 2014-01-14 17:10:30 -04:00
http://joeyh.name/
c9f156109d Added a comment 2014-01-14 20:54:52 +00:00
Joey Hess
d07f2d7865 Fix a long-standing bug that could cause the wrong index file to be used when committing to the git-annex branch, if GIT_INDEX_FILE is set in the environment. This typically resulted in git-annex branch log files being committed to the master branch and later showing up in the work tree. (These log files can be safely removed.) 2014-01-14 15:36:33 -04:00
Joey Hess
188f0bd58d move bug report out of forum 2014-01-14 15:35:09 -04:00
http://joeyh.name/
7569d79d92 Added a comment 2014-01-14 19:33:28 +00:00
http://joeyh.name/
3228c31063 Added a comment 2014-01-14 19:16:16 +00:00
http://joeyh.name/
df289ba9ca Added a comment 2014-01-14 19:14:35 +00:00
http://joeyh.name/
a2206d92d4 Added a comment 2014-01-14 19:00:33 +00:00
http://joeyh.name/
66e75f15f5 Added a comment 2014-01-14 18:56:44 +00:00
http://joeyh.name/
aee9a91617 Added a comment 2014-01-14 18:55:11 +00:00
https://www.google.com/accounts/o8/id?id=AItOawn_3tllXjSmtgm__aGr9Z4gVNFgJgGyJ30
dfc28543b7 Added a comment: Edit: 2014-01-14 16:31:05 +00:00
https://www.google.com/accounts/o8/id?id=AItOawn_3tllXjSmtgm__aGr9Z4gVNFgJgGyJ30
b966f46582 2014-01-14 16:27:59 +00:00
https://www.google.com/accounts/o8/id?id=AItOawkipQLNyt8RHREHpg2k5wdYeRSCCvSNSBg
e68239a2ff Added a comment: Happened four times yesterday 2014-01-14 14:33:03 +00:00
https://www.google.com/accounts/o8/id?id=AItOawkGCmVc5qIJaQQgG82Hc5zzBdAVdhe2JEM
bc83308537 Added a comment: is telehash udp only? 2014-01-14 14:21:38 +00:00
https://www.google.com/accounts/o8/id?id=AItOawnsuhFUIfWNT-Q-C02FDaSQqceFDge5M9w
77c961935b Added a comment 2014-01-14 12:12:52 +00:00
https://www.google.com/accounts/o8/id?id=AItOawnX1msQxnLoSeu7q-i-c9BWghonsN7Qmns
7115956bdf Added a comment 2014-01-14 10:23:21 +00:00
http://cstork.org/
3d84e120fa Added a comment: Many peoples' use case 2014-01-14 09:39:05 +00:00
http://cstork.org/
2f56afd7a4 removed 2014-01-14 09:37:39 +00:00
http://cstork.org/
b87ee407b2 Added a comment: Many peoples' use case 2014-01-14 09:34:14 +00:00
http://cstork.org/
ec72955cd1 Added a comment: Using different git branches 2014-01-14 09:12:19 +00:00
https://www.google.com/accounts/o8/id?id=AItOawmTIL7ubr5opWM69Q5VtCxuxC2H0SSnzic
4fdc639e9c Added a comment: Where are your repositories located? 2014-01-14 08:58:31 +00:00
https://www.google.com/accounts/o8/id?id=AItOawmTIL7ubr5opWM69Q5VtCxuxC2H0SSnzic
189a55a331 an option to drop all revision of removed files from all repositories? 2014-01-14 08:52:16 +00:00
http://cstork.org/
18c8d414a9 Added a comment 2014-01-14 08:33:31 +00:00
https://launchpad.net/~timo-linux
d01e8f1d85 Added a comment: What about annex mirror? 2014-01-14 08:00:43 +00:00
https://launchpad.net/~timo-linux
af6f4cafa3 Added a comment: Would GIT_DIR or GIT_WORK_TREE be valid for this? 2014-01-14 07:29:32 +00:00
http://www.ryantm.com/
64fc7821fa 2014-01-14 06:15:09 +00:00
https://www.google.com/accounts/o8/id?id=AItOawkLdR1fuu5aEz3s9VKTBKVMize_SmeNRJM
4e30d09893 removed 2014-01-14 01:44:09 +00:00
https://www.google.com/accounts/o8/id?id=AItOawkLdR1fuu5aEz3s9VKTBKVMize_SmeNRJM
e237efc1c6 2014-01-14 01:43:13 +00:00
https://www.google.com/accounts/o8/id?id=AItOawkLdR1fuu5aEz3s9VKTBKVMize_SmeNRJM
6efa506902 2014-01-14 01:26:23 +00:00
Richard Hartmann
6fcb0f79d1 Telelhash 2014-01-14 00:25:32 +01:00
Richard Hartmann
e63e711161 All hail to the noodle lord! 2014-01-14 00:19:47 +01:00
Richard Hartmann
75f9ec420a Typo 2014-01-14 00:18:06 +01:00
Joey Hess
9c34c0408a Merge branch 'master' of ssh://git-annex.branchable.com 2014-01-13 17:08:01 -04:00
Joey Hess
862c810d64 devblog 2014-01-13 17:06:47 -04:00
http://joeyh.name/
a1f47c3186 removed 2014-01-13 20:54:45 +00:00
http://joeyh.name/
f98d82b97d Added a comment 2014-01-13 20:27:35 +00:00
http://joeyh.name/
7076761438 removed 2014-01-13 20:23:57 +00:00
Joey Hess
133968a549 Merge branch 'master' of ssh://git-annex.branchable.com 2014-01-13 15:51:45 -04:00
Joey Hess
7ee87c7bd6 map: Fix display of v5 direct mode repos.
The direct mode guard confused map. So need to run through Annex.new to get
the actual path to the repo.
2014-01-13 15:36:02 -04:00
Joey Hess
eaefcd6e7f fix tag 2014-01-13 15:32:53 -04:00
Joey Hess
ed6f5f5c7e move a non-tip to the forum 2014-01-13 15:25:00 -04:00
Joey Hess
f11bd8458f again with the bug reports on git-annex 2012 versions.. 2014-01-13 15:23:34 -04:00
http://joeyh.name/
c053848d8e Added a comment 2014-01-13 19:22:12 +00:00
http://joeyh.name/
03e6a374ed Added a comment 2014-01-13 19:20:30 +00:00
Joey Hess
5a5adc44f5 Refuse to build with git older than 1.7.1.1, which is needed for git checkout -B 2014-01-13 15:17:48 -04:00
http://joeyh.name/
eee9009d1a Added a comment 2014-01-13 18:57:48 +00:00
Joey Hess
0cac4402ac Android: Avoid passing --clobber to busybox wget. 2014-01-13 14:52:49 -04:00
http://joeyh.name/
980e43611a Added a comment 2014-01-13 18:45:34 +00:00
Joey Hess
c20f31a1ad add GETAVAILABILITY to external special remote protocol
And some reworking of types, and added an annex-availability git config
setting.
2014-01-13 14:41:10 -04:00
Joey Hess
47d2ebd374 Merge branch 'master' of ssh://git-annex.branchable.com 2014-01-13 14:06:47 -04:00
Joey Hess
57edce8ad9 external special remote protocol: Added GETGITDIR. 2014-01-13 14:00:09 -04:00
Joey Hess
eea93b4e2e add telehash design page; update roadmap 2014-01-13 13:08:58 -04:00
https://www.google.com/accounts/o8/id?id=AItOawnX1msQxnLoSeu7q-i-c9BWghonsN7Qmns
38aa62390c 2014-01-13 16:02:34 +00:00
https://www.google.com/accounts/o8/id?id=AItOawkipQLNyt8RHREHpg2k5wdYeRSCCvSNSBg
f938bba88c Added a comment: Having "too many open files" message show up 2014-01-13 14:57:13 +00:00
Joey Hess
f8c8403fd0 Merge branch 'master' of ssh://git-annex.branchable.com 2014-01-12 23:26:24 -04:00
Joey Hess
b318fdfe3b update 2014-01-12 23:23:26 -04:00
https://www.google.com/accounts/o8/id?id=AItOawkI9pq1WH6MWeExXHVQVEsniT3DdFv4AB8
4007f680e0 Added a comment: My usecase too 2014-01-12 23:43:19 +00:00
https://www.google.com/accounts/o8/id?id=AItOawkgy5Qf4bivpTfYPw_yh92OcDlesrVTREg
6aa2da95cf Fix formatting 2014-01-12 20:36:37 +00:00
https://www.google.com/accounts/o8/id?id=AItOawkgy5Qf4bivpTfYPw_yh92OcDlesrVTREg
1ed7a4c144 Added a comment 2014-01-12 20:31:59 +00:00
https://www.google.com/accounts/o8/id?id=AItOawmkBwMWvNKZZCge_YqobCSILPMeK6xbFw8
b6153533d4 Added a comment 2014-01-12 19:16:07 +00:00
https://www.google.com/accounts/o8/id?id=AItOawmqaNwDQ367zpW6cIRviLz6zJZZFODgoEI
5234a4e80f Added a comment: Almost there! 2014-01-12 19:13:30 +00:00
https://www.google.com/accounts/o8/id?id=AItOawnR6E5iUghMWdUGlbA9CCs8DKaoigMjJXw
ca548fb9af 2014-01-12 13:53:41 +00:00
https://www.google.com/accounts/o8/id?id=AItOawnsuhFUIfWNT-Q-C02FDaSQqceFDge5M9w
c0f31a3d44 2014-01-12 13:31:33 +00:00
https://www.google.com/accounts/o8/id?id=AItOawlzlNQbf6wBgv9j6-UqfpXcQyAYMF8S3t4
72bbafadb2 Added a comment 2014-01-12 09:19:32 +00:00
https://www.google.com/accounts/o8/id?id=AItOawnxp2XU8gIribhhGhGuYtU6eMMwHv5gUGI
579e2683bd Added a comment: obligatory "bah homebrew, yay pkgsrc" comment 2014-01-12 03:01:19 +00:00
Joey Hess
43e3f7a876 spelling 2014-01-11 22:05:56 -04:00
https://www.google.com/accounts/o8/id?id=AItOawkmBRpgz-elUViGzECtWiO9cRLUpxIuMmg
cd82ca3f72 Added a comment 2014-01-11 19:31:37 +00:00
Joey Hess
b25357f7d6 name update 2014-01-11 12:49:02 -04:00
https://www.google.com/accounts/o8/id?id=AItOawmkBwMWvNKZZCge_YqobCSILPMeK6xbFw8
cc765f47d2 removed 2014-01-11 15:43:35 +00:00
https://www.google.com/accounts/o8/id?id=AItOawmkBwMWvNKZZCge_YqobCSILPMeK6xbFw8
f7a7d30edc removed 2014-01-11 15:42:07 +00:00
https://www.google.com/accounts/o8/id?id=AItOawmkBwMWvNKZZCge_YqobCSILPMeK6xbFw8
fb44a4c779 Added a comment: Feature request 2014-01-11 15:41:48 +00:00
https://www.google.com/accounts/o8/id?id=AItOawmkBwMWvNKZZCge_YqobCSILPMeK6xbFw8
ee9e9febd9 Added a comment: Feature request 2014-01-11 15:41:30 +00:00
Renaud
5dae763be3 Added a comment 2014-01-11 14:29:08 +00:00
https://www.google.com/accounts/o8/id?id=AItOawmkBwMWvNKZZCge_YqobCSILPMeK6xbFw8
6ca2dbb9c1 2014-01-11 13:25:48 +00:00
https://launchpad.net/~timo-linux
9df3215ea4 Added a comment: How about automatically adding it as a submodule? 2014-01-11 10:30:58 +00:00
EskildHustvedt
8b34ee5406 Added a comment 2014-01-11 07:51:59 +00:00
Kyle Meyer
3ca4580b2e Add magit-annex to emacs integration tips 2014-01-10 18:38:57 -05:00
Joey Hess
f528910e8b name 2014-01-10 17:05:14 -04:00
Joey Hess
92e53acdac typo 2014-01-10 16:17:16 -04:00
Joey Hess
bafbda4435 typo 2014-01-10 15:55:28 -04:00
Joey Hess
1bc1f60532 devblog 2014-01-10 15:40:11 -04:00
Joey Hess
8e15fae706 foo 2014-01-10 15:30:09 -04:00
Joey Hess
45555b2deb Merge branch 'master' of ssh://git-annex.branchable.com 2014-01-10 15:24:46 -04:00
Joey Hess
63b1b5151b add thanks page 2014-01-10 15:23:58 -04:00
Joey Hess
80eeb04c10 remove fundraising campaign link 2014-01-10 14:02:12 -04:00
https://www.google.com/accounts/o8/id?id=AItOawnX1msQxnLoSeu7q-i-c9BWghonsN7Qmns
72080934fa 2014-01-10 16:22:20 +00:00
https://www.google.com/accounts/o8/id?id=AItOawmkBwMWvNKZZCge_YqobCSILPMeK6xbFw8
e617ae2211 2014-01-10 14:35:18 +00:00
https://www.google.com/accounts/o8/id?id=AItOawmkBwMWvNKZZCge_YqobCSILPMeK6xbFw8
bed4d17748 2014-01-10 14:34:55 +00:00
https://www.google.com/accounts/o8/id?id=AItOawmkBwMWvNKZZCge_YqobCSILPMeK6xbFw8
db0c847522 2014-01-10 14:34:11 +00:00
https://www.google.com/accounts/o8/id?id=AItOawmkBwMWvNKZZCge_YqobCSILPMeK6xbFw8
063aed263a 2014-01-10 14:33:59 +00:00
https://www.google.com/accounts/o8/id?id=AItOawmkBwMWvNKZZCge_YqobCSILPMeK6xbFw8
aad689a4bd 2014-01-10 14:33:41 +00:00
https://www.google.com/accounts/o8/id?id=AItOawmkBwMWvNKZZCge_YqobCSILPMeK6xbFw8
401139ff31 2014-01-10 14:33:30 +00:00
https://www.google.com/accounts/o8/id?id=AItOawmkBwMWvNKZZCge_YqobCSILPMeK6xbFw8
34b6082912 2014-01-10 14:33:01 +00:00
https://www.google.com/accounts/o8/id?id=AItOawmkBwMWvNKZZCge_YqobCSILPMeK6xbFw8
e916571a37 2014-01-10 14:32:34 +00:00
https://www.google.com/accounts/o8/id?id=AItOawmkBwMWvNKZZCge_YqobCSILPMeK6xbFw8
3998bec7c8 2014-01-10 14:32:10 +00:00