summaryrefslogtreecommitdiff
path: root/doc/bugs/git_annex_copy_--fast_does_not_copy_files.mdwn
blob: 9b84c21fdb3223f15c8afc926e3e13bee4dfeece (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
Workflow:

    % git annex add
      # list new files
    % git commit -a -m "foo"
      # commit summary
    % git annex copy . --to remote --fast
      # all files listed with "ok"
    % git annex copy . --to remote
      # again, lists all files, _but the new ones are actually copied, this time_.

This happens no matter if I

    % git push

before copy or not.

PS: Arguably, a copy should push automagically.

> Whups, not supposed to be that fast! [[Fixed|done]], and
> you should run `git annex fsck --fast` on the repo you ran the
> copy in. --[[Joey]]