aboutsummaryrefslogtreecommitdiff
path: root/doc/bugs/Tests_fail_on_Windows_10.mdwn
blob: 4df7bcbed731be7f0527f74d02eb90072f7f464b (plain)
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
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473
474
475
476
477
478
479
480
481
482
483
484
485
486
487
488
489
490
491
492
493
494
495
496
497
498
499
500
501
502
503
504
505
506
507
508
509
510
511
512
513
514
515
516
517
518
519
520
521
522
523
524
525
526
527
528
529
530
531
532
533
534
535
536
537
538
539
540
541
542
543
544
545
546
547
548
549
550
551
552
553
554
555
556
557
558
559
560
561
562
563
564
565
566
567
568
569
570
571
572
573
574
575
576
577
578
579
580
581
582
583
584
585
586
587
588
589
590
591
592
593
594
595
596
597
598
599
600
601
602
603
604
605
606
607
608
609
610
611
612
613
614
615
616
617
618
619
620
621
622
623
624
625
626
627
628
629
630
631
632
633
634
635
636
637
638
639
640
641
642
643
644
645
646
647
648
649
650
651
652
653
654
655
656
657
658
659
660
661
662
663
664
665
666
667
668
669
670
671
672
673
674
675
676
677
678
679
680
681
682
683
684
685
686
687
688
689
690
691
692
693
694
695
696
697
698
699
700
701
702
703
704
705
706
707
708
709
710
711
712
713
714
715
716
717
718
719
720
721
722
723
724
725
726
727
728
729
730
731
732
733
734
735
736
737
738
739
740
741
742
743
744
745
746
747
748
749
750
751
752
753
754
755
756
757
758
759
760
761
762
763
764
765
766
767
768
769
770
771
772
773
774
775
776
777
778
779
780
781
782
783
784
785
786
787
788
789
790
791
792
793
794
795
796
797
798
799
800
801
802
803
804
805
806
807
808
809
810
811
812
813
814
815
816
817
818
819
820
821
822
823
824
825
826
827
828
829
830
831
832
833
834
835
836
837
838
839
840
841
842
843
844
845
846
847
848
849
850
851
852
853
854
855
856
857
858
859
860
861
862
863
864
865
866
867
868
869
870
871
872
873
874
875
876
877
878
879
880
881
882
883
884
885
886
887
888
889
890
891
892
893
894
895
896
897
898
899
900
901
902
903
904
905
906
907
908
909
910
911
912
913
914
915
916
917
918
919
920
921
922
923
924
925
926
927
928
929
930
931
932
933
934
935
936
937
938
939
940
941
942
943
944
945
946
947
948
949
950
951
952
953
954
955
956
957
958
959
960
961
962
963
964
965
966
967
968
969
970
971
972
973
974
975
976
977
978
979
980
981
982
983
984
985
986
987
988
989
990
991
992
993
994
995
996
997
998
999
1000
1001
1002
1003
1004
1005
1006
1007
1008
1009
1010
1011
1012
1013
1014
1015
1016
1017
1018
1019
1020
1021
1022
1023
1024
1025
1026
1027
1028
1029
1030
1031
1032
1033
1034
1035
1036
1037
1038
1039
1040
1041
1042
1043
1044
1045
1046
1047
1048
1049
1050
1051
1052
1053
1054
1055
1056
1057
1058
1059
1060
1061
1062
1063
1064
1065
1066
1067
1068
1069
1070
1071
1072
1073
1074
1075
1076
1077
1078
1079
1080
1081
1082
1083
1084
1085
1086
1087
1088
1089
1090
1091
1092
1093
1094
1095
1096
1097
1098
1099
1100
1101
1102
1103
1104
1105
1106
1107
1108
1109
1110
1111
1112
1113
1114
1115
1116
1117
1118
1119
1120
1121
1122
1123
1124
1125
1126
1127
1128
1129
1130
1131
1132
1133
1134
1135
1136
1137
1138
1139
1140
1141
1142
1143
1144
1145
1146
1147
1148
1149
1150
1151
1152
1153
1154
1155
1156
1157
1158
1159
1160
1161
1162
1163
1164
1165
1166
1167
1168
1169
1170
1171
1172
1173
1174
1175
1176
1177
1178
1179
1180
1181
1182
1183
1184
1185
1186
1187
1188
1189
1190
1191
1192
1193
1194
1195
1196
1197
1198
1199
1200
1201
1202
1203
1204
1205
1206
1207
1208
1209
1210
1211
1212
1213
1214
1215
1216
1217
1218
1219
1220
1221
1222
1223
1224
1225
1226
1227
1228
1229
1230
1231
1232
1233
1234
1235
1236
1237
1238
1239
1240
1241
1242
1243
1244
1245
1246
1247
1248
1249
1250
1251
1252
1253
1254
1255
1256
1257
1258
1259
1260
1261
1262
1263
1264
1265
1266
1267
1268
1269
1270
1271
1272
1273
1274
1275
1276
1277
1278
1279
1280
1281
1282
1283
1284
1285
1286
1287
1288
1289
1290
1291
1292
1293
1294
1295
1296
1297
1298
1299
1300
1301
1302
1303
1304
1305
1306
1307
1308
1309
1310
1311
1312
1313
1314
1315
1316
1317
1318
1319
1320
1321
1322
1323
1324
1325
1326
1327
1328
1329
1330
1331
1332
1333
1334
1335
1336
1337
1338
1339
1340
1341
1342
1343
1344
1345
1346
1347
1348
1349
1350
1351
1352
1353
1354
1355
1356
1357
1358
1359
1360
1361
1362
1363
1364
1365
1366
1367
1368
1369
1370
1371
1372
1373
1374
1375
1376
1377
1378
1379
1380
1381
1382
1383
1384
1385
1386
1387
1388
1389
1390
1391
1392
1393
1394
1395
1396
1397
1398
1399
1400
1401
1402
1403
1404
1405
1406
1407
1408
1409
1410
1411
1412
1413
1414
1415
1416
1417
1418
1419
1420
1421
1422
1423
1424
1425
1426
1427
1428
1429
1430
1431
1432
1433
1434
1435
1436
1437
1438
1439
1440
1441
1442
1443
1444
1445
1446
1447
1448
1449
1450
1451
1452
1453
1454
1455
1456
1457
1458
1459
1460
1461
1462
1463
1464
1465
1466
1467
1468
1469
1470
1471
1472
1473
1474
1475
1476
1477
1478
1479
1480
1481
1482
1483
1484
1485
1486
1487
1488
1489
1490
1491
1492
1493
1494
1495
1496
1497
1498
1499
1500
1501
1502
1503
1504
1505
1506
1507
1508
1509
1510
1511
1512
1513
1514
1515
1516
1517
1518
1519
1520
1521
1522
1523
1524
1525
1526
1527
1528
1529
1530
1531
1532
1533
1534
1535
1536
1537
1538
1539
1540
1541
1542
1543
1544
1545
1546
1547
1548
1549
1550
1551
1552
1553
1554
1555
1556
1557
1558
1559
1560
1561
1562
1563
1564
1565
1566
1567
1568
1569
1570
1571
1572
1573
1574
1575
1576
1577
1578
1579
1580
1581
1582
1583
1584
1585
1586
1587
1588
1589
1590
1591
1592
1593
1594
1595
1596
1597
1598
1599
1600
1601
1602
1603
1604
1605
1606
1607
1608
1609
1610
1611
1612
1613
1614
1615
1616
1617
1618
1619
1620
1621
1622
1623
1624
1625
1626
1627
1628
1629
1630
1631
1632
1633
1634
1635
1636
1637
1638
1639
1640
1641
1642
1643
1644
1645
1646
1647
1648
1649
1650
1651
1652
1653
1654
1655
1656
1657
1658
1659
1660
1661
1662
1663
1664
1665
1666
1667
1668
1669
1670
1671
1672
1673
1674
1675
1676
1677
1678
1679
1680
1681
1682
1683
1684
1685
1686
1687
1688
1689
1690
1691
1692
1693
1694
1695
1696
1697
1698
1699
1700
1701
1702
1703
1704
1705
1706
1707
1708
1709
1710
1711
1712
1713
1714
1715
1716
1717
1718
1719
1720
1721
1722
1723
1724
1725
1726
1727
1728
1729
1730
1731
1732
1733
1734
1735
1736
1737
1738
1739
1740
1741
1742
1743
1744
1745
1746
1747
1748
1749
1750
1751
1752
1753
1754
1755
1756
1757
1758
1759
1760
1761
1762
1763
1764
1765
1766
1767
1768
1769
1770
1771
1772
1773
1774
1775
1776
1777
1778
1779
1780
1781
1782
1783
1784
1785
1786
1787
1788
1789
1790
1791
1792
1793
1794
1795
1796
1797
1798
1799
1800
1801
1802
1803
1804
1805
1806
1807
1808
1809
1810
1811
1812
1813
1814
1815
1816
1817
1818
1819
1820
1821
1822
1823
1824
1825
1826
1827
1828
1829
1830
1831
1832
1833
1834
1835
1836
1837
1838
1839
1840
1841
1842
1843
1844
1845
1846
1847
1848
1849
1850
1851
1852
1853
1854
1855
1856
1857
1858
1859
1860
1861
1862
1863
1864
1865
1866
1867
1868
1869
1870
1871
1872
1873
1874
1875
1876
1877
1878
1879
1880
1881
1882
1883
1884
1885
1886
1887
1888
1889
1890
1891
1892
1893
1894
1895
1896
1897
1898
1899
1900
1901
1902
1903
1904
1905
1906
1907
1908
1909
1910
1911
1912
1913
1914
1915
1916
1917
1918
1919
1920
1921
1922
1923
1924
1925
1926
1927
1928
1929
1930
1931
1932
1933
1934
1935
1936
1937
1938
1939
1940
1941
1942
1943
1944
1945
1946
1947
1948
1949
1950
1951
1952
1953
1954
1955
1956
1957
1958
1959
1960
1961
1962
1963
1964
1965
1966
1967
1968
1969
1970
1971
1972
1973
1974
1975
1976
1977
1978
1979
1980
1981
1982
1983
1984
1985
1986
1987
1988
1989
1990
1991
1992
1993
1994
1995
1996
1997
1998
1999
2000
2001
2002
2003
2004
### Please describe the problem.

Just tried to install git-annex on a friend's Windows machine to share a repo, but a lot of the tests failed. I have no idea how to debug things on Windows, maybe someone has an idea. AFAIK Windows has only crippled file systems, I tried with NTFS and ReFS.

It says "Permission denied. File is being used by another process". Maybe some kind of indexing? git annex assistant was turned off and it was the only test running.

### What steps will reproduce the problem?

Install git, install git-annex, run "git annex test"

### What version of git-annex are you using? On what operating system?

Windows 10. git 32 bit

git-annex version: 6.20170611-gb493ac8
build flags: Assistant Webapp Pairing Testsuite S3(multipartupload)(storageclasses) WebDAV ConcurrentOutput TorrentParser Feeds Quvi
dependency versions: aws-0.14.0 bloomfilter-2.0.1.0 cryptonite-0.7 DAV-1.3.1 feed-0.3.11.1 ghc-7.10.2 http-client-0.4.31.1 persistent-sqlite-2.2 torrent-10000.0.0 uuid-1.3.12 yesod
-1.4.3
key/value backends: SHA256E SHA256 SHA512E SHA512 SHA224E SHA224 SHA384E SHA384 SHA3_256E SHA3_256 SHA3_512E SHA3_512 SHA3_224E SHA3_224 SHA3_384E SHA3_384 SKEIN256E SKEIN256 SKEIN
512E SKEIN512 SHA1E SHA1 MD5E MD5 WORM URL
remote types: git gcrypt p2p S3 bup directory rsync web bittorrent webdav tahoe glacier ddar hook external

### Please provide any additional information below.

