Check out our new VS Code extension for experiment tracking and model development
Rename a data remote. The remote's URL is not changed by this command.
usage: dvc remote rename [-h]
[--global | --system | --project | --local]
[-q | -v]
name new
positional arguments:
name Remote to be renamed
new New name of the remote
This command modify a section in the DVC config file. Alternatively, it is possible to edit config files manually.
See also dvc remote modify
to change other aspects of remote configuration,
such as the URL or access credentials.
Both name
and new
arguments are required, with the old and new names for the
DVC remote, respectively.
--system
- modify the system config file (e.g. /etc/xdg/dvc/config
)
instead of .dvc/config
.
--global
- modify the global config file (e.g. ~/.config/dvc/config
)
instead of .dvc/config
.
--project
- modify the project's config file (.dvc/config
). This is the
default behavior.
--local
- modify the Git-ignored local config file (located in
.dvc/config.local
) instead of .dvc/config
.
-h
, --help
- prints the usage/help message, and exit.
-q
, --quiet
- do not write anything to standard output. Exit with 0 if no
problems arise, otherwise 1.
-v
, --verbose
- displays detailed tracing information.
Add Amazon S3 remote:
$ dvc remote add myremote s3://mybucket/path
Rename it:
$ dvc remote rename myremote s3remote