Repro does not work without .git directory
See original GitHub issueIn a dvc repository:
$ rm -rf .git
$ dvc repro featurize.dvc
Error: Unexpected error: 'Base' object has no attribute 'dir'
Having any troubles? Hit us up at dvc.org/support, we are always happy to help!
Issue Analytics
- State:
- Created 5 years ago
- Comments:6 (3 by maintainers)
Top Results From Across the Web
Git clone without .git directory - Stack Overflow
44. This question is not a dupe of How to do a "git export" (like "svn export"). This question asks on how to...
Read more >Git error - Fatal: Not a git repository and how to fix it | Datree.io
A Git command needs to be run on a specific repository, so this error typically occurs when a Git command is run in...
Read more >Getting a Git Repository - Git SCM
You can take a local directory that is currently not under version control, and turn it into a Git repository, or. You can...
Read more >Set up Git repository locally - Contributor guide | Microsoft Learn
This article provides guidance to create your local Git repository and contribute to documentation, including the forking and cloning ...
Read more >Solving “Fatal: Not A Git Repository” (Or Any Of The Parent ...
For the second situation, you need to initialize the Git repository in your project folder. To do so, you need to navigate to...
Read more >
Top Related Medium Post
No results found
Top Related StackOverflow Question
No results found
Troubleshoot Live Code
Lightrun enables developers to add logs, metrics and snapshots to live code - no restarts or redeploys required.
Start Free
Top Related Reddit Thread
No results found
Top Related Hackernoon Post
No results found
Top Related Tweet
No results found
Top Related Dev.to Post
No results found
Top Related Hashnode Post
No results found
@dmpetrov, the error was raised by an error during the directory walk, to reproduce it, I needed to modify a little bit my script above:
The following PR should fix it: https://github.com/iterative/dvc/pull/1281
Thanks, @dmpetrov , I’ll check it