List all available data remotes.
usage: dvc remote list [-h] [--global | --system | --local] [-q | -v]
Reads DVC configuration files and prints the list of available remotes, including names and URLs.
--global
- save remote configuration to the global config (e.g.
~/.config/dvc/config
) instead of .dvc/config
.--system
- save remote configuration to the system config (e.g.
/etc/dvc/config
) instead of .dvc/config
.--local
- read a local config file instead
of .dvc/config
. It is located in .dvc/config.local
and is Git-ignored.-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.For simplicity, let's add a default local remote:
$ dvc remote add -d myremote /path/to/remote
Setting 'myremote' as a default remote.
And now the list of remotes should look like:
$ dvc remote list
myremote /path/to/remote
The list will also include any previously added remotes.