diff options
author | http://caust1c.myopenid.com/ <asbraithwaite@web> | 2013-08-12 20:12:45 +0000 |
---|---|---|
committer | admin <admin@branchable.com> | 2013-08-12 20:12:45 +0000 |
commit | 8c456ec8c3e94f91145169ddf6150b84cd3ab75b (patch) | |
tree | 84a68eda625deb23a3049cf857169dd4dcb33685 /doc | |
parent | 0335146436ce7409175895c386893eaf3f41edfd (diff) |
Diffstat (limited to 'doc')
-rw-r--r-- | doc/bugs/non-annexed_file_changed_to_annexed_on_typechange.mdwn | 33 |
1 files changed, 33 insertions, 0 deletions
diff --git a/doc/bugs/non-annexed_file_changed_to_annexed_on_typechange.mdwn b/doc/bugs/non-annexed_file_changed_to_annexed_on_typechange.mdwn new file mode 100644 index 000000000..95aa20c22 --- /dev/null +++ b/doc/bugs/non-annexed_file_changed_to_annexed_on_typechange.mdwn @@ -0,0 +1,33 @@ +### Please describe the problem. + +When changing a file in a repository from a symlink to a normal file causes annex to create an annexed file from that typechange regardless of weather or not it was an annexed file. + + +### What steps will reproduce the problem? + + git init newrepo + cd newrepo && git annex init + touch realfile + git commit -am "added realfile" + mkdir newdir && cd newdir + ln -s ../realfile newfile + git commit -am "Added placeholder until we get assets from designers" + dd bs=1024 count=10000 if=/dev/zero of=newfile + git commit -am "Finally got assets from designers" + ls -la newfile + # lrwxrwxrwx 1 user user <date> newfile -> ../.git/annex/objects/XX/XX/UUID/UUID + +### What version of git-annex are you using? On what operating system? + +git-annex version: 4.20130802 +Ubuntu 12.04 LTS + +### Please provide any additional information below. + +[[!format sh """ +# If you can, paste a complete transcript of the problem occurring here. +# If the problem is with the git-annex assistant, paste in .git/annex/daemon.log + + +# End of transcript or log. +"""]] |