[[!format sh """

PS G:\test2> git annex test
Tests
  QuickCheck
    prop_isomorphic_deencode_git:                         OK (0.11s)
      +++ OK, passed 1000 tests.
    prop_isomorphic_deencode:                             OK (0.11s)
      +++ OK, passed 1000 tests.
    prop_isomorphic_fileKey:                              OK (0.04s)
      +++ OK, passed 1000 tests.
    prop_isomorphic_key_encode:                           OK (0.06s)
      +++ OK, passed 1000 tests.
    prop_isomorphic_key_decode:                           OK (0.04s)
      +++ OK, passed 1000 tests.
    prop_isomorphic_shellEscape:                          OK (0.05s)
      +++ OK, passed 1000 tests.
    prop_isomorphic_shellEscape_multiword:                OK (1.61s)
      +++ OK, passed 1000 tests.
    prop_isomorphic_configEscape:                         OK (0.04s)
      +++ OK, passed 1000 tests.
    prop_parse_show_Config:                               OK (0.11s)
      +++ OK, passed 1000 tests.
    prop_upFrom_basics:                                   OK (0.04s)
      +++ OK, passed 1000 tests.
    prop_relPathDirToFile_basics:                         OK (0.09s)
      +++ OK, passed 1000 tests.
    prop_relPathDirToFile_regressionTest:                 OK
      +++ OK, passed 1000 tests.
    prop_cost_sane:                                       OK
      +++ OK, passed 1000 tests.
    prop_matcher_sane:                                    OK
      +++ OK, passed 1000 tests.
    prop_HmacSha1WithCipher_sane:                         OK
      +++ OK, passed 1000 tests.
    prop_TimeStamp_sane:                                  OK
      +++ OK, passed 1000 tests.
    prop_addMapLog_sane:                                  OK
      +++ OK, passed 1000 tests.
    prop_verifiable_sane:                                 OK (0.14s)
      +++ OK, passed 1000 tests.
    prop_segment_regressionTest:                          OK
      +++ OK, passed 1000 tests.
    prop_read_write_transferinfo:                         OK (0.05s)
      +++ OK, passed 1000 tests.
    prop_read_show_inodecache:                            OK (0.02s)
      +++ OK, passed 1000 tests.
    prop_parse_show_log:                                  OK (2.05s)
      +++ OK, passed 1000 tests.
    prop_read_show_TrustLevel:                            OK
      +++ OK, passed 1000 tests.
    prop_parse_show_TrustLog:                             OK
      +++ OK, passed 1000 tests.
    prop_hashes_stable:                                   OK
      +++ OK, passed 1000 tests.
    prop_mac_stable:                                      OK
      +++ OK, passed 1000 tests.
    prop_schedule_roundtrips:                             OK (0.02s)
      +++ OK, passed 1000 tests.
    prop_past_sane:                                       OK
      +++ OK, passed 1000 tests.
    prop_duration_roundtrips:                             OK
      +++ OK, passed 1000 tests.
    prop_metadata_sane:                                   OK (6.90s)
      +++ OK, passed 1000 tests.
    prop_metadata_serialize:                              OK (6.37s)
      +++ OK, passed 1000 tests.
    prop_branchView_legal:                                OK (10.22s)
      +++ OK, passed 1000 tests.
    prop_viewPath_roundtrips:                             OK (0.11s)
      +++ OK, passed 1000 tests.
    prop_view_roundtrips:                                 OK (1.28s)
      +++ OK, passed 1000 tests.
    prop_viewedFile_rountrips:                            OK (0.04s)
      +++ OK, passed 1000 tests.
    prop_b64_roundtrips:                                  OK
      +++ OK, passed 1000 tests.
    prop_standardGroups_parse:                            OKInit Tests
  init:
      +++ OK, passed 1000 tests.
  Unit Tests v6 unlocked
    add dup:                                                Detected a filesystem without fifo support.
  Disabling ssh connection caching.
  Detected a crippled filesystem.
  Entering an adjusted branch where files are unlocked as this filesystem does not support locked files.
Switched to branch 'adjusted/master(unlocked)'
OK (1.32s)
  add:  OK (1.12s)

All 2 tests passed (2.44s)
  Detected a filesystem without fifo support.
  Disabling ssh connection caching.
  Detected a crippled filesystem.
OK (1.33s)
    add extras:                                             Detected a filesystem without fifo support.
  Disabling ssh connection caching.
  Detected a crippled filesystem.
OK (1.46s)
    shared clone:                                           Detected a filesystem without fifo support.
  Disabling ssh connection caching.
  Detected a crippled filesystem.
OK (0.94s)
    log:                                                    Detected a filesystem without fifo support.
  Disabling ssh connection caching.
  Detected a crippled filesystem.
+ Sun, 30 Jul 2017 02:07:24 Mitteleurop├Áische Sommerzeit foo | ccfb8066-6f33-425e-9459-7fda7a8b9117 -- test repo [origi
n]
OK (0.94s)
    import:                                                 Detected a filesystem without fifo support.
  Disabling ssh connection caching.
  Detected a crippled filesystem.
git-annex: MoveFileEx "C:\\Users\\<username>\\AppData\\Local\\Temp\\importtest.0\\import1\\f" "import1\\f": permission denie
d (Der Prozess kann nicht auf die Datei zugreifen, da sie von einem anderen Prozess verwendet wird.)
FAIL (4.98s)
      import failed
    reinject:                                               Detected a filesystem without fifo support.
  Disabling ssh connection caching.
  Detected a crippled filesystem.
  Detected a filesystem without fifo support.
  Disabling ssh connection caching.
  Detected a crippled filesystem.
git-annex: MoveFileEx "tmpfile" ".git\\annex\\objects\\ecb\\0b5\\SHA1-s25--ee80d2cec57a3810db83b80e1b320df3a3721ffa\\SHA
1-s25--ee80d2cec57a3810db83b80e1b320df3a3721ffa": permission denied (Der Prozess kann nicht auf die Datei zugreifen, da
sie von einem anderen Prozess verwendet wird.)
FAIL (3.55s)
      reinject failed
    unannex (no copy):                                      Detected a filesystem without fifo support.
  Disabling ssh connection caching.
  Detected a crippled filesystem.
OK (1.20s)
    unannex (with copy):                                    Detected a filesystem without fifo support.
  Disabling ssh connection caching.
  Detected a crippled filesystem.
OK (1.51s)
    drop (no remote):                                       Detected a filesystem without fifo support.
  Disabling ssh connection caching.
  Detected a crippled filesystem.
OK (1.81s)
    drop (with remote):                                     Detected a filesystem without fifo support.
  Disabling ssh connection caching.
  Detected a crippled filesystem.
numcopies 2 ok
(recording state in git...)
numcopies 1 ok
(recording state in git...)
OK (2.31s)
    drop (untrusted remote):                                Detected a filesystem without fifo support.
  Disabling ssh connection caching.
  Detected a crippled filesystem.
OK (1.73s)
    get:                                                    Detected a filesystem without fifo support.
  Disabling ssh connection caching.
  Detected a crippled filesystem.
OK (1.86s)
    get (ssh remote):                                       Detected a filesystem without fifo support.
  Disabling ssh connection caching.
  Detected a crippled filesystem.
Der Befehl "git-annex-shell" ist entweder falsch geschrieben oder
konnte nicht gefunden werden.
rsync: safe_read failed to read 4 bytes [Receiver]: Connection reset by peer (104)
rsync error: error in rsync protocol data stream (code 12) at io.c(276) [Receiver=3.1.1]
FAIL (1.21s)
      get of file failed
    move:                                                   Detected a filesystem without fifo support.
  Disabling ssh connection caching.
  Detected a crippled filesystem.
OK (3.05s)
    move (ssh remote):                                      Detected a filesystem without fifo support.
  Disabling ssh connection caching.
  Detected a crippled filesystem.
Der Befehl "git-annex-shell" ist entweder falsch geschrieben oder
konnte nicht gefunden werden.
rsync: safe_read failed to read 4 bytes [Receiver]: Connection reset by peer (104)
rsync error: error in rsync protocol data stream (code 12) at io.c(276) [Receiver=3.1.1]
FAIL (1.19s)
      move --from of file failed
    copy:                                                   Detected a filesystem without fifo support.
  Disabling ssh connection caching.
  Detected a crippled filesystem.
OK (2.56s)
    lock:                                                   Detected a filesystem without fifo support.
  Disabling ssh connection caching.
  Detected a crippled filesystem.
  Detected a filesystem without fifo support.
  Disabling ssh connection caching.
  Detected a crippled filesystem.
OK (3.44s)
    lock (v6 --force):                                      Detected a filesystem without fifo support.
  Disabling ssh connection caching.
  Detected a crippled filesystem.
  Detected a filesystem without fifo support.
  Disabling ssh connection caching.
  Detected a crippled filesystem.
FAIL
      Exception: removeDirectoryRecursive: does not exist (Das System kann die angegebene Datei nicht finden.)
    edit (no pre-commit):                                   Detected a filesystem without fifo support.
  Disabling ssh connection caching.
  Detected a crippled filesystem.
  Detected a filesystem without fifo support.
  Disabling ssh connection caching.
  Detected a crippled filesystem.
OK (2.22s)
    edit (pre-commit):                                      Detected a filesystem without fifo support.
  Disabling ssh connection caching.
  Detected a crippled filesystem.
  Detected a filesystem without fifo support.
  Disabling ssh connection caching.
  Detected a crippled filesystem.
OK (2.07s)
    partial commit:                                         Detected a filesystem without fifo support.
  Disabling ssh connection caching.
  Detected a crippled filesystem.
  Detected a filesystem without fifo support.
  Disabling ssh connection caching.
  Detected a crippled filesystem.
OK (2.03s)
    fix:                                                    Detected a filesystem without fifo support.
  Disabling ssh connection caching.
  Detected a crippled filesystem.
  Detected a filesystem without fifo support.
  Disabling ssh connection caching.
  Detected a crippled filesystem.
OK (1.11s)
    direct:                                                 Detected a filesystem without fifo support.
  Disabling ssh connection caching.
  Detected a crippled filesystem.
  Detected a filesystem without fifo support.
  Disabling ssh connection caching.
  Detected a crippled filesystem.
OK (1.57s)
    trust:                                                  Detected a filesystem without fifo support.
  Disabling ssh connection caching.
  Detected a crippled filesystem.
OK (2.59s)
    fsck (basics):                                          Detected a filesystem without fifo support.
  Disabling ssh connection caching.
  Detected a crippled filesystem.
numcopies 2 ok
(recording state in git...)
  Only 1 of 2 trustworthy copies exist of foo
  Back it up with git-annex copy.
  Only 1 of 2 trustworthy copies exist of sha1foo
  Back it up with git-annex copy.
numcopies 1 ok
(recording state in git...)
OK (3.09s)
    fsck (bare):                                            Detected a filesystem without fifo support.
  Disabling ssh connection caching.
  Detected a crippled filesystem.
OK (1.45s)
    fsck (local untrusted):                                 Detected a filesystem without fifo support.
  Disabling ssh connection caching.
  Detected a crippled filesystem.
  Only these untrusted locations may have copies of foo
        3a088e2e-d913-45c7-a6f4-187c6c23d52d -- .t\tmprepo26 [here]
        ccfb8066-6f33-425e-9459-7fda7a8b9117 -- test repo [origin]
  Back it up to trusted locations with git-annex copy.
  Only these untrusted locations may have copies of sha1foo
        ccfb8066-6f33-425e-9459-7fda7a8b9117 -- test repo [origin]
  Back it up to trusted locations with git-annex copy.
OK (2.05s)
    fsck (remote untrusted):                                Detected a filesystem without fifo support.
  Disabling ssh connection caching.
  Detected a crippled filesystem.
numcopies 2 ok
(recording state in git...)
  Only 1 of 2 trustworthy copies exist of foo
  Back it up with git-annex copy.
  The following untrusted locations may also have copies:
        ccfb8066-6f33-425e-9459-7fda7a8b9117 -- test repo [origin]
  Only 1 of 2 trustworthy copies exist of sha1foo
  Back it up with git-annex copy.
  The following untrusted locations may also have copies:
        ccfb8066-6f33-425e-9459-7fda7a8b9117 -- test repo [origin]
OK (2.21s)
    fsck --from remote:                                     Detected a filesystem without fifo support.
  Disabling ssh connection caching.
  Detected a crippled filesystem.
OK (1.38s)
    migrate:                                                Detected a filesystem without fifo support.
  Disabling ssh connection caching.
  Detected a crippled filesystem.
  Detected a filesystem without fifo support.
  Disabling ssh connection caching.
  Detected a crippled filesystem.
  MoveFileEx ".git\\annex\\misctmp\\t.0\\t" ".git\\annex\\objects\\6cd\\e82\\SHA256E-s20--e394a389d787383843decc5d3d99b6
d184ffa5fddeec23b911f9ee7fc8b9ea77\\SHA256E-s20--e394a389d787383843decc5d3d99b6d184ffa5fddeec23b911f9ee7fc8b9ea77": perm
ission denied (Zugriff verweigert)
FAIL (2.41s)
      migrate annexedfile failed
    migrate (via gitattributes):                            Detected a filesystem without fifo support.
  Disabling ssh connection caching.
  Detected a crippled filesystem.
  Detected a filesystem without fifo support.
  Disabling ssh connection caching.
  Detected a crippled filesystem.
  MoveFileEx ".git\\annex\\misctmp\\t.0\\t" ".git\\annex\\objects\\6cd\\e82\\SHA256E-s20--e394a389d787383843decc5d3d99b6
d184ffa5fddeec23b911f9ee7fc8b9ea77\\SHA256E-s20--e394a389d787383843decc5d3d99b6d184ffa5fddeec23b911f9ee7fc8b9ea77": perm
ission denied (Zugriff verweigert)
FAIL (2.56s)
      migrate annexedfile failed
    unused:                                                 Detected a filesystem without fifo support.
  Disabling ssh connection caching.
  Detected a crippled filesystem.
  Detected a filesystem without fifo support.
  Disabling ssh connection caching.
  Detected a crippled filesystem.
  bloomfilter capacity too large to represent; falling back to sane value
Unlink of file 'foo' failed. Should I try again? (y/n) y
Unlink of file 'foo' failed. Should I try again? (y/n) y
Unlink of file 'foo' failed. Should I try again? (y/n) y
Unlink of file 'foo' failed. Should I try again? (y/n) y
Unlink of file 'foo' failed. Should I try again? (y/n) y
Unlink of file 'foo' failed. Should I try again? (y/n) y
Unlink of file 'foo' failed. Should I try again? (y/n) n
fatal: git rm: 'foo': Invalid argument
FAIL (129.88s)
      git rm failed
    describe:                                               Detected a filesystem without fifo support.
  Disabling ssh connection caching.
  Detected a crippled filesystem.
OK (1.83s)
    find:                                                   Detected a filesystem without fifo support.
  Disabling ssh connection caching.
  Detected a crippled filesystem.
foo
foo
sha1foo
sha1foo
dir/subfile
OK (2.89s)
    merge:                                                  Detected a filesystem without fifo support.
  Disabling ssh connection caching.
  Detected a crippled filesystem.
OK (0.96s)
    info:                                                   Detected a filesystem without fifo support.
  Disabling ssh connection caching.
  Detected a crippled filesystem.
  bloomfilter capacity too large to represent; falling back to sane value
  bloomfilter capacity too large to represent; falling back to sane value
{"transfers in progress":[],"local annex keys":0,"available local disk space":"840.12 gigabytes (+1 megabyte reserved)",
"annexed files in working tree":2,"file":null,"trusted repositories":[],"size of annexed files in working tree":"45 byte
s","local annex size":"0 bytes","command":"info","untrusted repositories":[],"semitrusted repositories":[{"description":
"web","here":false,"uuid":"00000000-0000-0000-0000-000000000001"},{"description":"bittorrent","here":false,"uuid":"00000
000-0000-0000-0000-000000000002"},{"description":".t\\tmprepo35","here":true,"uuid":"1493e4c5-cbc7-4571-9c87-696e2a91861
b"},{"description":"test repo [origin]","here":false,"uuid":"ccfb8066-6f33-425e-9459-7fda7a8b9117"}],"success":true,"blo
om filter size":"32 mebibytes (0% full)","backend usage":{"SHA1":1,"SHA256E":1},"repository mode":"indirect"}
OK (1.13s)
    version:                                                Detected a filesystem without fifo support.
  Disabling ssh connection caching.
  Detected a crippled filesystem.
git-annex version: 6.20170611-gb493ac8
build flags: Assistant Webapp Pairing Testsuite S3(multipartupload)(storageclasses) WebDAV ConcurrentOutput TorrentParse
r Feeds Quvi
dependency versions: aws-0.14.0 bloomfilter-2.0.1.0 cryptonite-0.7 DAV-1.3.1 feed-0.3.11.1 ghc-7.10.2 http-client-0.4.31
.1 persistent-sqlite-2.2 torrent-10000.0.0 uuid-1.3.12 yesod-1.4.3
key/value backends: SHA256E SHA256 SHA512E SHA512 SHA224E SHA224 SHA384E SHA384 SHA3_256E SHA3_256 SHA3_512E SHA3_512 SH
A3_224E SHA3_224 SHA3_384E SHA3_384 SKEIN256E SKEIN256 SKEIN512E SKEIN512 SHA1E SHA1 MD5E MD5 WORM URL
remote types: git gcrypt p2p S3 bup directory rsync web bittorrent webdav tahoe glacier ddar hook external
local repository version: 6
supported repository versions: 3 5 6
upgrade supported from repository versions: 2 3 4 5
operating system: mingw32 i386
OK (0.97s)
    sync:                                                   Detected a filesystem without fifo support.
  Disabling ssh connection caching.
  Detected a crippled filesystem.
On branch adjusted/master(unlocked)
Your branch is up-to-date with 'origin/adjusted/master(unlocked)'.
nothing to commit, working tree clean
Counting objects: 10, done.
Delta compression using up to 4 threads.
Compressing objects: 100% (9/9), done.
Writing objects: 100% (10/10), 1.11 KiB | 0 bytes/s, done.
Total 10 (delta 2), reused 0 (delta 0)
To G:/test2/.t\repo
 * [new branch]      git-annex -> synced/git-annex
 * [new branch]      master -> synced/master
foo
wanted . ok
(recording state in git...)
On branch adjusted/master(unlocked)
Your branch and 'origin/adjusted/master(unlocked)' have diverged,
and have 2 and 2 different commits each, respectively.
  (use "git pull" to merge the remote branch into yours)
nothing to commit, working tree clean
Counting objects: 8, done.
Delta compression using up to 4 threads.
Compressing objects: 100% (7/7), done.
Writing objects: 100% (8/8), 764 bytes | 0 bytes/s, done.
Total 8 (delta 2), reused 0 (delta 0)
To G:/test2/.t\repo
   d94bd7a..4751eeb  git-annex -> synced/git-annex
foo
On branch adjusted/master(unlocked)
Your branch and 'origin/adjusted/master(unlocked)' have diverged,
and have 2 and 2 different commits each, respectively.
  (use "git pull" to merge the remote branch into yours)
nothing to commit, working tree clean
Counting objects: 5, done.
Delta compression using up to 4 threads.
Compressing objects: 100% (4/4), done.
Writing objects: 100% (5/5), 522 bytes | 0 bytes/s, done.
Total 5 (delta 1), reused 0 (delta 0)
To G:/test2/.t\repo
   4751eeb..68a9352  git-annex -> synced/git-annex
OK (4.66s)
    union merge regression:                                 Detected a filesystem without fifo support.
  Disabling ssh connection caching.
  Detected a crippled filesystem.
  Detected a filesystem without fifo support.
  Disabling ssh connection caching.
  Detected a crippled filesystem.
  Detected a filesystem without fifo support.
  Disabling ssh connection caching.
  Detected a crippled filesystem.
On branch adjusted/master(unlocked)
nothing to commit, working tree clean
remote: Counting objects: 11, done.
remote: Compressing objects: 100% (9/9), done.
remote: Total 11 (delta 3), reused 0 (delta 0)
Unpacking objects: 100% (11/11), done.
From ../../.t\tmprepo39
 * [new branch]      adjusted/master(unlocked) -> r2/adjusted/master(unlocked)
 * [new branch]      git-annex                 -> r2/git-annex
 * [new branch]      master                    -> r2/master
remote: Counting objects: 9, done.
remote: Compressing objects: 100% (8/8), done.
remote: Total 9 (delta 3), reused 0 (delta 0)
Unpacking objects: 100% (9/9), done.
From ../../.t\tmprepo38
 * [new branch]      adjusted/master(unlocked) -> r1/adjusted/master(unlocked)
 * [new branch]      git-annex                 -> r1/git-annex
 * [new branch]      master                    -> r1/master
Counting objects: 30, done.
Delta compression using up to 4 threads.
Compressing objects: 100% (26/26), done.
Writing objects: 100% (30/30), 2.87 KiB | 0 bytes/s, done.
Total 30 (delta 12), reused 0 (delta 0)
To ../../.t\tmprepo39
 * [new branch]      git-annex -> synced/git-annex
 * [new branch]      master -> synced/master
To ../../.t\tmprepo39
 ! [rejected]        master -> master (non-fast-forward)
error: failed to push some refs to '../../.t\tmprepo39'
hint: Updates were rejected because a pushed branch tip is behind its remote
hint: counterpart. Check out this branch and integrate the remote changes
hint: (e.g. 'git pull ...') before pushing again.
hint: See the 'Note about fast-forwards' in 'git push --help' for details.
Counting objects: 30, done.
Delta compression using up to 4 threads.
Compressing objects: 100% (26/26), done.
Writing objects: 100% (30/30), 2.83 KiB | 0 bytes/s, done.
Total 30 (delta 13), reused 0 (delta 0)
To ../../.t\tmprepo38
 * [new branch]      git-annex -> synced/git-annex
 * [new branch]      master -> synced/master
To ../../.t\tmprepo38
 ! [rejected]        master -> master (non-fast-forward)
error: failed to push some refs to '../../.t\tmprepo38'
hint: Updates were rejected because a pushed branch tip is behind its remote
hint: counterpart. Check out this branch and integrate the remote changes
hint: (e.g. 'git pull ...') before pushing again.
hint: See the 'Note about fast-forwards' in 'git push --help' for details.
On branch adjusted/master(unlocked)
nothing to commit, working tree clean
Auto-merging sha1foo
CONFLICT (add/add): Merge conflict in sha1foo
Auto-merging foo
CONFLICT (add/add): Merge conflict in foo
Automatic merge failed; fix conflicts and then commit the result.
[detached HEAD cd6b062] git-annex automatic merge conflict fix
Updating 75480f7..672d8f6
error: Your local changes to the following files would be overwritten by merge:
        foo
Please commit your changes or stash them before you merge.
Aborting
remote: Counting objects: 4, done.
remote: Compressing objects: 100% (4/4), done.
remote: Total 4 (delta 0), reused 0 (delta 0)
Unpacking objects: 100% (4/4), done.
From ../../.t\tmprepo40
 * [new branch]      adjusted/master(unlocked) -> r3/adjusted/master(unlocked)
 * [new branch]      git-annex                 -> r3/git-annex
 * [new branch]      master                    -> r3/master
 * [new branch]      synced/master             -> r3/synced/master
From ../../.t\tmprepo38
 * [new branch]      adjusted/master(unlocked) -> r1/adjusted/master(unlocked)
 * [new branch]      git-annex                 -> r1/git-annex
 * [new branch]      master                    -> r1/master
 * [new branch]      synced/git-annex          -> r1/synced/git-annex
 * [new branch]      synced/master             -> r1/synced/master
Merge made by the 'recursive' strategy.
 bar.c   | 1 -
 foo     | 1 -
 sha1foo | 1 -
 3 files changed, 3 deletions(-)
 delete mode 100644 bar.c
 delete mode 120000 foo
 delete mode 120000 sha1foo
Updating 75480f7..2773470
error: Your local changes to the following files would be overwritten by merge:
        foo
Please commit your changes or stash them before you merge.
Aborting
Counting objects: 9, done.
Delta compression using up to 4 threads.
Compressing objects: 100% (9/9), done.
Writing objects: 100% (9/9), 954 bytes | 0 bytes/s, done.
Total 9 (delta 5), reused 0 (delta 0)
To ../../.t\tmprepo40
   9588f09..b8df995  master -> synced/master
 * [new branch]      git-annex -> synced/git-annex
Counting objects: 9, done.
Delta compression using up to 4 threads.
Compressing objects: 100% (9/9), done.
Writing objects: 100% (9/9), 954 bytes | 0 bytes/s, done.
Total 9 (delta 5), reused 0 (delta 0)
To ../../.t\tmprepo38
   9588f09..b8df995  master -> synced/master
FAIL (8.41s)
      sync failed in .t\tmprepo39
    adjusted branch merge regression:                       Detected a filesystem without fifo support.
  Disabling ssh connection caching.
  Detected a crippled filesystem.
  Detected a filesystem without fifo support.
  Disabling ssh connection caching.
  Detected a crippled filesystem.
Already on 'adjusted/master(unlocked)'
M       foo
[adjusted/master(unlocked) 22ff3ea] git-annex in .t\tmprepo41
 2 files changed, 2 insertions(+), 1 deletion(-)
 create mode 100644 conflictor
remote: Counting objects: 11, done.
remote: Compressing objects: 100% (10/10), done.
remote: Total 11 (delta 3), reused 0 (delta 0)
Unpacking objects: 100% (11/11), done.
From ../../.t\tmprepo42
 * [new branch]      adjusted/master(unlocked) -> r2/adjusted/master(unlocked)
 * [new branch]      git-annex                 -> r2/git-annex
 * [new branch]      master                    -> r2/master
Counting objects: 18, done.
Delta compression using up to 4 threads.
Compressing objects: 100% (16/16), done.
Writing objects: 100% (18/18), 1.72 KiB | 0 bytes/s, done.
Total 18 (delta 7), reused 0 (delta 0)
To ../../.t\tmprepo42
 * [new branch]      git-annex -> synced/git-annex
 * [new branch]      master -> synced/master
Already on 'adjusted/master(unlocked)'
D       conflictor
M       foo
[adjusted/master(unlocked) b0c16b3] git-annex in .t\tmprepo42
 2 files changed, 2 insertions(+), 2 deletions(-)
remote: Counting objects: 5, done.
remote: Compressing objects: 100% (5/5), done.
remote: Total 5 (delta 0), reused 0 (delta 0)
Unpacking objects: 100% (5/5), done.
From ../../.t\tmprepo41
 * [new branch]      adjusted/master(unlocked) -> r1/adjusted/master(unlocked)
 * [new branch]      git-annex                 -> r1/git-annex
 * [new branch]      master                    -> r1/master
 * [new branch]      synced/master             -> r1/synced/master
Counting objects: 9, done.
Delta compression using up to 4 threads.
Compressing objects: 100% (8/8), done.
Writing objects: 100% (9/9), 806 bytes | 0 bytes/s, done.
Total 9 (delta 4), reused 0 (delta 0)
To ../../.t\tmprepo41
   6f2f330..2f4c792  master -> synced/master
 * [new branch]      git-annex -> synced/git-annex
On branch adjusted/master(unlocked)
nothing to commit, working tree clean
Updating 6f2f330..2f4c792
Fast-forward
 conflictor | 2 +-
 foo        | 2 +-
 2 files changed, 2 insertions(+), 2 deletions(-)
Updating a6b8bec..222127f
Fast-forward
 conflictor | 2 +-
 foo        | 2 +-
 2 files changed, 2 insertions(+), 2 deletions(-)
remote: Counting objects: 5, done.
remote: Compressing objects: 100% (5/5), done.
remote: Total 5 (delta 0), reused 0 (delta 0)
Unpacking objects: 100% (5/5), done.
From ../../.t\tmprepo42
 + 75480f7...62cd69f adjusted/master(unlocked) -> r2/adjusted/master(unlocked)  (forced update)
   14acc87..16ac4ee  git-annex                 -> r2/git-annex
   6f2f330..2f4c792  master                    -> r2/master
   6f2f330..2f4c792  synced/master             -> r2/synced/master
On branch adjusted/master(unlocked)
nothing to commit, working tree clean
remote: Counting objects: 5, done.
remote: Compressing objects: 100% (5/5), done.
remote: Total 5 (delta 0), reused 0 (delta 0)
Unpacking objects: 100% (5/5), done.
From ../../.t\tmprepo41
 + a6b8bec...29bc72f adjusted/master(unlocked) -> r1/adjusted/master(unlocked)  (forced update)
OK (7.19s)
    adjusted branch subtree regression:                     Detected a filesystem without fifo support.
  Disabling ssh connection caching.
  Detected a crippled filesystem.
Already on 'adjusted/master(unlocked)'
M       foo
[adjusted/master(unlocked) dd3d179] git-annex in .t\tmprepo43
 2 files changed, 2 insertions(+), 1 deletion(-)
 create mode 100644 a/b/c/d
[adjusted/master(unlocked) 543a653] git-annex in .t\tmprepo43
 1 file changed, 1 insertion(+)
 create mode 100644 a/b/x/y
Switched to branch 'master'
OK (2.58s)
    conflict resolution:                                    Detected a filesystem without fifo support.
  Disabling ssh connection caching.
  Detected a crippled filesystem.
  Detected a filesystem without fifo support.
  Disabling ssh connection caching.
  Detected a crippled filesystem.
[adjusted/master(unlocked) 5cb38e6] git-annex in .t\tmprepo44
 1 file changed, 1 insertion(+)
 create mode 100644 conflictor
[adjusted/master(unlocked) dbe9298] git-annex in .t\tmprepo45
 1 file changed, 1 insertion(+)
 create mode 100644 conflictor
On branch adjusted/master(unlocked)
nothing to commit, working tree clean
remote: Counting objects: 23, done.
remote: Compressing objects: 100% (21/21), done.
remote: Total 23 (delta 5), reused 0 (delta 0)
Unpacking objects: 100% (23/23), done.
From ../../.t\tmprepo45
 * [new branch]      adjusted/master(unlocked) -> r2/adjusted/master(unlocked)
 * [new branch]      git-annex                 -> r2/git-annex
 * [new branch]      master                    -> r2/master
 * [new branch]      synced/master             -> r2/synced/master
Auto-merging sha1foo
CONFLICT (add/add): Merge conflict in sha1foo
Auto-merging foo
CONFLICT (add/add): Merge conflict in foo
Auto-merging conflictor
CONFLICT (add/add): Merge conflict in conflictor
Automatic merge failed; fix conflicts and then commit the result.
conflictor: needs merge
[detached HEAD 106cd9d] git-annex automatic merge conflict fix
Updating 085b7b5..5a26f64
Fast-forward
 conflictor.variant-75dc               | 1 +
 conflictor => conflictor.variant-a507 | 2 +-
 foo                                   | 2 +-
 3 files changed, 3 insertions(+), 2 deletions(-)
 create mode 100644 conflictor.variant-75dc
 rename conflictor => conflictor.variant-a507 (98%)
Counting objects: 23, done.
Delta compression using up to 4 threads.
Compressing objects: 100% (22/22), done.
Writing objects: 100% (23/23), 2.27 KiB | 0 bytes/s, done.
Total 23 (delta 10), reused 0 (delta 0)
To ../../.t\tmprepo45
   b9ebb44..106cd9d  master -> synced/master
 * [new branch]      git-annex -> synced/git-annex
On branch adjusted/master(unlocked)
nothing to commit, working tree clean
Updating b9ebb44..106cd9d
Fast-forward
 conflictor              | 1 -
 conflictor.variant-75dc | 1 +
 conflictor.variant-a507 | 1 +
 foo                     | 2 +-
 sha1foo                 | 2 +-
 5 files changed, 4 insertions(+), 3 deletions(-)
 delete mode 120000 conflictor
 create mode 120000 conflictor.variant-75dc
 create mode 120000 conflictor.variant-a507
Updating 834afb8..a855bbb
Fast-forward
 conflictor => conflictor.variant-75dc | 2 +-
 conflictor.variant-a507               | 1 +
 foo                                   | 2 +-
 3 files changed, 3 insertions(+), 2 deletions(-)
 rename conflictor => conflictor.variant-75dc (98%)
 create mode 100644 conflictor.variant-a507
From ../../.t\tmprepo44
 * [new branch]      adjusted/master(unlocked) -> r1/adjusted/master(unlocked)
 * [new branch]      git-annex                 -> r1/git-annex
 * [new branch]      master                    -> r1/master
 * [new branch]      synced/master             -> r1/synced/master
[adjusted/master(unlocked) a544d12] git-annex in .t\tmprepo44
 1 file changed, 1 insertion(+), 1 deletion(-)
From ../../.t\tmprepo45
 + 834afb8...ba3658e adjusted/master(unlocked) -> r2/adjusted/master(unlocked)  (forced update)
Counting objects: 1, done.
Writing objects: 100% (1/1), 191 bytes | 0 bytes/s, done.
Total 1 (delta 0), reused 0 (delta 0)
To ../../.t\tmprepo45
   106cd9d..55808e6  master -> synced/master
conflictor.variant-a507
conflictor.variant-75dc
conflictor.variant-a507
conflictor.variant-75dc
OK (8.56s)
    conflict resolution (adjusted branch):                  Detected a filesystem without fifo support.
  Disabling ssh connection caching.
  Detected a crippled filesystem.
  Detected a filesystem without fifo support.
  Disabling ssh connection caching.
  Detected a crippled filesystem.
[adjusted/master(unlocked) c828dc1] git-annex in .t\tmprepo46
 1 file changed, 1 insertion(+)
 create mode 100644 conflictor
[adjusted/master(unlocked) f2a9fab] git-annex in .t\tmprepo47
 1 file changed, 1 insertion(+)
 create mode 100644 conflictor
Already on 'adjusted/master(unlocked)'
M       conflictor
M       foo
On branch adjusted/master(unlocked)
nothing to commit, working tree clean
remote: Counting objects: 23, done.
remote: Compressing objects: 100% (21/21), done.
remote: Total 23 (delta 5), reused 0 (delta 0)
Unpacking objects: 100% (23/23), done.
From ../../.t\tmprepo47
 * [new branch]      adjusted/master(unlocked) -> r2/adjusted/master(unlocked)
 * [new branch]      git-annex                 -> r2/git-annex
 * [new branch]      master                    -> r2/master
 * [new branch]      synced/master             -> r2/synced/master
Auto-merging sha1foo
CONFLICT (add/add): Merge conflict in sha1foo
Auto-merging foo
CONFLICT (add/add): Merge conflict in foo
Auto-merging conflictor
CONFLICT (add/add): Merge conflict in conflictor
Automatic merge failed; fix conflicts and then commit the result.
conflictor: needs merge
[detached HEAD 5c75014] git-annex automatic merge conflict fix
Updating 21164f0..40932a6
Fast-forward
 conflictor.variant-75dc               | 1 +
 conflictor => conflictor.variant-a507 | 2 +-
 foo                                   | 2 +-
 3 files changed, 3 insertions(+), 2 deletions(-)
 create mode 100644 conflictor.variant-75dc
 rename conflictor => conflictor.variant-a507 (98%)
Counting objects: 23, done.
Delta compression using up to 4 threads.
Compressing objects: 100% (22/22), done.
Writing objects: 100% (23/23), 2.31 KiB | 0 bytes/s, done.
Total 23 (delta 9), reused 0 (delta 0)
To ../../.t\tmprepo47
   f48a2ad..5c75014  master -> synced/master
 * [new branch]      git-annex -> synced/git-annex
[adjusted/master(unlocked) 5582940] git-annex in .t\tmprepo47
 2 files changed, 2 insertions(+), 2 deletions(-)
Removing conflictor
Merge made by the 'recursive' strategy.
 conflictor              | 1 -
 conflictor.variant-75dc | 1 +
 conflictor.variant-a507 | 1 +
 foo                     | 2 +-
 sha1foo                 | 2 +-
 5 files changed, 4 insertions(+), 3 deletions(-)
 delete mode 120000 conflictor
 create mode 120000 conflictor.variant-75dc
 create mode 120000 conflictor.variant-a507
Updating 5582940..95b64c3
Fast-forward
 conflictor => conflictor.variant-75dc | 2 +-
 conflictor.variant-a507               | 1 +
 foo                                   | 2 +-
 3 files changed, 3 insertions(+), 2 deletions(-)
 rename conflictor => conflictor.variant-75dc (98%)
 create mode 100644 conflictor.variant-a507
remote: Counting objects: 6, done.
remote: Compressing objects: 100% (6/6), done.
remote: Total 6 (delta 0), reused 0 (delta 0)
Unpacking objects: 100% (6/6), done.
From ../../.t\tmprepo46
 * [new branch]      adjusted/master(unlocked) -> r1/adjusted/master(unlocked)
 * [new branch]      git-annex                 -> r1/git-annex
 * [new branch]      master                    -> r1/master
 * [new branch]      synced/master             -> r1/synced/master
Counting objects: 2, done.
Delta compression using up to 4 threads.
Compressing objects: 100% (2/2), done.
Writing objects: 100% (2/2), 407 bytes | 0 bytes/s, done.
Total 2 (delta 0), reused 0 (delta 0)
To ../../.t\tmprepo46
   5c75014..0be7ee2  master -> synced/master
 * [new branch]      git-annex -> synced/git-annex
[adjusted/master(unlocked) e579d2b] git-annex in .t\tmprepo46
 1 file changed, 1 insertion(+), 1 deletion(-)
Already up-to-date!
Merge made by the 'recursive' strategy.
Updating e579d2b..5dc5ec6
Fast-forward
 conflictor.variant-a507 | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)
remote: Counting objects: 6, done.
remote: Compressing objects: 100% (6/6), done.
remote: Total 6 (delta 0), reused 0 (delta 0)
Unpacking objects: 100% (6/6), done.
From ../../.t\tmprepo47
 + 844c7ad...1d42500 adjusted/master(unlocked) -> r2/adjusted/master(unlocked)  (forced update)
   5c75014..0be7ee2  master                    -> r2/master
   5c75014..0be7ee2  synced/master             -> r2/synced/master
Counting objects: 2, done.
Delta compression using up to 4 threads.
Compressing objects: 100% (2/2), done.
Writing objects: 100% (2/2), 334 bytes | 0 bytes/s, done.
Total 2 (delta 1), reused 0 (delta 0)
To ../../.t\tmprepo47
   0be7ee2..b481b8e  master -> synced/master
conflictor.variant-a507
conflictor.variant-75dc
conflictor.variant-a507
conflictor.variant-75dc
OK (9.46s)
    conflict resolution movein regression:                  Detected a filesystem without fifo support.
  Disabling ssh connection caching.
  Detected a crippled filesystem.
  Detected a filesystem without fifo support.
  Disabling ssh connection caching.
  Detected a crippled filesystem.
[adjusted/master(unlocked) 98268ad] git-annex in .t\tmprepo48
 2 files changed, 2 insertions(+), 2 deletions(-)
remote: Counting objects: 14, done.
remote: Compressing objects: 100% (11/11), done.
remote: Total 14 (delta 4), reused 0 (delta 0)
Unpacking objects: 100% (14/14), done.
From ../../.t\tmprepo49
 * [new branch]      adjusted/master(unlocked) -> r2/adjusted/master(unlocked)
 * [new branch]      git-annex                 -> r2/git-annex
 * [new branch]      master                    -> r2/master
Counting objects: 33, done.
Delta compression using up to 4 threads.
Compressing objects: 100% (27/27), done.
Writing objects: 100% (33/33), 3.04 KiB | 0 bytes/s, done.
Total 33 (delta 9), reused 0 (delta 0)
To ../../.t\tmprepo49
 * [new branch]      git-annex -> synced/git-annex
 * [new branch]      master -> synced/master
To ../../.t\tmprepo49
 ! [rejected]        master -> master (non-fast-forward)
error: failed to push some refs to '../../.t\tmprepo49'
hint: Updates were rejected because a pushed branch tip is behind its remote
hint: counterpart. Check out this branch and integrate the remote changes
hint: (e.g. 'git pull ...') before pushing again.
hint: See the 'Note about fast-forwards' in 'git push --help' for details.
[adjusted/master(unlocked) 4839b05] git-annex in .t\tmprepo49
 2 files changed, 2 insertions(+), 2 deletions(-)
Auto-merging sha1foo
CONFLICT (add/add): Merge conflict in sha1foo
Auto-merging foo
CONFLICT (add/add): Merge conflict in foo
Automatic merge failed; fix conflicts and then commit the result.
foo: needs merge
[detached HEAD 4d9c158] git-annex automatic merge conflict fix
Updating 4839b05..941b7f7
Fast-forward
 foo.variant-0b0e        | 1 +
 foo => foo.variant-bc25 | 2 +-
 sha1foo                 | 2 +-
 3 files changed, 3 insertions(+), 2 deletions(-)
 create mode 100644 foo.variant-0b0e
 rename foo => foo.variant-bc25 (98%)
remote: Counting objects: 4, done.
remote: Compressing objects: 100% (4/4), done.
remote: Total 4 (delta 0), reused 0 (delta 0)
Unpacking objects: 100% (4/4), done.
From ../../.t\tmprepo48
 * [new branch]      adjusted/master(unlocked) -> r1/adjusted/master(unlocked)
 * [new branch]      git-annex                 -> r1/git-annex
 * [new branch]      master                    -> r1/master
 * [new branch]      synced/master             -> r1/synced/master
Counting objects: 10, done.
Delta compression using up to 4 threads.
Compressing objects: 100% (10/10), done.
Writing objects: 100% (10/10), 1.18 KiB | 0 bytes/s, done.
Total 10 (delta 2), reused 0 (delta 0)
To ../../.t\tmprepo48
   dcae980..4d9c158  master -> synced/master
 * [new branch]      git-annex -> synced/git-annex
On branch adjusted/master(unlocked)
nothing to commit, working tree clean
Updating dcae980..4d9c158
Fast-forward
 foo              | 1 -
 foo.variant-0b0e | 1 +
 foo.variant-bc25 | 1 +
 sha1foo          | 2 +-
 4 files changed, 3 insertions(+), 2 deletions(-)
 delete mode 120000 foo
 create mode 120000 foo.variant-0b0e
 create mode 120000 foo.variant-bc25
Updating 93aeb67..c5dd322
Fast-forward
 foo => foo.variant-0b0e | 2 +-
 foo.variant-bc25        | 1 +
 sha1foo                 | 2 +-
 3 files changed, 3 insertions(+), 2 deletions(-)
 rename foo => foo.variant-0b0e (98%)
 create mode 100644 foo.variant-bc25
remote: Counting objects: 5, done.
remote: Compressing objects: 100% (4/4), done.
remote: Total 5 (delta 1), reused 0 (delta 0)
Unpacking objects: 100% (5/5), done.
From ../../.t\tmprepo49
 + 75480f7...834d96c adjusted/master(unlocked) -> r2/adjusted/master(unlocked)  (forced update)
   2411485..288a846  git-annex                 -> r2/git-annex
 + 685e9b5...4d9c158 master                    -> r2/master  (forced update)
   dcae980..4d9c158  synced/master             -> r2/synced/master
OK (8.20s)
    conflict resolution (mixed directory and file):         Detected a filesystem without fifo support.
  Disabling ssh connection caching.
  Detected a crippled filesystem.
  Detected a filesystem without fifo support.
  Disabling ssh connection caching.
  Detected a crippled filesystem.
[adjusted/master(unlocked) 77f9c58] git-annex in .t\tmprepo50
 1 file changed, 1 insertion(+)
 create mode 100644 conflictor
[adjusted/master(unlocked) e1fa8b8] git-annex in .t\tmprepo51
 1 file changed, 1 insertion(+)
 create mode 100644 conflictor/subfile
On branch adjusted/master(unlocked)
nothing to commit, working tree clean
remote: Counting objects: 25, done.
remote: Compressing objects: 100% (21/21), done.
remote: Total 25 (delta 4), reused 0 (delta 0)
Unpacking objects: 100% (25/25), done.
From ../../.t\tmprepo51
 * [new branch]      adjusted/master(unlocked) -> r2/adjusted/master(unlocked)
 * [new branch]      git-annex                 -> r2/git-annex
 * [new branch]      master                    -> r2/master
 * [new branch]      synced/master             -> r2/synced/master
Auto-merging sha1foo
CONFLICT (add/add): Merge conflict in sha1foo
Auto-merging foo
CONFLICT (add/add): Merge conflict in foo
Adding conflictor/subfile
CONFLICT (file/directory): There is a directory with name conflictor in refs/remotes/r2/master. Adding conflictor as con
flictor~HEAD
Automatic merge failed; fix conflicts and then commit the result.
conflictor: needs merge
[detached HEAD 724aad5] git-annex automatic merge conflict fix
Updating 7ceb7ad..1c51b66
Fast-forward
 conflictor => conflictor.variant-cc12 | 2 +-
 conflictor/subfile                    | 1 +
 foo                                   | 2 +-
 3 files changed, 3 insertions(+), 2 deletions(-)
 rename conflictor => conflictor.variant-cc12 (98%)
 create mode 100644 conflictor/subfile
Counting objects: 22, done.
Delta compression using up to 4 threads.
Compressing objects: 100% (21/21), done.
Writing objects: 100% (22/22), 2.15 KiB | 0 bytes/s, done.
Total 22 (delta 10), reused 0 (delta 0)
To ../../.t\tmprepo51
   f4b3387..724aad5  master -> synced/master
 * [new branch]      git-annex -> synced/git-annex
On branch adjusted/master(unlocked)
nothing to commit, working tree clean
Updating f4b3387..724aad5
Fast-forward
 conflictor.variant-cc12 | 1 +
 foo                     | 2 +-
 sha1foo                 | 2 +-
 3 files changed, 3 insertions(+), 2 deletions(-)
 create mode 120000 conflictor.variant-cc12
Updating 98b13e3..6ab96da
Fast-forward
 conflictor.variant-cc12 | 1 +
 conflictor/subfile      | 2 +-
 foo                     | 2 +-
 3 files changed, 3 insertions(+), 2 deletions(-)
 create mode 100644 conflictor.variant-cc12
From ../../.t\tmprepo50
 * [new branch]      adjusted/master(unlocked) -> r1/adjusted/master(unlocked)
 * [new branch]      git-annex                 -> r1/git-annex
 * [new branch]      master                    -> r1/master
 * [new branch]      synced/master             -> r1/synced/master
conflictor/subfile
conflictor.variant-cc12
conflictor/subfile
conflictor.variant-cc12
  Detected a filesystem without fifo support.
  Disabling ssh connection caching.
  Detected a crippled filesystem.
  Detected a filesystem without fifo support.
  Disabling ssh connection caching.
  Detected a crippled filesystem.
[adjusted/master(unlocked) de2bac8] git-annex in .t\tmprepo52
 1 file changed, 1 insertion(+)
 create mode 100644 conflictor
[adjusted/master(unlocked) eb3a2f9] git-annex in .t\tmprepo53
 1 file changed, 1 insertion(+)
 create mode 100644 conflictor/subfile
On branch adjusted/master(unlocked)
nothing to commit, working tree clean
remote: Counting objects: 23, done.
remote: Compressing objects: 100% (21/21), done.
remote: Total 23 (delta 3), reused 0 (delta 0)
Unpacking objects: 100% (23/23), done.
From ../../.t\tmprepo52
 * [new branch]      adjusted/master(unlocked) -> r1/adjusted/master(unlocked)
 * [new branch]      git-annex                 -> r1/git-annex
 * [new branch]      master                    -> r1/master
 * [new branch]      synced/master             -> r1/synced/master
Auto-merging sha1foo
CONFLICT (add/add): Merge conflict in sha1foo
Auto-merging foo
CONFLICT (add/add): Merge conflict in foo
Adding conflictor/subfile
CONFLICT (directory/file): There is a directory with name conflictor in HEAD. Adding conflictor as conflictor~refs_remot
es_r1_master
Automatic merge failed; fix conflicts and then commit the result.
conflictor: needs merge
[detached HEAD 80b8489] git-annex automatic merge conflict fix
Updating f4714af..8c0e1af
Fast-forward
 conflictor.variant-cc12 | 1 +
 conflictor/subfile      | 2 +-
 foo                     | 2 +-
 3 files changed, 3 insertions(+), 2 deletions(-)
 create mode 100644 conflictor.variant-cc12
Counting objects: 24, done.
Delta compression using up to 4 threads.
Compressing objects: 100% (22/22), done.
Writing objects: 100% (24/24), 2.34 KiB | 0 bytes/s, done.
Total 24 (delta 9), reused 0 (delta 0)
To ../../.t\tmprepo52
   c785d3b..80b8489  master -> synced/master
 * [new branch]      git-annex -> synced/git-annex
On branch adjusted/master(unlocked)
nothing to commit, working tree clean
Updating c785d3b..80b8489
Fast-forward
 conflictor              | 1 -
 conflictor.variant-cc12 | 1 +
 conflictor/subfile      | 1 +
 foo                     | 2 +-
 sha1foo                 | 2 +-
 5 files changed, 4 insertions(+), 3 deletions(-)
 delete mode 120000 conflictor
 create mode 120000 conflictor.variant-cc12
 create mode 120000 conflictor/subfile
Updating f9dc04b..83e640a
Fast-forward
 conflictor => conflictor.variant-cc12 | 2 +-
 conflictor/subfile                    | 1 +
 foo                                   | 2 +-
 3 files changed, 3 insertions(+), 2 deletions(-)
 rename conflictor => conflictor.variant-cc12 (98%)
 create mode 100644 conflictor/subfile
From ../../.t\tmprepo53
 * [new branch]      adjusted/master(unlocked) -> r2/adjusted/master(unlocked)
 * [new branch]      git-annex                 -> r2/git-annex
 * [new branch]      master                    -> r2/master
 * [new branch]      synced/master             -> r2/synced/master
conflictor/subfile
conflictor.variant-cc12
conflictor/subfile
conflictor.variant-cc12
OK (15.63s)
    conflict resolution symlink bit:                      OK
    conflict resolution (uncommitted local file):           Detected a filesystem without fifo support.
  Disabling ssh connection caching.
  Detected a crippled filesystem.
  Detected a filesystem without fifo support.
  Disabling ssh connection caching.
  Detected a crippled filesystem.
[adjusted/master(unlocked) 4cfaea2] git-annex in .t\tmprepo54
 1 file changed, 1 insertion(+)
 create mode 100644 conflictor
On branch adjusted/master(unlocked)
Untracked files:
        conflictor

nothing added to commit but untracked files present
remote: Counting objects: 23, done.
remote: Compressing objects: 100% (21/21), done.
remote: Total 23 (delta 5), reused 0 (delta 0)
Unpacking objects: 100% (23/23), done.
From ../../.t\tmprepo54
 * [new branch]      adjusted/master(unlocked) -> r1/adjusted/master(unlocked)
 * [new branch]      git-annex                 -> r1/git-annex
 * [new branch]      master                    -> r1/master
 * [new branch]      synced/master             -> r1/synced/master
Auto-merging sha1foo
CONFLICT (add/add): Merge conflict in sha1foo
Auto-merging foo
CONFLICT (add/add): Merge conflict in foo
Automatic merge failed; fix conflicts and then commit the result.
[detached HEAD 2a880d5] git-annex automatic merge conflict fix
Updating 75480f7..c84a79d
error: The following untracked working tree files would be overwritten by merge:
        conflictor
Please move or remove them before you merge.
Aborting
Already up-to-date.
Updating 75480f7..4acfac6
error: The following untracked working tree files would be overwritten by merge:
        conflictor
Please move or remove them before you merge.
Aborting
Counting objects: 18, done.
Delta compression using up to 4 threads.
Compressing objects: 100% (18/18), done.
Writing objects: 100% (18/18), 1.77 KiB | 0 bytes/s, done.
Total 18 (delta 10), reused 0 (delta 0)
To ../../.t\tmprepo54
   bda2c4e..5fd3f84  master -> synced/master
 * [new branch]      git-annex -> synced/git-annex
  Detected a filesystem without fifo support.
  Disabling ssh connection caching.
  Detected a crippled filesystem.
  Detected a filesystem without fifo support.
  Disabling ssh connection caching.
  Detected a crippled filesystem.
[adjusted/master(unlocked) a7ba016] git-annex in .t\tmprepo56
 1 file changed, 1 insertion(+)
 create mode 100644 conflictor/file
On branch adjusted/master(unlocked)
Untracked files:
        conflictor

nothing added to commit but untracked files present
remote: Counting objects: 25, done.
remote: Compressing objects: 100% (21/21), done.
remote: Total 25 (delta 3), reused 0 (delta 0)
Unpacking objects: 100% (25/25), done.
From ../../.t\tmprepo56
 * [new branch]      adjusted/master(unlocked) -> r1/adjusted/master(unlocked)
 * [new branch]      git-annex                 -> r1/git-annex
 * [new branch]      master                    -> r1/master
 * [new branch]      synced/master             -> r1/synced/master
Auto-merging sha1foo
CONFLICT (add/add): Merge conflict in sha1foo
Auto-merging foo
CONFLICT (add/add): Merge conflict in foo
Automatic merge failed; fix conflicts and then commit the result.
[detached HEAD f13554c] git-annex automatic merge conflict fix
Updating 75480f7..01da6d6
error: The following untracked working tree files would be overwritten by merge:
        conflictor
Please move or remove them before you merge.
Aborting
Already up-to-date.
Updating 75480f7..2b83f70
error: The following untracked working tree files would be overwritten by merge:
        conflictor
Please move or remove them before you merge.
Aborting
Counting objects: 18, done.
Delta compression using up to 4 threads.
Compressing objects: 100% (18/18), done.
Writing objects: 100% (18/18), 1.76 KiB | 0 bytes/s, done.
Total 18 (delta 10), reused 0 (delta 0)
To ../../.t\tmprepo56
   363622c..0103a78  master -> synced/master
 * [new branch]      git-annex -> synced/git-annex
OK (10.59s)
    conflict resolution (removed file):                     Detected a filesystem without fifo support.
  Disabling ssh connection caching.
  Detected a crippled filesystem.
  Detected a filesystem without fifo support.
  Disabling ssh connection caching.
  Detected a crippled filesystem.
[adjusted/master(unlocked) e7f1054] git-annex in .t\tmprepo58
 1 file changed, 1 insertion(+)
 create mode 100644 conflictor
On branch adjusted/master(unlocked)
nothing to commit, working tree clean
remote: Counting objects: 23, done.
remote: Compressing objects: 100% (21/21), done.
remote: Total 23 (delta 4), reused 0 (delta 0)
Unpacking objects: 100% (23/23), done.
From ../../.t\tmprepo58
 * [new branch]      adjusted/master(unlocked) -> r1/adjusted/master(unlocked)
 * [new branch]      git-annex                 -> r1/git-annex
 * [new branch]      master                    -> r1/master
 * [new branch]      synced/master             -> r1/synced/master
Auto-merging sha1foo
CONFLICT (add/add): Merge conflict in sha1foo
Auto-merging foo
CONFLICT (add/add): Merge conflict in foo
Automatic merge failed; fix conflicts and then commit the result.
[detached HEAD 55cc242] git-annex automatic merge conflict fix
Updating 75480f7..bfe5776
Fast-forward
 conflictor | 1 +
 foo        | 2 +-
 2 files changed, 2 insertions(+), 1 deletion(-)
 create mode 100644 conflictor
Counting objects: 14, done.
Delta compression using up to 4 threads.
Compressing objects: 100% (14/14), done.
Writing objects: 100% (14/14), 1.42 KiB | 0 bytes/s, done.
Total 14 (delta 8), reused 0 (delta 0)
To ../../.t\tmprepo58
   34511ad..55cc242  master -> synced/master
 * [new branch]      git-annex -> synced/git-annex
[adjusted/master(unlocked) 937a71e] git-annex in .t\tmprepo58
 1 file changed, 1 deletion(-)
 delete mode 100644 conflictor
Merge made by the 'recursive' strategy.
 foo     | 2 +-
 sha1foo | 2 +-
 2 files changed, 2 insertions(+), 2 deletions(-)
Updating 937a71e..e992316
Fast-forward
 foo | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)
remote: Counting objects: 10, done.
remote: Compressing objects: 100% (9/9), done.
remote: Total 10 (delta 2), reused 0 (delta 0)
Unpacking objects: 100% (10/10), done.
From ../../.t\tmprepo59
 * [new branch]      adjusted/master(unlocked) -> r2/adjusted/master(unlocked)
 * [new branch]      git-annex                 -> r2/git-annex
 * [new branch]      master                    -> r2/master
 * [new branch]      synced/master             -> r2/synced/master
Counting objects: 4, done.
Delta compression using up to 4 threads.
Compressing objects: 100% (4/4), done.
Writing objects: 100% (4/4), 482 bytes | 0 bytes/s, done.
Total 4 (delta 2), reused 0 (delta 0)
To ../../.t\tmprepo59
   55cc242..f01e945  master -> synced/master
 * [new branch]      git-annex -> synced/git-annex
[adjusted/master(unlocked) d60d0d5] git-annex in .t\tmprepo59
 1 file changed, 1 insertion(+), 1 deletion(-)
CONFLICT (modify/delete): conflictor deleted in refs/heads/synced/master and modified in HEAD. Version HEAD of conflicto
r left in tree.
Automatic merge failed; fix conflicts and then commit the result.
conflictor: needs merge
[detached HEAD af662a3] git-annex automatic merge conflict fix
Updating d60d0d5..2584833
Fast-forward
 conflictor => conflictor.variant-0cbf | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)
 rename conflictor => conflictor.variant-0cbf (98%)
remote: Counting objects: 4, done.
remote: Compressing objects: 100% (4/4), done.
remote: Total 4 (delta 0), reused 0 (delta 0)
Unpacking objects: 100% (4/4), done.
From ../../.t\tmprepo58
 + 8291a6a...c7986fa adjusted/master(unlocked) -> r1/adjusted/master(unlocked)  (forced update)
   b2dee3f..5c73f12  git-annex                 -> r1/git-annex
   55cc242..f01e945  master                    -> r1/master
   55cc242..f01e945  synced/master             -> r1/synced/master
Counting objects: 5, done.
Delta compression using up to 4 threads.
Compressing objects: 100% (5/5), done.
Writing objects: 100% (5/5), 680 bytes | 0 bytes/s, done.
Total 5 (delta 1), reused 0 (delta 0)
To ../../.t\tmprepo58
   b2dee3f..5c73f12  git-annex -> synced/git-annex
   f01e945..af662a3  master -> synced/master
On branch adjusted/master(unlocked)
nothing to commit, working tree clean
Updating f01e945..af662a3
Fast-forward
 conflictor.variant-0cbf | 1 +
 1 file changed, 1 insertion(+)
 create mode 120000 conflictor.variant-0cbf
Updating c7986fa..2965015
Fast-forward
 conflictor.variant-0cbf | 1 +
 1 file changed, 1 insertion(+)
 create mode 100644 conflictor.variant-0cbf
remote: Counting objects: 5, done.
remote: Compressing objects: 100% (4/4), done.
remote: Total 5 (delta 1), reused 0 (delta 0)
Unpacking objects: 100% (5/5), done.
From ../../.t\tmprepo59
 + e665450...49f18da adjusted/master(unlocked) -> r2/adjusted/master(unlocked)  (forced update)
   5c73f12..317f667  git-annex                 -> r2/git-annex
   f01e945..af662a3  master                    -> r2/master
   f01e945..af662a3  synced/master             -> r2/synced/master
  Detected a filesystem without fifo support.
  Disabling ssh connection caching.
  Detected a crippled filesystem.
  Detected a filesystem without fifo support.
  Disabling ssh connection caching.
  Detected a crippled filesystem.
[adjusted/master(unlocked) 4933941] git-annex in .t\tmprepo60
 1 file changed, 1 insertion(+)
 create mode 100644 conflictor
On branch adjusted/master(unlocked)
nothing to commit, working tree clean
remote: Counting objects: 23, done.
remote: Compressing objects: 100% (21/21), done.
remote: Total 23 (delta 3), reused 0 (delta 0)
Unpacking objects: 100% (23/23), done.
From ../../.t\tmprepo60
 * [new branch]      adjusted/master(unlocked) -> r1/adjusted/master(unlocked)
 * [new branch]      git-annex                 -> r1/git-annex
 * [new branch]      master                    -> r1/master
 * [new branch]      synced/master             -> r1/synced/master
Auto-merging sha1foo
CONFLICT (add/add): Merge conflict in sha1foo
Auto-merging foo
CONFLICT (add/add): Merge conflict in foo
Automatic merge failed; fix conflicts and then commit the result.
[detached HEAD a57143f] git-annex automatic merge conflict fix
Updating 75480f7..b8f5d68
Fast-forward
 conflictor | 1 +
 foo        | 2 +-
 2 files changed, 2 insertions(+), 1 deletion(-)
 create mode 100644 conflictor
Counting objects: 14, done.
Delta compression using up to 4 threads.
Compressing objects: 100% (14/14), done.
Writing objects: 100% (14/14), 1.46 KiB | 0 bytes/s, done.
Total 14 (delta 7), reused 0 (delta 0)
To ../../.t\tmprepo60
   41acfd6..a57143f  master -> synced/master
 * [new branch]      git-annex -> synced/git-annex
[adjusted/master(unlocked) 5f6a63e] git-annex in .t\tmprepo61
 1 file changed, 1 insertion(+), 1 deletion(-)
Counting objects: 8, done.
Delta compression using up to 4 threads.
Compressing objects: 100% (7/7), done.
Writing objects: 100% (8/8), 853 bytes | 0 bytes/s, done.
Total 8 (delta 2), reused 0 (delta 0)
To ../../.t\tmprepo60
   261f2b0..0908b36  git-annex -> synced/git-annex
   a57143f..828e91b  master -> synced/master
[adjusted/master(unlocked) fdcc819] git-annex in .t\tmprepo60
 1 file changed, 1 deletion(-)
 delete mode 100644 conflictor
CONFLICT (modify/delete): conflictor deleted in HEAD and modified in refs/heads/synced/master. Version refs/heads/synced
/master of conflictor left in tree.
Automatic merge failed; fix conflicts and then commit the result.
conflictor: needs merge
[detached HEAD 4151827] git-annex automatic merge conflict fix
Updating fdcc819..975b799
Fast-forward
 conflictor.variant-0cbf | 1 +
 foo                     | 2 +-
 2 files changed, 2 insertions(+), 1 deletion(-)
 create mode 100644 conflictor.variant-0cbf
remote: Counting objects: 10, done.
remote: Compressing objects: 100% (9/9), done.
remote: Total 10 (delta 1), reused 0 (delta 0)
Unpacking objects: 100% (10/10), done.
From ../../.t\tmprepo61
 * [new branch]      adjusted/master(unlocked) -> r2/adjusted/master(unlocked)
 * [new branch]      git-annex                 -> r2/git-annex
 * [new branch]      master                    -> r2/master
 * [new branch]      synced/master             -> r2/synced/master
Counting objects: 5, done.
Delta compression using up to 4 threads.
Compressing objects: 100% (5/5), done.
Writing objects: 100% (5/5), 695 bytes | 0 bytes/s, done.
Total 5 (delta 1), reused 0 (delta 0)
To ../../.t\tmprepo61
   828e91b..4151827  master -> synced/master
 * [new branch]      git-annex -> synced/git-annex
On branch adjusted/master(unlocked)
nothing to commit, working tree clean
Updating 828e91b..4151827
Fast-forward
 conflictor              | 1 -
 conflictor.variant-0cbf | 1 +
 2 files changed, 1 insertion(+), 1 deletion(-)
 delete mode 120000 conflictor
 create mode 120000 conflictor.variant-0cbf
Updating 8780774..c4c9055
Fast-forward
 conflictor => conflictor.variant-0cbf | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)
 rename conflictor => conflictor.variant-0cbf (98%)
From ../../.t\tmprepo60
 + 7ceafed...f885d4b adjusted/master(unlocked) -> r1/adjusted/master(unlocked)  (forced update)
   0908b36..45e8d64  git-annex                 -> r1/git-annex
   828e91b..4151827  master                    -> r1/master
   828e91b..4151827  synced/master             -> r1/synced/master
OK (18.00s)
    conflict resolution (nonannexed file):                  Detected a filesystem without fifo support.
  Disabling ssh connection caching.
  Detected a crippled filesystem.
  Detected a filesystem without fifo support.
  Disabling ssh connection caching.
  Detected a crippled filesystem.
[adjusted/master(unlocked) 4438cd9] git-annex in .t\tmprepo62
 1 file changed, 1 insertion(+)
 create mode 100644 conflictor
[adjusted/master(unlocked) 7d984b7] git-annex in .t\tmprepo63
 1 file changed, 1 insertion(+)
 create mode 100644 conflictor
On branch adjusted/master(unlocked)
nothing to commit, working tree clean
remote: Counting objects: 17, done.
remote: Compressing objects: 100% (15/15), done.
remote: Total 17 (delta 2), reused 0 (delta 0)
Unpacking objects: 100% (17/17), done.
From ../../.t\tmprepo63
 * [new branch]      adjusted/master(unlocked) -> r2/adjusted/master(unlocked)
 * [new branch]      git-annex                 -> r2/git-annex
 * [new branch]      master                    -> r2/master
 * [new branch]      synced/master             -> r2/synced/master
Auto-merging sha1foo
CONFLICT (add/add): Merge conflict in sha1foo
Auto-merging foo
CONFLICT (add/add): Merge conflict in foo
Auto-merging conflictor
CONFLICT (add/add): Merge conflict in conflictor
Automatic merge failed; fix conflicts and then commit the result.
conflictor: needs merge
[detached HEAD ddbc6a3] git-annex automatic merge conflict fix
Updating c42b305..90fd358
Fast-forward
 conflictor              | 2 +-
 conflictor.variant-cc12 | 1 +
 foo                     | 2 +-
 3 files changed, 3 insertions(+), 2 deletions(-)
 create mode 100644 conflictor.variant-cc12
Counting objects: 22, done.
Delta compression using up to 4 threads.
Compressing objects: 100% (21/21), done.
Writing objects: 100% (22/22), 2.25 KiB | 0 bytes/s, done.
Total 22 (delta 9), reused 0 (delta 0)
To ../../.t\tmprepo63
   6ae609a..ddbc6a3  master -> synced/master
 * [new branch]      git-annex -> synced/git-annex
On branch adjusted/master(unlocked)
nothing to commit, working tree clean
Updating 6ae609a..ddbc6a3
Fast-forward
 conflictor.variant-cc12 | 1 +
 foo                     | 2 +-
 sha1foo                 | 2 +-
 3 files changed, 3 insertions(+), 2 deletions(-)
 create mode 120000 conflictor.variant-cc12
Updating 8714c6e..d884f3f
Fast-forward
 conflictor.variant-cc12 | 1 +
 foo                     | 2 +-
 2 files changed, 2 insertions(+), 1 deletion(-)
 create mode 100644 conflictor.variant-cc12
From ../../.t\tmprepo62
 * [new branch]      adjusted/master(unlocked) -> r1/adjusted/master(unlocked)
 * [new branch]      git-annex                 -> r1/git-annex
 * [new branch]      master                    -> r1/master
 * [new branch]      synced/master             -> r1/synced/master
  Detected a filesystem without fifo support.
  Disabling ssh connection caching.
  Detected a crippled filesystem.
  Detected a filesystem without fifo support.
  Disabling ssh connection caching.
  Detected a crippled filesystem.
[adjusted/master(unlocked) 99fd1b3] git-annex in .t\tmprepo64
 1 file changed, 1 insertion(+)
 create mode 100644 conflictor
[adjusted/master(unlocked) 30452d4] git-annex in .t\tmprepo65
 1 file changed, 1 insertion(+)
 create mode 100644 conflictor
On branch adjusted/master(unlocked)
nothing to commit, working tree clean
remote: Counting objects: 23, done.
remote: Compressing objects: 100% (21/21), done.
remote: Total 23 (delta 4), reused 0 (delta 0)
Unpacking objects: 100% (23/23), done.
From ../../.t\tmprepo64
 * [new branch]      adjusted/master(unlocked) -> r1/adjusted/master(unlocked)
 * [new branch]      git-annex                 -> r1/git-annex
 * [new branch]      master                    -> r1/master
 * [new branch]      synced/master             -> r1/synced/master
Auto-merging sha1foo
CONFLICT (add/add): Merge conflict in sha1foo
Auto-merging foo
CONFLICT (add/add): Merge conflict in foo
Auto-merging conflictor
CONFLICT (add/add): Merge conflict in conflictor
Automatic merge failed; fix conflicts and then commit the result.
conflictor: needs merge
[detached HEAD 46ec327] git-annex automatic merge conflict fix
Updating 818dce1..9788dab
Fast-forward
 conflictor.variant-cc12 | 1 +
 foo                     | 2 +-
 2 files changed, 2 insertions(+), 1 deletion(-)
 create mode 100644 conflictor.variant-cc12
Counting objects: 18, done.
Delta compression using up to 4 threads.
Compressing objects: 100% (17/17), done.
Writing objects: 100% (18/18), 1.69 KiB | 0 bytes/s, done.
Total 18 (delta 10), reused 0 (delta 0)
To ../../.t\tmprepo64
   6ae34c0..46ec327  master -> synced/master
 * [new branch]      git-annex -> synced/git-annex
On branch adjusted/master(unlocked)
nothing to commit, working tree clean
Updating 6ae34c0..46ec327
Fast-forward
 conflictor              | 2 +-
 conflictor.variant-cc12 | 1 +
 foo                     | 2 +-
 sha1foo                 | 2 +-
 4 files changed, 4 insertions(+), 3 deletions(-)
 mode change 120000 => 100644 conflictor
 create mode 120000 conflictor.variant-cc12
Updating aa27001..eb304ba
Fast-forward
 conflictor              | 2 +-
 conflictor.variant-cc12 | 1 +
 foo                     | 2 +-
 3 files changed, 3 insertions(+), 2 deletions(-)
 create mode 100644 conflictor.variant-cc12
From ../../.t\tmprepo65
 * [new branch]      adjusted/master(unlocked) -> r2/adjusted/master(unlocked)
 * [new branch]      git-annex                 -> r2/git-annex
 * [new branch]      master                    -> r2/master
 * [new branch]      synced/master             -> r2/synced/master
  Detected a filesystem without fifo support.
  Disabling ssh connection caching.
  Detected a crippled filesystem.
  Detected a filesystem without fifo support.
  Disabling ssh connection caching.
  Detected a crippled filesystem.
[adjusted/master(unlocked) 34af785] git-annex in .t\tmprepo66
 1 file changed, 1 insertion(+)
 create mode 100644 conflictor
[adjusted/master(unlocked) d1ad368] git-annex in .t\tmprepo67
 1 file changed, 1 insertion(+)
 create mode 100644 conflictor
On branch adjusted/master(unlocked)
nothing to commit, working tree clean
remote: Counting objects: 17, done.
remote: Compressing objects: 100% (15/15), done.
remote: Total 17 (delta 1), reused 0 (delta 0)
Unpacking objects: 100% (17/17), done.
From ../../.t\tmprepo67
 * [new branch]      adjusted/master(unlocked) -> r2/adjusted/master(unlocked)
 * [new branch]      git-annex                 -> r2/git-annex
 * [new branch]      master                    -> r2/master
 * [new branch]      synced/master             -> r2/synced/master
Auto-merging sha1foo
CONFLICT (add/add): Merge conflict in sha1foo
Auto-merging foo
CONFLICT (add/add): Merge conflict in foo
Auto-merging conflictor
CONFLICT (add/add): Merge conflict in conflictor
Automatic merge failed; fix conflicts and then commit the result.
conflictor: needs merge
[detached HEAD b6643ac] git-annex automatic merge conflict fix
Updating 58a264d..7f1e818
Fast-forward
 conflictor              | 2 +-
 conflictor.variant-cc12 | 1 +
 foo                     | 2 +-
 3 files changed, 3 insertions(+), 2 deletions(-)
 create mode 100644 conflictor.variant-cc12
Counting objects: 22, done.
Delta compression using up to 4 threads.
Compressing objects: 100% (21/21), done.
Writing objects: 100% (22/22), 2.30 KiB | 0 bytes/s, done.
Total 22 (delta 8), reused 0 (delta 0)
To ../../.t\tmprepo67
   ad93099..b6643ac  master -> synced/master
 * [new branch]      git-annex -> synced/git-annex
On branch adjusted/master(unlocked)
nothing to commit, working tree clean
Updating ad93099..b6643ac
Fast-forward
 conflictor.variant-cc12 | 1 +
 foo                     | 2 +-
 sha1foo                 | 2 +-
 3 files changed, 3 insertions(+), 2 deletions(-)
 create mode 120000 conflictor.variant-cc12
Updating f042552..0b591c1
Fast-forward
 conflictor.variant-cc12 | 1 +
 foo                     | 2 +-
 2 files changed, 2 insertions(+), 1 deletion(-)
 create mode 100644 conflictor.variant-cc12
From ../../.t\tmprepo66
 * [new branch]      adjusted/master(unlocked) -> r1/adjusted/master(unlocked)
 * [new branch]      git-annex                 -> r1/git-annex
 * [new branch]      master                    -> r1/master
 * [new branch]      synced/master             -> r1/synced/master
  Detected a filesystem without fifo support.
  Disabling ssh connection caching.
  Detected a crippled filesystem.
  Detected a filesystem without fifo support.
  Disabling ssh connection caching.
  Detected a crippled filesystem.
[adjusted/master(unlocked) aabedb4] git-annex in .t\tmprepo68
 1 file changed, 1 insertion(+)
 create mode 100644 conflictor
[adjusted/master(unlocked) 0666b67] git-annex in .t\tmprepo69
 1 file changed, 1 insertion(+)
 create mode 100644 conflictor
On branch adjusted/master(unlocked)
nothing to commit, working tree clean
remote: Counting objects: 23, done.
remote: Compressing objects: 100% (21/21), done.
remote: Total 23 (delta 4), reused 0 (delta 0)
Unpacking objects: 100% (23/23), done.
From ../../.t\tmprepo68
 * [new branch]      adjusted/master(unlocked) -> r1/adjusted/master(unlocked)
 * [new branch]      git-annex                 -> r1/git-annex
 * [new branch]      master                    -> r1/master
 * [new branch]      synced/master             -> r1/synced/master
Auto-merging sha1foo
CONFLICT (add/add): Merge conflict in sha1foo
Auto-merging foo
CONFLICT (add/add): Merge conflict in foo
Auto-merging conflictor
CONFLICT (add/add): Merge conflict in conflictor
Automatic merge failed; fix conflicts and then commit the result.
conflictor: needs merge
[detached HEAD 15337ba] git-annex automatic merge conflict fix
Updating d8e1daa..2bdecc4
Fast-forward
 conflictor.variant-cc12 | 1 +
 foo                     | 2 +-
 2 files changed, 2 insertions(+), 1 deletion(-)
 create mode 100644 conflictor.variant-cc12
Counting objects: 18, done.
Delta compression using up to 4 threads.
Compressing objects: 100% (17/17), done.
Writing objects: 100% (18/18), 1.69 KiB | 0 bytes/s, done.
Total 18 (delta 10), reused 0 (delta 0)
To ../../.t\tmprepo68
   0322df0..15337ba  master -> synced/master
 * [new branch]      git-annex -> synced/git-annex
On branch adjusted/master(unlocked)
nothing to commit, working tree clean
Updating 0322df0..15337ba
Fast-forward
 conflictor              | 2 +-
 conflictor.variant-cc12 | 1 +
 foo                     | 2 +-
 sha1foo                 | 2 +-
 4 files changed, 4 insertions(+), 3 deletions(-)
 mode change 120000 => 100644 conflictor
 create mode 120000 conflictor.variant-cc12
Updating f638189..62dac7e
Fast-forward
 conflictor              | 2 +-
 conflictor.variant-cc12 | 1 +
 foo                     | 2 +-
 3 files changed, 3 insertions(+), 2 deletions(-)
 create mode 100644 conflictor.variant-cc12
From ../../.t\tmprepo69
 * [new branch]      adjusted/master(unlocked) -> r2/adjusted/master(unlocked)
 * [new branch]      git-annex                 -> r2/git-annex
 * [new branch]      master                    -> r2/master
 * [new branch]      synced/master             -> r2/synced/master
OK (25.61s)
    conflict resolution (nonannexed symlink):               Detected a filesystem without fifo support.
  Disabling ssh connection caching.
  Detected a crippled filesystem.
  Detected a filesystem without fifo support.
  Disabling ssh connection caching.
  Detected a crippled filesystem.
  Detected a filesystem without fifo support.
  Disabling ssh connection caching.
  Detected a crippled filesystem.
  Detected a filesystem without fifo support.
  Disabling ssh connection caching.
  Detected a crippled filesystem.
  Detected a filesystem without fifo support.
  Disabling ssh connection caching.
  Detected a crippled filesystem.
  Detected a filesystem without fifo support.
  Disabling ssh connection caching.
  Detected a crippled filesystem.
  Detected a filesystem without fifo support.
  Disabling ssh connection caching.
  Detected a crippled filesystem.
  Detected a filesystem without fifo support.
  Disabling ssh connection caching.
  Detected a crippled filesystem.
OK (7.43s)
    conflict resolution (mixed locked and unlocked file):   Detected a filesystem without fifo support.
  Disabling ssh connection caching.
  Detected a crippled filesystem.
  Detected a filesystem without fifo support.
  Disabling ssh connection caching.
  Detected a crippled filesystem.
[adjusted/master(unlocked) 6c05187] git-annex in .t\tmprepo78
 1 file changed, 1 insertion(+)
 create mode 100644 conflictor
[adjusted/master(unlocked) 3968c28] git-annex in .t\tmprepo79
 1 file changed, 1 insertion(+)
 create mode 100644 conflictor
On branch adjusted/master(unlocked)
nothing to commit, working tree clean
remote: Counting objects: 23, done.
remote: Compressing objects: 100% (21/21), done.
remote: Total 23 (delta 4), reused 0 (delta 0)
Unpacking objects: 100% (23/23), done.
From ../../.t\tmprepo79
 * [new branch]      adjusted/master(unlocked) -> r2/adjusted/master(unlocked)
 * [new branch]      git-annex                 -> r2/git-annex
 * [new branch]      master                    -> r2/master
 * [new branch]      synced/master             -> r2/synced/master
Auto-merging sha1foo
CONFLICT (add/add): Merge conflict in sha1foo
Auto-merging foo
CONFLICT (add/add): Merge conflict in foo
Auto-merging conflictor
CONFLICT (add/add): Merge conflict in conflictor
Automatic merge failed; fix conflicts and then commit the result.
[detached HEAD 54748a5] git-annex automatic merge conflict fix
Updating 0cafe66..1f3fc72
Fast-forward
 conflictor | 2 +-
 foo        | 2 +-
 2 files changed, 2 insertions(+), 2 deletions(-)
Counting objects: 24, done.
Delta compression using up to 4 threads.
Compressing objects: 100% (22/22), done.
Writing objects: 100% (24/24), 2.07 KiB | 0 bytes/s, done.
Total 24 (delta 14), reused 0 (delta 0)
To ../../.t\tmprepo79
   9223b4e..54748a5  master -> synced/master
 * [new branch]      git-annex -> synced/git-annex
On branch adjusted/master(unlocked)
nothing to commit, working tree clean
Updating 9223b4e..54748a5
Fast-forward
 conflictor | 2 +-
 foo        | 2 +-
 sha1foo    | 2 +-
 3 files changed, 3 insertions(+), 3 deletions(-)
Updating 592ec16..001733a
Fast-forward
 conflictor | 2 +-
 foo        | 2 +-
 2 files changed, 2 insertions(+), 2 deletions(-)
From ../../.t\tmprepo78
 * [new branch]      adjusted/master(unlocked) -> r1/adjusted/master(unlocked)
 * [new branch]      git-annex                 -> r1/git-annex
 * [new branch]      master                    -> r1/master
 * [new branch]      synced/master             -> r1/synced/master
[adjusted/master(unlocked) 43e95b6] git-annex in .t\tmprepo78
 1 file changed, 1 insertion(+), 1 deletion(-)
From ../../.t\tmprepo79
 + 592ec16...7fbe351 adjusted/master(unlocked) -> r2/adjusted/master(unlocked)  (forced update)
Counting objects: 1, done.
Writing objects: 100% (1/1), 191 bytes | 0 bytes/s, done.
Total 1 (delta 0), reused 0 (delta 0)
To ../../.t\tmprepo79
   54748a5..a15aa8c  master -> synced/master
conflictor
conflictor
OK (7.72s)
    map:                                                    Detected a filesystem without fifo support.
  Disabling ssh connection caching.
  Detected a crippled filesystem.
OK (1.25s)
    uninit:                                                 Detected a filesystem without fifo support.
  Disabling ssh connection caching.
  Detected a crippled filesystem.
OK (1.63s)
    uninit (in git-annex branch):                           Detected a filesystem without fifo support.
  Disabling ssh connection caching.
  Detected a crippled filesystem.
  Detected a filesystem without fifo support.
  Disabling ssh connection caching.
  Detected a crippled filesystem.
Switched to branch 'git-annex'
OK (1.49s)
    upgrade:                                                Detected a filesystem without fifo support.
  Disabling ssh connection caching.
  Detected a crippled filesystem.
OK (0.99s)
    whereis:                                                Detected a filesystem without fifo support.
  Disabling ssh connection caching.
  Detected a crippled filesystem.
OK (2.34s)
    hook remote:                                            Detected a filesystem without fifo support.
  Disabling ssh connection caching.
  Detected a crippled filesystem.
OK (0.97s)
    directory remote:                                       Detected a filesystem without fifo support.
  Disabling ssh connection caching.
  Detected a crippled filesystem.
OK (2.65s)
    rsync remote:                                           Detected a filesystem without fifo support.
  Disabling ssh connection caching.
  Detected a crippled filesystem.
OK (3.92s)
    bup remote:                                             Detected a filesystem without fifo support.
  Disabling ssh connection caching.
  Detected a crippled filesystem.
OKgpg testing not implemented on Windows
 (0.99s)
    crypto:                                               OK
    preferred content:                                      Detected a filesystem without fifo support.
  Disabling ssh connection caching.
  Detected a crippled filesystem.
wanted . ok
(recording state in git...)
group . ok
(recording state in git...)
wanted . ok
(recording state in git...)
group . ok
(recording state in git...)
wanted . ok
(recording state in git...)
OK (5.19s)
    add subdirs:                                            Detected a filesystem without fifo support.
  Disabling ssh connection caching.
  Detected a crippled filesystem.
OK (1.96s)
    addurl:                                                 Detected a filesystem without fifo support.
  Disabling ssh connection caching.
  Detected a crippled filesystem.
curl: (37) Couldn't open file /test2/.t/tmprepo91/myurl
removeDirectoryRecursive: permission denied (Zugriff verweigert)
sleeping 10 seconds and will retry directory cleanup
FAIL
      Exception: removeDirectoryRecursive: permission denied (Zugriff verweigert)
  Unit Tests v5 direct
    add dup:                                              Init Tests
  init:   Detected a filesystem without fifo support.
  Disabling ssh connection caching.
  Detected a crippled filesystem.
  Entering an adjusted branch where files are unlocked as this filesystem does not support locked files.
  adjusted branch adjusted/master(unlocked) already exists.
  Aborting because that branch may have changes that have not yet reached master
  You can check out the adjusted branch manually to enter it, or delete the adjusted branch and re-run this command.
  Failed to enter adjusted branch!
FAIL (0.59s)
    git annex direct failed
  add:  FAIL (0.18s)
    foo is not a (crippled) symlink

2 out of 2 tests failed (0.76s)
FAIL
      Exception: init tests failed! cannot continue
    add extras:                                           FAIL
      Exception: init tests failed! cannot continue
    shared clone:                                         FAIL
      Exception: init tests failed! cannot continue
    log:                                                  FAIL
      Exception: init tests failed! cannot continue
    import:                                               FAIL
      Exception: init tests failed! cannot continue
    reinject:                                             FAIL
      Exception: init tests failed! cannot continue
    unannex (no copy):                                    FAIL
      Exception: init tests failed! cannot continue
    unannex (with copy):                                  FAIL
      Exception: init tests failed! cannot continue
    drop (no remote):                                     FAIL
      Exception: init tests failed! cannot continue
    drop (with remote):                                   FAIL
      Exception: init tests failed! cannot continue
    drop (untrusted remote):                              FAIL
      Exception: init tests failed! cannot continue
    get:                                                  FAIL
      Exception: init tests failed! cannot continue
    get (ssh remote):                                     FAIL
      Exception: init tests failed! cannot continue
    move:                                                 FAIL
      Exception: init tests failed! cannot continue
    move (ssh remote):                                    FAIL
      Exception: init tests failed! cannot continue
    copy:                                                 FAIL
      Exception: init tests failed! cannot continue
    lock:                                                 FAIL
      Exception: init tests failed! cannot continue
    lock (v6 --force):                                    FAIL
      Exception: init tests failed! cannot continue
    edit (no pre-commit):                                 FAIL
      Exception: init tests failed! cannot continue
    edit (pre-commit):                                    FAIL
      Exception: init tests failed! cannot continue
    partial commit:                                       FAIL
      Exception: init tests failed! cannot continue
    fix:                                                  FAIL
      Exception: init tests failed! cannot continue
    direct:                                               FAIL
      Exception: init tests failed! cannot continue
    trust:                                                FAIL
      Exception: init tests failed! cannot continue
    fsck (basics):                                        FAIL
      Exception: init tests failed! cannot continue
    fsck (bare):                                          FAIL
      Exception: init tests failed! cannot continue
    fsck (local untrusted):                               FAIL
      Exception: init tests failed! cannot continue
    fsck (remote untrusted):                              FAIL
      Exception: init tests failed! cannot continue
    fsck --from remote:                                   FAIL
      Exception: init tests failed! cannot continue
    migrate:                                              FAIL
      Exception: init tests failed! cannot continue
    migrate (via gitattributes):                          FAIL
      Exception: init tests failed! cannot continue
    unused:                                               FAIL
      Exception: init tests failed! cannot continue
    describe:                                             FAIL
      Exception: init tests failed! cannot continue
    find:                                                 FAIL
      Exception: init tests failed! cannot continue
    merge:                                                FAIL
      Exception: init tests failed! cannot continue
    info:                                                 FAIL
      Exception: init tests failed! cannot continue
    version:                                              FAIL
      Exception: init tests failed! cannot continue
    sync:                                                 FAIL
      Exception: init tests failed! cannot continue
    union merge regression:                               FAIL
      Exception: init tests failed! cannot continue
    adjusted branch merge regression:                     FAIL
      Exception: init tests failed! cannot continue
    adjusted branch subtree regression:                   FAIL
      Exception: init tests failed! cannot continue
    conflict resolution:                                  FAIL
      Exception: init tests failed! cannot continue
    conflict resolution (adjusted branch):                FAIL
      Exception: init tests failed! cannot continue
    conflict resolution movein regression:                FAIL
      Exception: init tests failed! cannot continue
    conflict resolution (mixed directory and file):       FAIL
      Exception: init tests failed! cannot continue
    conflict resolution symlink bit:                      FAIL
      Exception: init tests failed! cannot continue
    conflict resolution (uncommitted local file):         FAIL
      Exception: init tests failed! cannot continue
    conflict resolution (removed file):                   FAIL
      Exception: init tests failed! cannot continue
    conflict resolution (nonannexed file):                FAIL
      Exception: init tests failed! cannot continue
    conflict resolution (nonannexed symlink):             FAIL
      Exception: init tests failed! cannot continue
    conflict resolution (mixed locked and unlocked file): FAIL
      Exception: init tests failed! cannot continue
    map:                                                  FAIL
      Exception: init tests failed! cannot continue
    uninit:                                               FAIL
      Exception: init tests failed! cannot continue
    uninit (in git-annex branch):                         FAIL
      Exception: init tests failed! cannot continue
    upgrade:                                              FAIL
      Exception: init tests failed! cannot continue
    whereis:                                              FAIL
      Exception: init tests failed! cannot continue
    hook remote:                                          FAIL
      Exception: init tests failed! cannot continue
    directory remote:                                     FAIL
      Exception: init tests failed! cannot continue
    rsync remote:                                         FAIL
      Exception: init tests failed! cannot continue
    bup remote:                                           FAIL
      Exception: init tests failed! cannot continue
    crypto:                                               FAIL
      Exception: init tests failed! cannot continue
    preferred content:                                    FAIL
      Exception: init tests failed! cannot continue
    add subdirs:                                          FAIL
      Exception: init tests failed! cannot continue
    addurl:                                               FAIL
      Exception: init tests failed! cannot continue

74 out of 165 tests failed (406.30s)
  (This could be due to a bug in git-annex, or an incompatibility
   with utilities, such as git, installed on this system.)
PS G:\test2>

# End of transcript or log.
"""]]

### Have you had any luck using git-annex before? (Sometimes we get tired of reading bug reports all day and a lil' positive end note does wonders)

Of course! On Linux, it runs perfectly. I manage all my data with git-annex.