2012-12-12 19:36:00 +00:00
|
|
|
Normally, git-annex repositories consist of symlinks that are checked into
|
|
|
|
git, and in turn point at the content of large files that is stored in
|
2013-01-01 18:01:47 +00:00
|
|
|
`.git/annex/objects/`. Direct mode gets rid of the symlinks.
|
2012-12-12 19:36:00 +00:00
|
|
|
|
|
|
|
The advantage of direct mode is that you can access files directly,
|
|
|
|
including modifying them. The disadvantage is that most regular git
|
2013-11-05 18:24:28 +00:00
|
|
|
commands cannot be used in a direct mode repository.
|
2012-12-12 19:36:00 +00:00
|
|
|
|
2013-02-15 22:22:23 +00:00
|
|
|
Normally, git-annex repositories start off in indirect mode. With some
|
|
|
|
exceptions:
|
|
|
|
|
|
|
|
* Repositories created by the [[assistant]] use direct mode by default.
|
|
|
|
* Repositories on FAT and other less than stellar filesystems
|
|
|
|
that don't support things like symlinks will be automatically put
|
|
|
|
into direct mode.
|
2013-05-13 17:46:03 +00:00
|
|
|
* Windows always uses direct mode.
|
2013-01-01 18:01:47 +00:00
|
|
|
|
2012-12-13 19:44:56 +00:00
|
|
|
## enabling (and disabling) direct mode
|
2012-12-12 19:36:00 +00:00
|
|
|
|
2012-12-13 19:44:56 +00:00
|
|
|
Any repository can be converted to use direct mode at any time, and if you
|
|
|
|
decide not to use it, you can convert back to indirect mode just as easily.
|
|
|
|
Also, you can have one clone of a repository using direct mode, and another
|
2013-11-05 18:24:28 +00:00
|
|
|
using indirect mode.
|
2012-12-12 19:36:00 +00:00
|
|
|
|
2012-12-13 19:44:56 +00:00
|
|
|
To start using direct mode:
|
|
|
|
|
|
|
|
git annex direct
|
|
|
|
|
|
|
|
To stop using direct mode:
|
|
|
|
|
|
|
|
git annex indirect
|
|
|
|
|
2013-01-16 19:35:06 +00:00
|
|
|
## safety of using direct mode
|
|
|
|
|
2012-12-13 19:44:56 +00:00
|
|
|
With direct mode, you're operating without large swathes of git-annex's
|
2013-01-16 19:35:06 +00:00
|
|
|
carefully constructed safety net, which ensures that past versions of
|
2013-07-25 23:39:44 +00:00
|
|
|
files are preserved and can be accessed.
|
2013-01-16 19:35:06 +00:00
|
|
|
With direct mode, any file can be edited directly, or deleted at any time,
|
|
|
|
and there's no guarantee that the old version is backed up somewhere else.
|
|
|
|
|
|
|
|
So if you care about preserving the history of files, you're strongly
|
|
|
|
encouraged to tell git-annex that your direct mode repository cannot be
|
|
|
|
trusted to retain the content of a file. To do so:
|
2012-12-13 19:44:56 +00:00
|
|
|
|
|
|
|
git annex untrust .
|
2012-12-12 19:36:00 +00:00
|
|
|
|
2013-01-16 19:35:06 +00:00
|
|
|
On the other hand, if you only care about the current versions of files,
|
|
|
|
and are using git-annex with direct mode to keep files synchronised between
|
|
|
|
computers, and manage your files, this should not be a concern for you.
|
|
|
|
|
2012-12-12 19:36:00 +00:00
|
|
|
## use a direct mode repository
|
|
|
|
|
2013-01-06 21:22:02 +00:00
|
|
|
You can use most git-annex commands as usual in a direct mode repository.
|
2012-12-25 20:18:59 +00:00
|
|
|
|
2013-01-06 21:22:02 +00:00
|
|
|
Direct mode also works well with the git-annex assistant.
|
2012-12-12 19:36:00 +00:00
|
|
|
|
2013-08-23 17:55:18 +00:00
|
|
|
The most important command to use in a direct mode repository is `git annex
|
|
|
|
sync`. This will commit any files you have run `git annex add` on, as well
|
|
|
|
as files that were added earlier and have been modified. It will push
|
|
|
|
the changes to other repositories for `git annex sync` there to pick up,
|
|
|
|
and will pull and merge any changes made on other repositories into the
|
|
|
|
local repository.
|
|
|
|
|
2012-12-12 19:36:00 +00:00
|
|
|
## what doesn't work in direct mode
|
|
|
|
|
2013-11-05 18:24:28 +00:00
|
|
|
A very few git-annex commands don't work in direct mode, and will refuse
|
|
|
|
to do anything. For example, `git annex unlock` doesn't make sense in
|
|
|
|
direct mode.
|
|
|
|
|
|
|
|
As for git commands, direct mode prevents using any git command that would
|
|
|
|
modify or access the work tree. So you cannot `git commit` or `git pull`
|
2013-11-07 18:40:34 +00:00
|
|
|
(use `git annex sync` for both instead), or run `git status` (use `git
|
|
|
|
annex status` instead). These git commands will complain "fatal: This
|
|
|
|
operation must be run in a work tree".
|
2013-11-05 18:24:28 +00:00
|
|
|
|
|
|
|
The reason for this is that git doesn't understand how git-annex uses the
|
|
|
|
work tree in direct mode. Where git expects the symlinks that get checked
|
|
|
|
into git to be checked out in the work tree, direct mode instead replaces
|
|
|
|
them with the actual content of files, as managed by git-annex.
|
|
|
|
|
|
|
|
There are still lots of git commands you can use in direct mode. For
|
2013-11-07 18:40:34 +00:00
|
|
|
example, you can run `git log` on files, run `git push`, `git fetch`,
|
|
|
|
`git config`, `git remote add` etc.
|
2013-11-05 18:24:28 +00:00
|
|
|
|
|
|
|
## forcing git to use the work tree in direct mode
|
2012-12-12 19:36:00 +00:00
|
|
|
|
2013-11-05 18:24:28 +00:00
|
|
|
This is for experts only. You can lose data doing this, or check enormous
|
|
|
|
files directly into your git repository, and it's your fault if you do!
|
|
|
|
Also, there should be no good reason to need to do this, ever.
|
2012-12-12 19:36:00 +00:00
|
|
|
|
2013-11-05 18:24:28 +00:00
|
|
|
Ok, with the warnings out of the way, all you need to do to make any
|
|
|
|
git command access the work tree in direct mode is pass it
|
|
|
|
`-c core.bare=false`
|