diff --git a/.dvc/.gitignore b/.dvc/.gitignore index 775b312bc0..6e6f014140 100644 --- a/.dvc/.gitignore +++ b/.dvc/.gitignore @@ -7,3 +7,4 @@ /state-wal /cache /pkg +/repos diff --git a/scripts/completion/dvc.bash b/scripts/completion/dvc.bash index d620a2738a..7457371b53 100644 --- a/scripts/completion/dvc.bash +++ b/scripts/completion/dvc.bash @@ -8,40 +8,43 @@ # - https://opensource.com/article/18/3/creating-bash-completion-script #---------------------------------------------------------- -_dvc_commands='add checkout commit config destroy fetch get-url get gc \ +_dvc_commands='add cache checkout commit config destroy diff fetch get-url get gc \ import-url import init install lock metrics move pipeline pull push \ - remote remove repro root run status unlock unprotect' + remote remove repro root run status unlock unprotect version' -_dvc_options="-h --help -v --version" -_dvc_global_options="-h --help -q --quiet -V --verbose" +_dvc_options='-h --help -V --version' +_dvc_global_options='-h --help -q --quiet -v --verbose' -_dvc_add="-R --recursive -f --file --no-commit" -_dvc_checkout="$(compgen -G '*.dvc')" -_dvc_commit="" -_dvc_config="-u --unset --local --system --global" -_dvc_destroy="-f --force" -_dvc_fetch="--show-checksums -j --jobs -r --remote -a --all-branches -T --all-tags -d --with-deps -R --recursive" -_dvc_get-url="" -_dvc_get="-o --out --rev" -_dvc_gc="-a --all-branches -T --all-tags -c --cloud -r --remote -f --force -p --project" -_dvc_import-url="--resume -f --file" -_dvc_import="-o --out --rev" -_dvc_init="--no-scm -f --force" -_dvc_install="" -_dvc_lock="$(compgen -G '*.dvc')" -_dvc_metrics="" -_dvc_move="$(compgen -G '*')" -_dvc_pipeline="" -_dvc_pull="--show-checksums -j --jobs -r --remote -a --all-branches -T --all-tags -d --with-deps -f --force -R --recursive" -_dvc_push="--show-checksums -j --jobs -r --remote -a --all-branches -T --all-tags -d --with-deps -R --recursive" -_dvc_remote="" -_dvc_remove="--dry -o --outs -p --purge --force" -_dvc_repro="--dry -f --force -s --single-item -c --cwd -m --metrics -i --interactive -p --pipeline -P --all-pipelines --ignore-build-cache --no-commit -s --single-item" -_dvc_root="" -_dvc_run="--no-exec -f --file -c --cwd -d --deps -o --outs -O --outs-no-cache -M --metrics-no-cache -y --yes --overwrite-dvc-file --ignore-build-cache --remove-outs --no-commit -w --wdir" -_dvc_status="--show-checksums -j --jobs -r --remote -a --all-branches -T --all-tags -d --with-deps -c --cloud -q --quiet" -_dvc_unlock="$(compgen -G '*.dvc')" -_dvc_unprotect="" +_dvc_add='-R --recursive -f --file --no-commit $(compgen -G *)' +_dvc_cache='' +_dvc_checkout='-f --force -d --with-deps -R --recursive $(compgen -G *.dvc)' +_dvc_commit='-f --force -d --with-deps -R --recursive $(compgen -G *.dvc)' +_dvc_config='-u --unset --local --system --global' +_dvc_destroy='-f --force' +_dvc_diff='-t --target' +_dvc_fetch='--show-checksums -j --jobs -r --remote -a --all-branches -T --all-tags -d --with-deps -R --recursive $(compgen -G *.dvc)' +_dvc_get_url='' +_dvc_get='-o --out --rev' +_dvc_gc='-a --all-branches -T --all-tags -c --cloud -r --remote -f --force -p --projects -j --jobs' +_dvc_import_url='--resume -f --file' +_dvc_import='-o --out --rev' +_dvc_init='--no-scm -f --force' +_dvc_install='' +_dvc_lock='$(compgen -G *.dvc)' +_dvc_metrics='' +_dvc_move='$(compgen -G *)' +_dvc_pipeline='' +_dvc_pull='--show-checksums -j --jobs -r --remote -a --all-branches -T --all-tags -f --force -d --with-deps -R --recursive $(compgen -G *.dvc)' +_dvc_push='--show-checksums -j --jobs -r --remote -a --all-branches -T --all-tags -d --with-deps -R --recursive $(compgen -G *.dvc)' +_dvc_remote='' +_dvc_remove='-o --outs -p --purge -f --force $(compgen -G *.dvc)' +_dvc_repro='-f --force -s --single-item -c --cwd -m --metrics --dry -i --interactive -p --pipeline -P --all-pipelines --ignore-build-cache --no-commit -R --recursive --downstream $(compgen -G *.dvc)' +_dvc_root='' +_dvc_run='--no-exec -f --file -c --cwd -d --deps -o --outs -O --outs-no-cache --outs-persist --outs-persist-no-cache -m --metrics -M --metrics-no-cache -y --yes --overwrite-dvcfile --ignore-build-cache --remove-outs --no-commit -w --wdir' +_dvc_status='--show-checksums -j --jobs -r --remote -a --all-branches -T --all-tags -d --with-deps -c --cloud $(compgen -G *.dvc)' +_dvc_unlock='$(compgen -G *.dvc)' +_dvc_unprotect='$(compgen -G *)' +_dvc_version='' # Notes: #