Joey Hess
f79bd52132
improve docs of addunlocked re adjusted branches
2019-12-20 13:19:36 -04:00
Joey Hess
945be47b48
fix syntax of largefiles example
...
has always been wrong syntax!
2019-12-20 13:06:53 -04:00
Joey Hess
4acbb40112
git-annex config annex.largefiles
...
annex.largefiles can be configured by git-annex config, to more easily set
a default that will also be used by clones, without needing to shoehorn the
expression into the gitattributes file. The git config and gitattributes
override that.
Whenever something is added to git-annex config, we have to consider what
happens if a user puts a purposfully bad value in there. Or, if a new
git-annex adds some new value that an old git-annex can't parse.
In this case, a global annex.largefiles that can't be parsed currently
makes an error be thrown. That might not be ideal, but the gitattribute
behaves the same, and is almost equally repo-global.
Performance notes:
git-annex add and addurl construct a matcher once
and uses it for every file, so the added time penalty for reading the global
config log is minor. If the gitattributes annex.largefiles were deprecated,
git-annex add would get around 2% faster (excluding hashing), because
looking that up for each file is not fast. So this new way of setting
it is progress toward speeding up add.
git-annex smudge does need to load the log every time. As well as checking
the git attribute. Not ideal. Setting annex.gitaddtoannex=false avoids
both overheads.
2019-12-20 13:01:41 -04:00
Joey Hess
f07cb76640
improve docs of gitaddtoannex
2019-12-20 10:35:44 -04:00
Joey Hess
7d50e98646
thought
2019-12-19 16:44:08 -04:00
Joey Hess
e8651fbd09
comment
2019-12-19 13:39:08 -04:00
Joey Hess
37db1fa5a0
Merge branch 'bs'
2019-12-19 13:12:39 -04:00
Joey Hess
96a8b2d095
typo
2019-12-19 12:52:56 -04:00
Joey Hess
2e34516e6a
formatting
2019-12-19 12:52:12 -04:00
Joey Hess
09272507c1
comment
2019-12-19 12:50:34 -04:00
Joey Hess
67ae6ddecb
comment
2019-12-19 12:06:59 -04:00
Joey Hess
8bce94b8e2
Merge branch 'master' of ssh://git-annex.branchable.com
2019-12-18 17:11:48 -04:00
Joey Hess
7d85f9176f
devblog
2019-12-18 17:11:37 -04:00
Joey Hess
686791c4ed
more RawFilePath
...
Remove dup definitions and just use the RawFilePath one. </> etc are
enough faster that it's probably faster than building a String directly,
although I have not benchmarked.
2019-12-18 17:10:28 -04:00
Joey Hess
9e9def2dc0
todo
2019-12-18 16:11:18 -04:00
Joey Hess
7b7e0d8a86
wrap up
2019-12-18 15:19:19 -04:00
Joey Hess
7d9dff5b05
Merge branch 'master' into bs
...
and update changelog
2019-12-18 15:13:30 -04:00
Ilya_Shlyakhter
f2052f67fb
Added a comment: named pipes as destination files
2019-12-18 18:41:57 +00:00
Joey Hess
73c9a6e7d7
fixed
2019-12-18 14:29:23 -04:00
Joey Hess
e7ff0607f8
add news item for git-annex 7.20191218
2019-12-18 14:17:15 -04:00
Joey Hess
7fd5376334
inprogress: Support --key
2019-12-18 14:14:16 -04:00
Joey Hess
92c566f1b2
comment
2019-12-18 13:52:43 -04:00
Joey Hess
83a3b1bec4
Merge branch 'master' of ssh://git-annex.branchable.com
2019-12-18 13:48:48 -04:00
Joey Hess
c745fa2852
Merge branch 'master' into bs
2019-12-18 13:47:27 -04:00
Joey Hess
75c40279c1
use conversion functions from filepath-bytestring
...
Behavior should be the same, but I'd hope to eventually get rid of
most of Utility.FileSystemEncoding and this is a first step.
2019-12-18 13:42:43 -04:00
Joey Hess
0246ecbe94
update
2019-12-18 12:15:06 -04:00
Joey Hess
3d38ec9585
fix fileJournal
...
My ByteString rewrite oversimplified it, resulting in any _ in a journal
file turning into a / in the git-annex branch, which was often the wrong
filename, or sometimes (//) an invalid filename that git
refused to add.
2019-12-18 11:29:34 -04:00
mike@4e7a118bd37129091199ae0fb28184999c5f4725
448a69e6b8
Added a comment: repodata is outdated
2019-12-18 10:06:08 +00:00
spwhitton
53fdd34f79
add todo
2019-12-18 05:17:42 +00:00
https://christian.amsuess.com/chrysn
418890c5cb
ask for --key on git-annex-inprogress
2019-12-17 09:21:52 +00:00
https://christian.amsuess.com/chrysn
1653957166
Added a comment: Would be useful
2019-12-17 09:08:09 +00:00
kyle
d0e52837bc
2019-12-13 19:08:09 +00:00
Joey Hess
3a14bc8220
bug report
2019-12-12 22:06:42 -05:00
lykos@d125a37d89b1cfac20829f12911656c40cb70018
b962471c21
Added a comment
2019-12-12 21:11:58 +00:00
Joey Hess
8ed171c69f
more info for debugging
2019-12-11 17:12:13 -04:00
Joey Hess
7a41f94e84
add test case for bug
2019-12-11 17:09:50 -04:00
Joey Hess
2e4de42d55
bug in this branch
2019-12-11 17:08:26 -04:00
Joey Hess
4c0550222a
Merge branch 'master' of ssh://git-annex.branchable.com
2019-12-11 15:28:12 -04:00
Joey Hess
458d04e729
devblog
2019-12-11 15:27:38 -04:00
Joey Hess
c19211774f
use filepath-bytestring for annex object manipulations
...
git-annex find is now RawFilePath end to end, no string conversions.
So is git-annex get when it does not need to get anything.
So this is a major milestone on optimisation.
Benchmarks indicate around 30% speedup in both commands.
Probably many other performance improvements. All or nearly all places
where a file is statted use RawFilePath now.
2019-12-11 15:25:07 -04:00
Ilya_Shlyakhter
8b07ab553f
Added a comment: annex-verify
2019-12-11 18:13:48 +00:00
yarikoptic
0c4bb02877
Added a comment
2019-12-10 22:01:13 +00:00
MichaelC
df7bf60998
Added a comment: Does android adb special remote support MTP?
2019-12-10 21:23:31 +00:00
michael.clifford.com@7ca464bc0ba25fd5f2922deb8f531668727a66fb
80b0c9b514
removed
2019-12-10 21:02:23 +00:00
michael.clifford.com@7ca464bc0ba25fd5f2922deb8f531668727a66fb
3c4053e455
Added a comment: android special remote via mtp supported?
2019-12-10 21:01:53 +00:00
yarikoptic
0ff33261f2
initial issue report on leaking error msgs
2019-12-10 14:28:17 +00:00
https://christian.amsuess.com/chrysn
e07fbf936a
Added a comment: Key character set
2019-12-10 10:27:58 +00:00
Joey Hess
3d936e4343
update re state of bs branch
2019-12-06 15:13:36 -04:00
Joey Hess
4265344bc8
Merge branch 'master' of ssh://git-annex.branchable.com
2019-12-05 15:22:53 -04:00
Joey Hess
2960d840c6
devblog
2019-12-05 15:22:43 -04:00
Joey Hess
976b283ad5
update
2019-12-05 12:28:42 -04:00
jkrenzer
f7bdef6f0a
Added a comment: Great work! Thank you!
2019-12-05 12:10:48 +00:00
Ilya_Shlyakhter
a5fe4d0acf
Added a comment
2019-12-02 16:58:25 +00:00
Ilya_Shlyakhter
ac7a4c0f2f
Added a comment: dropping contents of old keys after migration
2019-12-02 16:48:48 +00:00
Ilya_Shlyakhter
68883cd80f
Added a comment
2019-12-02 16:02:47 +00:00
atrent
5c26c6f91a
Added a comment: P.P.S. i dropped all local copies
2019-12-02 08:03:01 +00:00
atrent
80fd7a1c2c
Added a comment: P.S. they are all SHA256E
2019-12-02 07:29:06 +00:00
atrent
06268b048e
Added a comment: can't find unused objects
2019-12-02 07:26:42 +00:00
nangal.vivek@08b8bc308cb03037792b7930fd839b9deec118df
54929389af
Added a comment: not able to find git-annex on openSUSE using zypper
2019-12-01 17:04:53 +00:00
atrent
6d66e6a377
Added a comment: migrating...
2019-11-30 22:30:06 +00:00
remyabel@65018526f3b5d4c0d36e4b970aacc540e590bf23
7475a647f3
removed
2019-11-30 21:41:23 +00:00
Ilya_Shlyakhter
f8f3bd8eb4
Added a comment: hardlinking identical files in annex may break invariants
2019-11-30 21:36:38 +00:00
Ilya_Shlyakhter
78c2f2a973
Added a comment
2019-11-30 21:11:53 +00:00
atrent
955042a0bf
Added a comment: no collisions
2019-11-30 20:37:00 +00:00
remyabel@65018526f3b5d4c0d36e4b970aacc540e590bf23
d4e5c8e677
2019-11-30 19:51:42 +00:00
Ilya_Shlyakhter
d4b700196b
added a hyperlink to key_format
2019-11-30 17:00:58 +00:00
Ilya_Shlyakhter
e9ff2381bd
Added a comment: same contents with different keys
2019-11-30 16:51:58 +00:00
atrent
d9b0481779
Added a comment: duplicate objects?
2019-11-30 14:04:17 +00:00
yarikoptic
dda81ca26f
Added a comment
2019-11-29 18:09:45 +00:00
yarikoptic
dd33f68982
refiled under dandi project - use case is https://gin.g-node.org
2019-11-29 18:06:14 +00:00
yarikoptic
9b5240ce83
Added a comment: reference original bug report
2019-11-29 17:58:29 +00:00
ply
8a3c543b3b
Added a comment
2019-11-28 11:18:50 +00:00
ply
822962fa5f
2019-11-28 11:10:51 +00:00
yarikoptic
01ee4995c5
Added a comment: related: shouldn't git annex try external remotes to download config?
2019-11-28 01:22:53 +00:00
yarikoptic
7752e73481
initial report on inability to use remotes with authentication cached by git
2019-11-28 01:01:49 +00:00
Ilya_Shlyakhter
7d3750682b
git-annex-cat
2019-11-27 18:16:35 +00:00
Ilya_Shlyakhter
9e642fd038
Added a comment: parallelization
2019-11-27 17:30:12 +00:00
Ilya_Shlyakhter
9f4b99a0e7
Added a comment: parallelization
2019-11-27 17:23:15 +00:00
Ilya_Shlyakhter
a27ffd3aec
Added a comment: representing paths
2019-11-27 15:08:41 +00:00
Ilya_Shlyakhter
e67d367b63
removed
2019-11-26 23:28:35 +00:00
anarcat
a98efcda3d
Added a comment: amazing!
2019-11-26 21:07:32 +00:00
Joey Hess
a2b566be29
Merge branch 'master' of ssh://git-annex.branchable.com
2019-11-26 16:12:53 -04:00
Joey Hess
ac1e481bfa
devblog
2019-11-26 16:12:14 -04:00
Joey Hess
3361edfb61
todo for bs branch
2019-11-26 16:11:55 -04:00
linnearight02@915958f850452a19de84ec14a765402d1f7ecdb0
41458cd060
Added a comment: Online Coursework Service
2019-11-26 11:11:07 +00:00
Ilya_Shlyakhter
dd58cfd8e1
Added a comment: use named pipes?
2019-11-25 16:45:27 +00:00
yarikoptic
70172712a5
initial idea on joint "get+checksum"
2019-11-25 03:26:23 +00:00
Ilya_Shlyakhter
1f035c0d66
Added a comment: even git mv -f seems to work correctly
2019-11-24 17:25:32 +00:00
Ilya_Shlyakhter
20da59f62f
Added a comment: moving unlocked file onto locked file isn't possible
2019-11-24 16:36:24 +00:00
Joey Hess
960f62a564
typo
2019-11-22 19:48:34 -04:00
Joey Hess
4cc6985494
todo
2019-11-22 19:47:53 -04:00
Joey Hess
6e3bccd4ac
updated profiling
2019-11-22 19:13:35 -04:00
Joey Hess
0e8c8edc90
improve hints about squelching output
2019-11-22 17:26:13 -04:00
Joey Hess
93789cbf40
close as dup
2019-11-22 12:11:04 -04:00
Joey Hess
cf2e23d39c
close not viable
2019-11-22 12:10:59 -04:00
Joey Hess
25ba8156bc
improve benchmark --databases
...
* benchmark: Changed --databases to take a parameter specifiying the size
of the database to benchmark.
* benchmark --databases: Display size of the populated database.
* benchmark --databases: Improve the "addAssociatedFile to (new)"
benchmark to really add new values, not overwriting old values.
2019-11-21 17:25:20 -04:00
xwvvvvwx
f39e5a4219
Added a comment
2019-11-21 17:32:31 +00:00
git-annex@17927e6dc041ab425c14217a97a685adf3ecf44f
d5ef7fec71
removed
2019-11-20 20:11:17 +00:00
git-annex@17927e6dc041ab425c14217a97a685adf3ecf44f
1f0b0fba0f
Added a comment: git add or git commit does not trigger assistant, but git rm does
2019-11-20 01:37:42 +00:00
git-annex@17927e6dc041ab425c14217a97a685adf3ecf44f
96008092eb
Added a comment: git add or git commit does not trigger assistant, but git rm does
2019-11-20 01:37:16 +00:00