summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorGravatar ringprince <ringprince@web>2013-09-16 11:55:17 +0000
committerGravatar admin <admin@branchable.com>2013-09-16 11:55:17 +0000
commita07fc117b15392e66440b968eb40b3e01c5f1f81 (patch)
tree865f662ad6749a02b2af502830c9bdc51a98d5f1
parent5435ca00cf3784bb7dbd950c3a47f2e273973a2b (diff)
-rw-r--r--doc/forum/bug:_first_annexed_file_needs_to_be_mine.mdwn38
1 files changed, 38 insertions, 0 deletions
diff --git a/doc/forum/bug:_first_annexed_file_needs_to_be_mine.mdwn b/doc/forum/bug:_first_annexed_file_needs_to_be_mine.mdwn
new file mode 100644
index 000000000..9edf98769
--- /dev/null
+++ b/doc/forum/bug:_first_annexed_file_needs_to_be_mine.mdwn
@@ -0,0 +1,38 @@
+Hi,
+
+There seems to be a bug, that prevents me from adding a file,
+that does not belong to me as the first file.
+
+Here is some demonstration:
+
+ > git init
+ > git config user.name dtr
+ > git config user.email dtrn@dtrn.com
+
+ > dd if=/dev/zero of=test1.bin count=1000
+ > dd if/dev/zero of=test2.bin count=1000
+
+ > ll
+ total 1000
+ -rw-rw-r-- 1 dtr dtr 512000 Sep 16 2013 test1.bin
+ -rw-rw-r-- 1 dtr dtr 512000 Sep 16 2013 test2.bin
+
+ > sudo chown someone test2.bin
+ > ll
+ total 1000
+ -rw-rw-r-- 1 dtr dtr 512000 Sep 16 2013 test1.bin
+ -rw-rw-r-- 1 someone dtr 512000 Sep 16 2013 test2.bin
+
+ > git annex init
+ > git annex add test2.bin
+ add test2.bin (checksum...)
+ git-annex: /test-git-annex/.git/annex/objects/Fq/f6/SHA256-s512000--2d4da04b861bb9dbe77c871415931785a18138d6db035f1bbcd0cf8277c6fc23/SHA256-s512000--2d4da04b861bb9dbe77c871415931785a18138d6db035f1bbcd0cf8277c6fc23: setFileMode: permission denied (Operation not permitted)
+ failed
+ git-annex: add: 1 failed
+
+ > git annex add test1.bin
+ add test1.bin (checksum...) ok
+ (Recording state in git...)
+ > git annex add test2.bin
+ add test2.bin (checksum...) ok
+ (Recording state in git...)