This commit is contained in:
Joey Hess 2021-08-18 12:38:55 -04:00
parent f0754a61f5
commit d67da1f4db
No known key found for this signature in database
GPG key ID: DB12DB0FF05F8F38

View file

@ -0,0 +1,12 @@
It should be possible for `git fetch foo` to work when foo is a special
remote with importtree=yes. This would have the same effect as running
`git-annex import --from foo`.
Also `git push foo` when it supports export, would have the same effect as
running `git annex export --to foo`
It would need `remote.foo.url` to be set to something like `annex::foo`
which would make fetch and pull run `git-remote-annex`. Currently, special
remote's don't get an url configured. (`annex::uuid` was my first thought,
but `annex::foo` avoids repeating the remote's uuid and git-annex can
look up the uuid from the name) --[[Joey]]