You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Hi there, the locked file warning seems to be shown for all files in dvc status:
git init
dvc init
git add .dvc
# Create example folder
mkdir example
cd example
# Create hello.txt and world.txt
dvc run -o hello.txt 'yes "Hello" | head -10 > hello.txt'
dvc run -o world.txt 'yes "World" | head -10 > world.txt'
# Merge into hello_world.txt
dvc run -d hello.txt -d world.txt -o hello_world.txt 'paste hello.txt world.txt > hello_world.txt'
## Running command:
## yes "Hello" | head -10 > hello.txt
## Running command:
## yes "World" | head -10 > world.txt
## Running command:
## paste hello.txt world.txt > hello_world.txt
dvc status
## DVC file 'hello.txt.dvc' is locked. Its dependecies are not going to be shown in status output.
## DVC file 'world.txt.dvc' is locked. Its dependecies are not going to be shown in status output.
## DVC file 'hello_world.txt.dvc' is locked. Its dependecies are not going to be shown in status output.
## hello.txt.dvc
## world.txt.dvc
cat hello_world.txt.dvc
## cmd: paste hello.txt world.txt > hello_world.txt
## deps:
## - md5: 2b360db687b5870bd328adbb56d3bf8f
## path: hello.txt
## - md5: 53d23c8121564867f8ee222841a83811
## path: world.txt
## md5: e1e60249c4f84c11cda133706d649e31
## outs:
## - cache: true
## md5: 1abddce536be836e612dedc0a272b86f
## metric: false
## path: hello_world.txt
The text was updated successfully, but these errors were encountered:
Hi there, the locked file warning seems to be shown for all files in dvc status:
The text was updated successfully, but these errors were encountered: