We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
When tracking a file that is executable, using a shared cache with symlinks, dvc checkout keeps stating changes are applied to the file.
contents of dvc.yaml:
dvc.yaml
stages: add_some_text: wdir: ../ desc: write some text cmd: - > touch data/some_new_file.txt deps: - data/data.txt outs: - data/some_new_file.txt
contents of config
config
[cache] dir = ../../cache type = symlink shared = group ['remote "temp"'] url = ../../remote [core] remote = temp
steps to reproduce:
mkdir -p dvc_mwe/dvc_mwe/data dvc_mwe/cache dvc_mwe/remote
touch dvc_mwe/dvc_mwe/data/data.txt && chmod +x dvc_mwe/dvc_mwe/data/data.txt
cd dvc_mwe/dvc_mwe
git init && dvc init
dvc_mwe/dvc_mwe/data/dvc.yaml
dvc_mwe/dvc_mwe/.dvc/config
dvc add data/data.txt
dvc repro data/dvc.yaml
dvc push
dvc checkout
dvc checkout will keep stating that some_new_file.txt has been modified
some_new_file.txt
repeatedly calling dvc checkout without any data changes should not print any files that have been modified
python==3.10.12 dvc==3.55.2
Output of dvc doctor:
dvc doctor
$ dvc doctor DVC version: 3.55.2 (pip) ------------------------- Platform: Python 3.10.13 on Linux-6.9.3-76060903-generic-x86_64-with-glibc2.35 Subprojects: dvc_data = 3.16.6 dvc_objects = 5.1.0 dvc_render = 1.0.2 dvc_task = 0.40.2 scmrepo = 3.3.8 Supports: http (aiohttp = 3.10.10, aiohttp-retry = 2.8.3), https (aiohttp = 3.10.10, aiohttp-retry = 2.8.3) Config: Global: /home/joostdorscheidt/.config/dvc System: /etc/xdg/xdg-pop/dvc Cache types: hardlink, symlink Cache directory: ext4 on /dev/mapper/data-root Caches: local Remotes: local Workspace directory: ext4 on /dev/mapper/data-root Repo: dvc, git Repo.site_cache_dir: /var/tmp/dvc/repo/8324f5dfe498694db375810644b6aa5a
Additional Information (if any):
The text was updated successfully, but these errors were encountered:
No branches or pull requests
Bug Report
checkout: incorrectly states files are modified when they are executable
Description
When tracking a file that is executable, using a shared cache with symlinks, dvc checkout keeps stating changes are applied to the file.
Reproduce
contents of
dvc.yaml
:contents of
config
steps to reproduce:
mkdir -p dvc_mwe/dvc_mwe/data dvc_mwe/cache dvc_mwe/remote
touch dvc_mwe/dvc_mwe/data/data.txt && chmod +x dvc_mwe/dvc_mwe/data/data.txt
cd dvc_mwe/dvc_mwe
git init && dvc init
dvc_mwe/dvc_mwe/data/dvc.yaml
dvc_mwe/dvc_mwe/.dvc/config
dvc add data/data.txt
dvc repro data/dvc.yaml
dvc push
dvc checkout
dvc checkout
dvc checkout will keep stating that
some_new_file.txt
has been modifiedExpected
repeatedly calling
dvc checkout
without any data changes should not print any files that have been modifiedEnvironment information
python==3.10.12
dvc==3.55.2
Output of
dvc doctor
:Additional Information (if any):
The text was updated successfully, but these errors were encountered: