Replies: 3 comments 1 reply
-
Sorry I could not reproduce it on my windows computer. mkdir data
cd data
git init
dvc init
mkdir data
echo data > data/data.xml
dvc add data/data.xml |
Beta Was this translation helpful? Give feedback.
1 reply
-
I'm sorry I can't test network drives on my side, I can only guess it might be a bug of DVC on NFS. |
Beta Was this translation helpful? Give feedback.
0 replies
-
Here ya go:
Thanks for the help! If I have time I will try and follow the 'add' command execution path through to see where it may be going wrong. |
Beta Was this translation helpful? Give feedback.
0 replies
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
-
Hello!
I have been playing around with dvc as a potential tracking tool and have some questions about the 'dvc add' behavior. I have watched the tutorial here and when
is called it creates a file data.data.xml.dvc IN the data/ directory.
BUT
When I run the same command I get a data.xml.dvc file in my current directory that as a path variable set to data/data.xml .
Is this the expected functionality? It is quite frustrating to have the .dvc files fill up the main directory.
Is there some configuration I am missing? Is this a Windows quirk?
Also, the way 'dvc add' is functioning is that is adds the dvc file to the directory where 'dvc add' was called. This means if not careful one can have multiple dvc files for the same data. Shouldn't the dvc file always be placed where the data is, that seems saver?
Thanks for any help, not sure if I am doing something wrong or not!
Beta Was this translation helpful? Give feedback.
All reactions