File: comment_6_7cb33d2416289f744828d8d9d24e9ef6._comment

package info (click to toggle)
git-annex 6.20170101-1%2Bdeb9u2
  • links: PTS
  • area: main
  • in suites: stretch
  • size: 50,088 kB
  • sloc: haskell: 53,116; sh: 1,582; ansic: 341; makefile: 292; perl: 144
file content (117 lines) | stat: -rw-r--r-- 2,694 bytes parent folder | download | duplicates (8)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
[[!comment format=mdwn
 username="anarcat"
 subject="comment 6"
 date="2015-08-19T18:13:22Z"
 content="""
right, i thought as well that the assistant wouldn't pickup some stuff...

but `sync --content` doesn't behave as expected either:

<pre>
[1081]anarcat@desktop008:b$ git annex list --allrepos
here
|origin
||web
|||bittorrent
||||anarcat@desktop008:~/test/g-a/a
|||||
XX__X bar
XX__X foo
X___X quuex
XX__X test
[1082]anarcat@desktop008:b$ git annex sync --content
commit  ok
pull origin
remote: Counting objects: 6, done.
remote: Compressing objects: 100% (5/5), done.
remote: Total 6 (delta 3), reused 0 (delta 0)
Unpacking objects: 100% (6/6), done.
From ../c
   29d3b7b..6afbb52  git-annex  -> origin/git-annex
ok
(merging origin/git-annex into git-annex...)
(recording state in git...)
(recovering from race...)
drop bar ok
drop foo ok
drop test ok
pull origin
ok
(recording state in git...)
push origin
Counting objects: 18, done.
Delta compression using up to 2 threads.
Compressing objects: 100% (14/14), done.
Writing objects: 100% (18/18), 1.47 KiB | 0 bytes/s, done.
Total 18 (delta 11), reused 0 (delta 0)
To ../c
   873a124..8390704  git-annex -> synced/git-annex
ok
[1083]anarcat@desktop008:b$ git annex list --allrepos
here
|origin
||web
|||bittorrent
||||anarcat@desktop008:~/test/g-a/a
|||||
_X__X bar
_X__X foo
X___X quuex
_X__X test
[1084]anarcat@desktop008:b$ git annex list --allrepos
here
|origin
||web
|||bittorrent
||||anarcat@desktop008:~/test/g-a/a
|||||
_X__X bar
_X__X foo
X___X quuex
_X__X test
[1084]anarcat@desktop008:b$ git annex wanted .
not inallgroup=backup
[1085]anarcat@desktop008:b$ cd ../a
[1086]anarcat@desktop008:a$ git annex list --allrepos
here
|origin
||web
|||bittorrent
||||
XX__ bar
XX__ foo
XX__ quuex
XX__ test
[1087]anarcat@desktop008:a$ git annex sync --content
commit  ok
pull origin
remote: Counting objects: 114, done.
remote: Compressing objects: 100% (94/94), done.
remote: Total 114 (delta 54), reused 0 (delta 0)
Receiving objects: 100% (114/114), 9.20 KiB | 0 bytes/s, done.
Resolving deltas: 100% (54/54), completed with 6 local objects.
From ../b
   de5f95e..158c3cc  git-annex  -> origin/git-annex
ok
(merging origin/git-annex into git-annex...)
pull origin
ok
[1088]anarcat@desktop008:a$ git annex list --allrepos
here
|origin
||web
|||bittorrent
||||anarcat@desktop008:~/test/g-a/c
|||||
X___X bar
X___X foo
XX___ quuex
X___X test
[1089]anarcat@desktop008:a$ git annex wanted .
groupwanted
[1090]anarcat@desktop008:a$ git annex group .
source
</pre>

files are still not removed from `a` and a few of them were dropped from `b`, but not all of them. but worse, one file still isn't sent to the backup server `c` at all.
"""]]