summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorGravatar http://edheil.wordpress.com/ <http://edheil.wordpress.com/@web>2012-12-11 20:45:13 +0000
committerGravatar admin <admin@branchable.com>2012-12-11 20:45:13 +0000
commit2c6313399557cf92e6f28efb4b4739d52be7858f (patch)
treea680f9abd780bf2852455f4496c3ab3771f3a7f8
parente1c5bbadba41ba0266a8ed1c8b6243581847871d (diff)
-rw-r--r--doc/bugs/git-annex_fix_not_noticing_file_renames.mdwn33
1 files changed, 33 insertions, 0 deletions
diff --git a/doc/bugs/git-annex_fix_not_noticing_file_renames.mdwn b/doc/bugs/git-annex_fix_not_noticing_file_renames.mdwn
new file mode 100644
index 000000000..4a7a965d1
--- /dev/null
+++ b/doc/bugs/git-annex_fix_not_noticing_file_renames.mdwn
@@ -0,0 +1,33 @@
+What steps will reproduce the problem?
+
+ ~$ mkdir testannex
+ ~$ cd testannex/
+ testannex$ git init
+ Initialized empty Git repository in /Users/ed/testannex/.git/
+ testannex$ git annex init "test annex"
+ init test annex ok
+ (Recording state in git...)
+ testannex$ echo "file1" > file1
+ testannex$ git annex add file1
+ add file1 (checksum...) ok
+ (Recording state in git...)
+ testannex$ mkdir directory
+ testannex$ mv file1 directory/
+ testannex$ cat directory/file1
+ cat: directory/file1: No such file or directory
+ testannex$ git annex fix directory/file1
+ git-annex: directory/file1 not found
+
+
+What is the expected output? What do you see instead?
+
+ git annex fix should fix the symlink. It looks like maybe it's *following* the symlink?
+
+What version of git-annex are you using? On what operating system?
+
+ checkout: 20d195f compiled on OS X 10.7 using cabal.
+
+Please provide any additional information below.
+
+ git annex assistant is not noticing file renames either.
+