git-annex/doc/design/adjusted_branches.mdwn

96 lines
4 KiB
Text
Raw Normal View History

Consider two use cases:
1. Using a v6 repo with locked files on a crippled filesystem not
supporting symlinks. For the files to be usable, they need to be
unlocked. But, the user may not want to unlock the files everywhere,
just on this one crippled system.
2. [[todo/hide_missing_files]]
Both of these could be met by making `git-annex sync` maintain an adjusted
version of the HEAD branch. This could be a detached HEAD or a branch named
eg `adjusted/master`.
There would be a filter function. For #1 above it would simply convert all
annex symlinks to annex file pointers. For #2 above it would omit files
2016-02-09 16:41:45 +00:00
whose content is not currently in the annex. Sometimes, both #1 and #2 would
be wanted.
When merging changes from a remote, apply the filter to the head of the
2016-02-09 17:04:10 +00:00
remote branch, resulting in a commit with its changes. Merge in that
commit. Note that it's possible to control the metadata of the commit such
that 2 users who have the same adjusted branch checked out, both generate
the same commit sha.
When objects are added/removed from the annex, the associated file has to
be looked up, and the filter applied to it. So, dropping a file with the
missing file filter would cause it to be removed from the adjusted branch,
and receiving a file's content would cause it to appear in the adjusted
branch.
2016-02-09 17:04:10 +00:00
When committing changes, a commit is made as usual to the adjusted branch.
So, the user can `git commit` (or `git annex sync`). This does not touch
the original branch yet.
2016-02-09 17:04:10 +00:00
Then we need to get from that commit to one with the filters reversed,
which should be the same as if the adjusted branch had not been used.
2016-02-09 17:04:10 +00:00
Note that this commit should have as its parent the tip of the original
branch. So, the branches would look like this:
master adjusted/master
A ---filter----> A
| |
| A'
| |
| B'
B <--rev filter- |
| B
| ---filter----> |
| B''
Note particularly that B does not have A' in its history; the adjusted
branch is not evident from outside.
Also note that B gets merged back to the adjusted branch, re-applying the
filter. This will make other checkouts that are in the same adjusted branch
end up with the same B'' commit when they pull B.
It might be useful to have a post-commit hook that generates the
reverse-filtered commit and updates the original branch.
The new master branch can then be pushed out to remotes. The
adjusted/master branch is not pushed to remotes. `git-annex sync` should
automatically push master when adjusted/master is checked out.
## problems
Reversing filter #1 would mean only converting pointer files to
symlinks when the file was originally a symlink. This is problimatic when a
file is renamed. Would it be ok, if foo is renamed to bar and bar is
committed, for it to be committed as an unlocked file, even if foo was
originally locked?
Using `git checkout` when in an adjusted branch is problimatic, because a
non-adjusted branch would then be checked out. But, we can just say, if
you want to get into an adjusted branch, you have to run some command.
Tags are bit of a problem. If the user tags an ajusted branch, the tag
includes the local adjustments.
2016-02-09 17:04:10 +00:00
If the user refers to commit shas (in, eg commit messages), those won't be
visible to anyone else.
Running `git push` when in adjusted/master won't push anything
(with "matching" push strategy). Users may find that surprising.
Users of `git-annex sync` won't need to worry about it though.
2016-02-09 16:45:48 +00:00
## integration with view branches
Entering a view from an adjusted branch should probably carry the filtering
over into the creation/updating of the view branch.
Could go a step further, and implement view branches as another branch
adjusting filter, albeit an extreme one. This might improve view branches.
For example, it's not currently possible to update a view branch with
changes fetched from a remote, and this could get us there.