Merge branch 'master' into remoteconfig
This commit is contained in:
commit
34975bada8
2 changed files with 10 additions and 1 deletions
9
doc/devblog/day_616__remote_config_parsing.mdwn
Normal file
9
doc/devblog/day_616__remote_config_parsing.mdwn
Normal file
|
@ -0,0 +1,9 @@
|
|||
I'm in the middle of a big change to internals. Remotes have buried inside
|
||||
them a string-based configuration, and those settings are only parsed when
|
||||
they're used, so bad configuration is often ignored rather than being
|
||||
detected when the user inputs it. The parsing is moving to happen upfront.
|
||||
|
||||
This is something I could not have done when I first wrote git-annex,
|
||||
because the values that get parsed have many different types, so how can a
|
||||
single Remote data type contain those, whatever they are? Now I know how
|
||||
to use the Typeable class to do such things.
|
|
@ -18,7 +18,7 @@ and `git add`/`git commit -a` will add the large files to the annex and the
|
|||
small files to git.
|
||||
|
||||
Other commands that use the annex.largefiles configuration include
|
||||
`git annex import`, git annex addurl`, `git annex importfeed`, and
|
||||
`git annex import`, `git annex addurl`, `git annex importfeed`, and
|
||||
the assistant.
|
||||
|
||||
## examples
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue