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
Running dvc remote default with no argument sets default remote to None. According to documentation this should show the default remote though.
dvc remote default
None
Setting default remote:
>>dvc remote default my_remote >>git diff ... +[core] +remote = my_remote ...
This should query the default, but sets default to None:
>>dvc remote default >>git diff ... +[core] +remote = None
DVC version: 0.66.11 OS: Ubuntu 18.04.2 LTS Method: From repository
The text was updated successfully, but these errors were encountered:
Hi @kaiogu !
This is definitely a bug on our side. Need to modify https://github.com/iterative/dvc/blob/0.69.0/dvc/command/remote.py#L51 to just logger.info() the existing value.
logger.info()
Thanks for the feedback!
Sorry, something went wrong.
Hi @efiop, thanks for developing DVC!
I could give it a try if you haven't already!
@kaiogu Sure, please go ahead! Let us know if you have any questions, we will be happy to help with it!
kaiogu
Successfully merging a pull request may close this issue.
Running
dvc remote default
with no argument sets default remote toNone
.According to documentation this should show the default remote though.
Setting default remote:
This should query the default, but sets default to
None
:DVC version: 0.66.11
OS: Ubuntu 18.04.2 LTS
Method: From repository
The text was updated successfully, but these errors were encountered: