summaryrefslogtreecommitdiff
path: root/doc/bugs/git-annex_fix_not_noticing_file_renames.mdwn
diff options
context:
space:
mode:
authorGravatar Joey Hess <joey@kitenet.net>2014-05-29 15:23:05 -0400
committerGravatar Joey Hess <joey@kitenet.net>2014-05-29 15:23:05 -0400
commit1f6cfecc972b121fa42ea80383183bbaccc2195a (patch)
tree0a450c4226f5e05c2a3597a9f520376de281fffe /doc/bugs/git-annex_fix_not_noticing_file_renames.mdwn
parenta95fb731cd117f35a6e0fce90d9eb35d0941e26e (diff)
remove old closed bugs and todo items to speed up wiki updates and reduce size
Remove closed bugs and todos that were least edited before 2014. Command line used: for f in $(grep -l '\[\[done\]\]' *.mdwn); do if [ -z $(git log --since=2014 --pretty=oneline "$f") ]; then git rm $f; git rm -rf $(echo "$f" | sed 's/.mdwn$//'); fi; done
Diffstat (limited to 'doc/bugs/git-annex_fix_not_noticing_file_renames.mdwn')
-rw-r--r--doc/bugs/git-annex_fix_not_noticing_file_renames.mdwn36
1 files changed, 0 insertions, 36 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
deleted file mode 100644
index a68533980..000000000
--- a/doc/bugs/git-annex_fix_not_noticing_file_renames.mdwn
+++ /dev/null
@@ -1,36 +0,0 @@
-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.
-
-> git-annex commands (other than `git annex add`) only operate on files
-> checked into git, which `directory/file1` is not, since you did not use
-> `git mv`. Once you `git add` the file, it'll work. [[done]] --[[Joey]]