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
$ dvc -V
0.75.0
# Self-import works just fine. It even does not use data-remote (I didn't push data).
$ dvc import . sources/file.csv --rev tag3
# But it fails when I checkout a revision with no data-remote specified.
# Data-remote was specified after tag1 revision.
$ dvc import . sources/file.csv --rev tag1
Importing 'sources/file.csv (.)' -> 'file.csv'
ERROR: failed to import 'sources/file.csv' from '.'. - No DVC remote is specified in target repository '.'.
The text was updated successfully, but these errors were encountered:
@dmpetrov Just to clarify: indeed, we shouldn't try to pull from remote when importing from the same repo that we are in, but that logic will automatically apply after #2599 , as we will simply set cache dir as a default remote if it doesn't exist, so we'll just check our cache against our cache.
The text was updated successfully, but these errors were encountered: