From 285f24253d99884f4ad2dedb5023a7a90de4b8de Mon Sep 17 00:00:00 2001 From: Kshitiz_G Date: Thu, 10 Apr 2025 03:50:40 +0530 Subject: [PATCH 1/6] changes all master branch to main --- content/docs/api-reference/get_url.md | 4 ++-- content/docs/command-reference/checkout.md | 4 ++-- content/docs/command-reference/commit.md | 2 +- content/docs/command-reference/diff.md | 4 ++-- content/docs/command-reference/exp/apply.md | 6 +++--- content/docs/command-reference/exp/branch.md | 2 +- content/docs/command-reference/exp/push.md | 2 +- content/docs/command-reference/exp/remove.md | 14 +++++++------- content/docs/command-reference/exp/rename.md | 8 ++++---- content/docs/command-reference/exp/show.md | 2 +- content/docs/command-reference/get.md | 4 ++-- content/docs/command-reference/import.md | 4 ++-- content/docs/command-reference/install.md | 14 +++++++------- content/docs/command-reference/update.md | 2 +- content/docs/command-reference/version.md | 4 ++-- content/docs/contributing/core.md | 2 +- content/docs/dvclive/ml-frameworks/mmcv.md | 2 +- .../data-pipelines/metrics-parameters-plots.md | 2 +- .../docs/start/experiments/experiment-tracking.md | 2 +- .../use-cases/versioning-data-and-models/index.md | 2 +- .../versioning-data-and-models/tutorial.md | 4 ++-- content/docs/user-guide/analytics.md | 2 +- .../discovering-and-accessing-data.md | 2 +- .../docs/user-guide/how-to/run-dvc-on-windows.md | 2 +- content/docs/user-guide/index.md | 2 +- content/docs/user-guide/integrations/evidently.md | 2 +- 26 files changed, 50 insertions(+), 50 deletions(-) diff --git a/content/docs/api-reference/get_url.md b/content/docs/api-reference/get_url.md index 1316a8a285..f120d918d5 100644 --- a/content/docs/api-reference/get_url.md +++ b/content/docs/api-reference/get_url.md @@ -132,6 +132,6 @@ url = https://remote.dvc.org/dataset-registry ``` [`.dvc/config`]: - https://github.com/iterative/dataset-registry/blob/master/.dvc/config + https://github.com/iterative/dataset-registry/blob/main/.dvc/config [`get-started/data.xml.dvc`]: - https://github.com/iterative/dataset-registry/blob/master/get-started/data.xml.dvc + https://github.com/iterative/dataset-registry/blob/main/get-started/data.xml.dvc diff --git a/content/docs/command-reference/checkout.md b/content/docs/command-reference/checkout.md index 2cf58c4cb5..3abbc57b4c 100644 --- a/content/docs/command-reference/checkout.md +++ b/content/docs/command-reference/checkout.md @@ -218,7 +218,7 @@ DVC went through the stages (in `dvc.yaml`) and adjusted the current set of `targets`: ```cli -$ git checkout master +$ git checkout main $ dvc checkout # Start with latest version of everything. $ git checkout baseline-experiment -- dvc.lock @@ -247,7 +247,7 @@ $ dvc install `dvc install` installs Git hooks to automate common operations, including running `dvc checkout` when needed. -(Having followed the previous example) we can then checkout the master branch +(Having followed the previous example) we can then checkout the main branch again: ```cli diff --git a/content/docs/command-reference/commit.md b/content/docs/command-reference/commit.md index 0fd0de54ba..322dfeed2a 100644 --- a/content/docs/command-reference/commit.md +++ b/content/docs/command-reference/commit.md @@ -268,7 +268,7 @@ execute. $ git add src/train.py $ git commit -m "CHANGED" -[master 72327bd] CHANGED +[main 72327bd] CHANGED 1 file changed, 2 insertions(+) $ dvc commit diff --git a/content/docs/command-reference/diff.md b/content/docs/command-reference/diff.md index 3352f0aa9b..6a6fcea662 100644 --- a/content/docs/command-reference/diff.md +++ b/content/docs/command-reference/diff.md @@ -163,7 +163,7 @@ directory. Then make sure that you have the latest code and data with the following commands: ```cli -$ git checkout master +$ git checkout main $ dvc checkout ``` @@ -233,7 +233,7 @@ Having followed the previous examples' setup, move into the and data with the following commands: ```cli -$ git checkout master +$ git checkout main $ dvc checkout ``` diff --git a/content/docs/command-reference/exp/apply.md b/content/docs/command-reference/exp/apply.md index c7d716b764..1877e70e0f 100644 --- a/content/docs/command-reference/exp/apply.md +++ b/content/docs/command-reference/exp/apply.md @@ -110,7 +110,7 @@ We can inspect what changed in the workspace with Git, ```cli $ git status -On branch master +On branch main Changes not staged for commit: modified: dvc.lock modified: params.yaml @@ -147,7 +147,7 @@ $ git add . $ git commit -m "persist gluey-leak" ``` -We can now see that the experiment is the new tip of our master branch: +We can now see that the experiment is the new tip of our main branch: ```cli $ dvc exp show @@ -158,7 +158,7 @@ $ dvc exp show neutral:**Experiment** neutral:**Created** metric:**auc** param:**featurize.max_features** param:**featurize.ngrams** ───────────────────────────────────────────────────────────────────────────── workspace - 0.69830 2000 2 - master 04:31 PM 0.69830 2000 2 + main 04:31 PM 0.69830 2000 2 ───────────────────────────────────────────────────────────────────────────── ``` diff --git a/content/docs/command-reference/exp/branch.md b/content/docs/command-reference/exp/branch.md index 3f62aeec5e..59330196f4 100644 --- a/content/docs/command-reference/exp/branch.md +++ b/content/docs/command-reference/exp/branch.md @@ -94,7 +94,7 @@ And inspect the result with Git: ```cli $ git branch -* master +* main gluey-leak-branch ``` diff --git a/content/docs/command-reference/exp/push.md b/content/docs/command-reference/exp/push.md index dea28307d8..2696783305 100644 --- a/content/docs/command-reference/exp/push.md +++ b/content/docs/command-reference/exp/push.md @@ -117,7 +117,7 @@ We can now see that the experiment exists in the remote repo: ```cli $ dvc exp list --all origin -master: +main: conic-ease lucid-lair major-mela diff --git a/content/docs/command-reference/exp/remove.md b/content/docs/command-reference/exp/remove.md index 6495d19be6..03fe0f260e 100644 --- a/content/docs/command-reference/exp/remove.md +++ b/content/docs/command-reference/exp/remove.md @@ -58,7 +58,7 @@ Let's say we have `dvc exp run` 3 experiments in our project: ```cli $ dvc exp list -master: +main: major-mela conic-ease lucid-lair @@ -71,7 +71,7 @@ To remove any of them, give their names to `dvc exp remove`. Or use the `--all` $ dvc exp remove conic-ease lucid-lair $ dvc exp list -master: +main: major-mela $ dvc exp remove -A @@ -104,7 +104,7 @@ $ dvc exp show neutral:**Experiment** neutral:**Created** neutral:**State** metric:**avg_prec** metric:**roc_auc** metric:**train.min_split** ────────────────────────────────────────────────────────────────────────────────────── workspace - - 0.57553 0.94652 2 - master Aug 02, 2021 - 0.53252 0.9107 2 + main Aug 02, 2021 - 0.53252 0.9107 2 └── 5751540 [split32] 04:57 PM Queued - - 32 ────────────────────────────────────────────────────────────────────────────────────── ``` @@ -115,14 +115,14 @@ We can also remove experiments from a remote Git repository: $ dvc exp push myremote $ dvc exp list myremote -master: +main: conic-ease urban-sign major-mela $ dvc exp remove -g myremote urban-sign major-mela $ dvc exp list myremote -master: +main: conic-ease ``` @@ -131,7 +131,7 @@ their names to `dvc exp remove` with the `--keep` flag : ```cli $ dvc exp list -master: +main: major-mela conic-ease lucid-lair @@ -139,7 +139,7 @@ master: $ dvc exp remove --keep major-mela $ dvc exp list -master: +main: major-mela ``` diff --git a/content/docs/command-reference/exp/rename.md b/content/docs/command-reference/exp/rename.md index 35cfe78afa..c988cb39f7 100644 --- a/content/docs/command-reference/exp/rename.md +++ b/content/docs/command-reference/exp/rename.md @@ -39,7 +39,7 @@ Let's say we have created 3 experiments in our project using `dvc exp run`: ```cli $ dvc exp list -master: +main: major-mela conic-ease lucid-lair @@ -52,7 +52,7 @@ To rename any of them, pass the original and new experiment names to $ dvc exp rename conic-ease renamed-exp $ dvc exp list -master: +main: major-mela renamed-exp lucid-lair @@ -66,14 +66,14 @@ We can also rename an experiment from a remote Git repository: $ dvc exp push myremote $ dvc exp list myremote -master: +main: conic-ease urban-sign major-mela $ dvc exp rename -g myremote urban-sign renamed-exp $ dvc exp list myremote -master: +main: conic-ease renamed-exp major-mela diff --git a/content/docs/command-reference/exp/show.md b/content/docs/command-reference/exp/show.md index 6b9c998a4f..a387d8eaff 100644 --- a/content/docs/command-reference/exp/show.md +++ b/content/docs/command-reference/exp/show.md @@ -170,7 +170,7 @@ code. Let's say we have run 3 experiments in our project. The basic usage shows the -workspace (Git working tree) and experiments derived from `HEAD` (`master` +workspace (Git working tree) and experiments derived from `HEAD` (`main` branch in this case), and all of their metrics, parameters and dependencies (scroll right to see all): diff --git a/content/docs/command-reference/get.md b/content/docs/command-reference/get.md index a12b499799..a718ca9dee 100644 --- a/content/docs/command-reference/get.md +++ b/content/docs/command-reference/get.md @@ -122,9 +122,9 @@ the source Git repo. Instead, it's exported in the `dvc.yaml` file as an o of the `train` stage (in the `outs` field). DVC will then `dvc pull` the file from the `dvc remote default` of the source DVC project (found in [its config file]). -[root directory]: https://github.com/iterative/example-get-started/tree/master/ +[root directory]: https://github.com/iterative/example-get-started/tree/main/ [its config file]: - https://github.com/iterative/example-get-started/blob/master/.dvc/config + https://github.com/iterative/example-get-started/blob/main/.dvc/config diff --git a/content/docs/command-reference/import.md b/content/docs/command-reference/import.md index 98ae814d2b..0a13afbb21 100644 --- a/content/docs/command-reference/import.md +++ b/content/docs/command-reference/import.md @@ -176,7 +176,7 @@ outs: ``` Several of the values above are pulled from the original `.dvc` file -[in the external DVC repository](https://github.com/iterative/example-get-started/blob/master/data/data.xml.dvc). +[in the external DVC repository](https://github.com/iterative/example-get-started/blob/main/data/data.xml.dvc). The `url` and `rev_lock` subfields under `repo` are used to save the origin and version of the dependency, respectively. @@ -217,7 +217,7 @@ $ dvc update --rev cats-dogs-v2 cats-dogs.dvc ``` > In the above example, the value for `rev` in the new `.dvc` file will be -> `master` (a branch) so it will be able update normally going forward. +> `main` (a branch) so it will be able update normally going forward. ## Example: Data registry diff --git a/content/docs/command-reference/install.md b/content/docs/command-reference/install.md index 5573b250d0..2f2573c10a 100644 --- a/content/docs/command-reference/install.md +++ b/content/docs/command-reference/install.md @@ -214,7 +214,7 @@ Data and pipelines are up to date. After running `git checkout` we are also shown a message saying _You are in 'detached HEAD' state_. Returning the workspace to a normal state requires -running `git checkout master`. +running `git checkout main`. We also see that the first `dvc status` tells us about differences between the project's cache and the data files currently in the workspace. Git @@ -225,10 +225,10 @@ Running `dvc checkout` then brings them up to date, and a second `dvc status` tells us that the data files now do match the DVC files. ```cli -$ git checkout master +$ git checkout main Previous HEAD position was 6666298 Create ML pipeline stages -Switched to branch 'master' -Your branch is up to date with 'origin/master'. +Switched to branch 'main' +Your branch is up to date with 'origin/main'. $ dvc checkout ``` @@ -271,7 +271,7 @@ matching what is referenced in the DVC files. ## Example: Showing DVC status when committing with Git To follow this example, start with the same workspace as before, making sure it -is not in a _detached HEAD_ state by running `git checkout master`. +is not in a _detached HEAD_ state by running `git checkout main`. If we simply edit one of the code files: @@ -283,7 +283,7 @@ $ git commit -a -m "modified featurization" featurize: changed deps: modified: src/featurization.py -[master 1116ddc] modified featurization +[main 1116ddc] modified featurization 1 file changed, 1 insertion(+), 1 deletion(-) ``` @@ -305,7 +305,7 @@ M dvc.lock $ git commit -a -m "updated data after modified featurization" Data and pipelines are up to date. -[master 78d0c44] modified featurization +[main 78d0c44] modified featurization 5 files changed, 12 insertions(+), 12 deletions(-) ``` diff --git a/content/docs/command-reference/update.md b/content/docs/command-reference/update.md index 359727a60c..0578f44c10 100644 --- a/content/docs/command-reference/update.md +++ b/content/docs/command-reference/update.md @@ -36,7 +36,7 @@ fixed to a commit hash (`rev` field in the `.dvc` file). Use the `--rev` option to update an imported artifact to a different revision. ```cli -$ dvc update --rev master +$ dvc update --rev main ``` ## Options diff --git a/content/docs/command-reference/version.md b/content/docs/command-reference/version.md index 0978b8f3f4..a1361a5c67 100644 --- a/content/docs/command-reference/version.md +++ b/content/docs/command-reference/version.md @@ -48,7 +48,7 @@ The detail of DVC version depends upon the way of installing DVC. If there are any issues reported with the official build, they can be traced using the official version number. -- **Development version**: contains all the changes done to the `master` branch +- **Development version**: contains all the changes done to the `main` branch of DVC's repository, following the latest official release. It can be [installed](/doc/user-guide/contributing/core#development-environment) after cloning DVC's repo. Running this setup may result in usage issues, as it @@ -57,7 +57,7 @@ The detail of DVC version depends upon the way of installing DVC. Any errors reported with the development version can be traced using the Git commit hash displayed in the output of `dvc version`, for example: `1.10.0+292cab.mod`. The part before `+` is the official version number, and - the following part is the commit hash of the tip of the `master` branch. The + the following part is the commit hash of the tip of the `main` branch. The optional suffix `.mod` means that code is modified. - **Binary or Package manager**: shows how DVC was downloaded and diff --git a/content/docs/contributing/core.md b/content/docs/contributing/core.md index 49eb40a663..e3ebffe345 100644 --- a/content/docs/contributing/core.md +++ b/content/docs/contributing/core.md @@ -90,7 +90,7 @@ as expected. For specific functionality, you will need to use functional tests alongside [pytest](https://docs.pytest.org/en/latest/) fixtures to create a temporary directory, Git and/or DVC repo, and bootstrap some files. See the -[`dir_helpers` module](https://github.com/iterative/dvc/blob/master/tests/dir_helpers.py) +[`dir_helpers` module](https://github.com/iterative/dvc/blob/main/tests/dir_helpers.py) docstring for some usage examples. ## Running tests diff --git a/content/docs/dvclive/ml-frameworks/mmcv.md b/content/docs/dvclive/ml-frameworks/mmcv.md index 6022171a00..e13da2fbd2 100644 --- a/content/docs/dvclive/ml-frameworks/mmcv.md +++ b/content/docs/dvclive/ml-frameworks/mmcv.md @@ -6,7 +6,7 @@ DVCLive allows you to add experiment tracking capabilities to your ## Usage Register the -[`DvcliveLoggerHook`](https://github.com/open-mmlab/mmcv/blob/master/mmcv/runner/hooks/logger/dvclive.py) +[`DvcliveLoggerHook`](https://github.com/open-mmlab/mmcv/blob/main/mmcv/runner/hooks/logger/dvclive.py) the following in the config file of your [OpenMMlab](https://github.com/open-mmlab) project: diff --git a/content/docs/start/data-pipelines/metrics-parameters-plots.md b/content/docs/start/data-pipelines/metrics-parameters-plots.md index f19e61accf..826aca9ea1 100644 --- a/content/docs/start/data-pipelines/metrics-parameters-plots.md +++ b/content/docs/start/data-pipelines/metrics-parameters-plots.md @@ -142,7 +142,7 @@ file:///Users/dvc/example-get-started/dvc_plots/index.html ![](/img/plots_cm_get_started_show.svg) [`evaluate.py`]: - https://github.com/iterative/example-get-started/blob/master/src/evaluate.py + https://github.com/iterative/example-get-started/blob/main/src/evaluate.py [generate your own]: /doc/user-guide/experiment-management/visualizing-plots Later we will see how to diff --git a/content/docs/start/experiments/experiment-tracking.md b/content/docs/start/experiments/experiment-tracking.md index e1cd1e2638..b40da76b90 100644 --- a/content/docs/start/experiments/experiment-tracking.md +++ b/content/docs/start/experiments/experiment-tracking.md @@ -210,7 +210,7 @@ $ dvc exp show Experiment Created train.loss eval.loss dice_multi base_lr ───────────────────────────────────────────────────────────────────────────────────── workspace - 0.024942 0.013983 0.922 0.001 -master 05:26 PM 0.78426 0.054157 0.49599 0.1 +main 05:26 PM 0.78426 0.054157 0.49599 0.1 ├── 950c3b5 [bifid-says] 05:33 PM 0.024942 0.013983 0.922 0.001 ├── 06090d7 [potty-sash] 05:31 PM 0.026193 0.015237 0.91494 0.01 └── d1ad0a9 [soupy-leak] 05:28 PM 0.075223 0.034786 0.49596 0.1 diff --git a/content/docs/use-cases/versioning-data-and-models/index.md b/content/docs/use-cases/versioning-data-and-models/index.md index 7264179fd7..ed161508fb 100644 --- a/content/docs/use-cases/versioning-data-and-models/index.md +++ b/content/docs/use-cases/versioning-data-and-models/index.md @@ -45,7 +45,7 @@ handled automatically by DVC. Benefits of our approach include: - **Lightweight**: DVC is a - [free](https://github.com/iterative/dvc/blob/master/LICENSE), open-source + [free](https://github.com/iterative/dvc/blob/main/LICENSE), open-source [command line](/doc/command-reference) tool that doesn't require databases, servers, or any other special services. diff --git a/content/docs/use-cases/versioning-data-and-models/tutorial.md b/content/docs/use-cases/versioning-data-and-models/tutorial.md index eb9bc90ab0..0265c15c83 100644 --- a/content/docs/use-cases/versioning-data-and-models/tutorial.md +++ b/content/docs/use-cases/versioning-data-and-models/tutorial.md @@ -295,11 +295,11 @@ When you have a script that takes some data as an input and produces other data > If you tried the commands in the > [Switching between workspace versions](#switching-between-workspace-versions) -> section, go back to the master branch code and data, and remove the +> section, go back to the main branch code and data, and remove the > `model.weights.h5.dvc` file with: > > ```cli -> $ git checkout master +> $ git checkout main > $ dvc checkout > $ dvc remove model.weights.h5.dvc > ``` diff --git a/content/docs/user-guide/analytics.md b/content/docs/user-guide/analytics.md index 2c5f1ec686..5ce5d1a0a8 100644 --- a/content/docs/user-guide/analytics.md +++ b/content/docs/user-guide/analytics.md @@ -43,7 +43,7 @@ accurately measure user counts vs. event counts. ## Implementation The code is viewable in -[`analytics.py`](https://github.com/iterative/dvc/blob/master/dvc/analytics.py). +[`analytics.py`](https://github.com/iterative/dvc/blob/main/dvc/analytics.py). They are done in a separate background process and fail fast to avoid delaying any execution. They will fail immediately and silently if you have no network connection. diff --git a/content/docs/user-guide/data-management/discovering-and-accessing-data.md b/content/docs/user-guide/data-management/discovering-and-accessing-data.md index 4efee1894b..6f67c253df 100644 --- a/content/docs/user-guide/data-management/discovering-and-accessing-data.md +++ b/content/docs/user-guide/data-management/discovering-and-accessing-data.md @@ -48,7 +48,7 @@ data.xml.dvc The benefit of this command over browsing a Git hosting website is that the list includes files and directories tracked by both Git and DVC (`data.xml` is not visible if you -[check GitHub](https://github.com/iterative/dataset-registry/tree/master/get-started)). +[check GitHub](https://github.com/iterative/dataset-registry/tree/main/get-started)). ## Download diff --git a/content/docs/user-guide/how-to/run-dvc-on-windows.md b/content/docs/user-guide/how-to/run-dvc-on-windows.md index 049dcc5a90..ef256bd0a4 100644 --- a/content/docs/user-guide/how-to/run-dvc-on-windows.md +++ b/content/docs/user-guide/how-to/run-dvc-on-windows.md @@ -33,7 +33,7 @@ alternatives: - The full [Cmder](https://cmder.app/) console emulator is another good option. It combines several useful tools like [ConEmu](https://conemu.github.io/) terminal and [Git for Windows](https://gitforwindows.org/) (Git Bash), among - [other shells](https://github.com/cmderdev/cmder/blob/master/README.md#features). + [other shells](https://github.com/cmderdev/cmder/blob/main/README.md#features). - [Anaconda Prompt](https://docs.anaconda.com/anaconda/user-guide/getting-started/#open-prompt-win) is also popular. - Install an actual Linux distro (e.g. Ubuntu) on a diff --git a/content/docs/user-guide/index.md b/content/docs/user-guide/index.md index 879c80360a..3f7ea0e2cb 100644 --- a/content/docs/user-guide/index.md +++ b/content/docs/user-guide/index.md @@ -73,7 +73,7 @@ this set of principles: R, Julia, shell scripts, etc.) or ML libraries (Keras, Tensorflow, PyTorch, Scipy, etc.). -[free]: https://github.com/iterative/dvc/blob/master/LICENSE +[free]: https://github.com/iterative/dvc/blob/main/LICENSE [vs code extension]: /doc/vs-code-extension [python api]: /doc/api-reference [command line]: /doc/command-reference diff --git a/content/docs/user-guide/integrations/evidently.md b/content/docs/user-guide/integrations/evidently.md index d2d748f070..5a99bc1575 100644 --- a/content/docs/user-guide/integrations/evidently.md +++ b/content/docs/user-guide/integrations/evidently.md @@ -194,7 +194,7 @@ $ dvc exp show Experiment Created weathersit temp atemp hum windspeed holiday workingday step begin end ──────────────────────────────────────────────────────────────────────────────────────────────────────────────────────────────────────────────────────────────── workspace - 0.231 0 0 0.062 0.012 0.275 0.593 3 2011-02-15 00:00:00 2011-02-21 23:00:00 - master 10:02 AM - - - - - - - - - - + main 10:02 AM - - - - - - - - - - ├── a96b45c [muggy-rand] 10:02 AM 0.231 0 0 0.062 0.012 0.275 0.593 3 2011-02-15 00:00:00 2011-02-21 23:00:00 ├── 78c6668 [pawky-arcs] 10:02 AM 0.155 0.399 0.537 0.684 0.611 0.588 0.699 2 2011-02-07 00:00:00 2011-02-14 23:00:00 ├── c1dd720 [joint-wont] 10:02 AM 0.779 0.098 0.107 0.03 0.171 0.545 0.653 1 2011-01-29 00:00:00 2011-02-07 23:00:00 From d877bda0d799364f7bb87695a9e1069d33591020 Mon Sep 17 00:00:00 2001 From: Kshitiz Gupta Date: Thu, 10 Apr 2025 03:56:43 +0530 Subject: [PATCH 2/6] Update mmcv.md --- content/docs/dvclive/ml-frameworks/mmcv.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/content/docs/dvclive/ml-frameworks/mmcv.md b/content/docs/dvclive/ml-frameworks/mmcv.md index e13da2fbd2..6022171a00 100644 --- a/content/docs/dvclive/ml-frameworks/mmcv.md +++ b/content/docs/dvclive/ml-frameworks/mmcv.md @@ -6,7 +6,7 @@ DVCLive allows you to add experiment tracking capabilities to your ## Usage Register the -[`DvcliveLoggerHook`](https://github.com/open-mmlab/mmcv/blob/main/mmcv/runner/hooks/logger/dvclive.py) +[`DvcliveLoggerHook`](https://github.com/open-mmlab/mmcv/blob/master/mmcv/runner/hooks/logger/dvclive.py) the following in the config file of your [OpenMMlab](https://github.com/open-mmlab) project: From bcc3ab3ef4c11d89b05fbc3ae016d803db16086f Mon Sep 17 00:00:00 2001 From: Kshitiz Gupta Date: Thu, 10 Apr 2025 03:59:09 +0530 Subject: [PATCH 3/6] Update get_url.md --- content/docs/api-reference/get_url.md | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/content/docs/api-reference/get_url.md b/content/docs/api-reference/get_url.md index f120d918d5..1316a8a285 100644 --- a/content/docs/api-reference/get_url.md +++ b/content/docs/api-reference/get_url.md @@ -132,6 +132,6 @@ url = https://remote.dvc.org/dataset-registry ``` [`.dvc/config`]: - https://github.com/iterative/dataset-registry/blob/main/.dvc/config + https://github.com/iterative/dataset-registry/blob/master/.dvc/config [`get-started/data.xml.dvc`]: - https://github.com/iterative/dataset-registry/blob/main/get-started/data.xml.dvc + https://github.com/iterative/dataset-registry/blob/master/get-started/data.xml.dvc From c3adca1464bc297152def5a8f8651922024daf5e Mon Sep 17 00:00:00 2001 From: Kshitiz Gupta Date: Thu, 10 Apr 2025 04:02:51 +0530 Subject: [PATCH 4/6] Update discovering-and-accessing-data.md --- .../data-management/discovering-and-accessing-data.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/content/docs/user-guide/data-management/discovering-and-accessing-data.md b/content/docs/user-guide/data-management/discovering-and-accessing-data.md index 6f67c253df..4efee1894b 100644 --- a/content/docs/user-guide/data-management/discovering-and-accessing-data.md +++ b/content/docs/user-guide/data-management/discovering-and-accessing-data.md @@ -48,7 +48,7 @@ data.xml.dvc The benefit of this command over browsing a Git hosting website is that the list includes files and directories tracked by both Git and DVC (`data.xml` is not visible if you -[check GitHub](https://github.com/iterative/dataset-registry/tree/main/get-started)). +[check GitHub](https://github.com/iterative/dataset-registry/tree/master/get-started)). ## Download From bfda791852721b2ba3957768fe18fdb50c1b6bf0 Mon Sep 17 00:00:00 2001 From: Kshitiz Gupta Date: Thu, 10 Apr 2025 04:04:34 +0530 Subject: [PATCH 5/6] Update index.md --- content/docs/user-guide/index.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/content/docs/user-guide/index.md b/content/docs/user-guide/index.md index 3f7ea0e2cb..879c80360a 100644 --- a/content/docs/user-guide/index.md +++ b/content/docs/user-guide/index.md @@ -73,7 +73,7 @@ this set of principles: R, Julia, shell scripts, etc.) or ML libraries (Keras, Tensorflow, PyTorch, Scipy, etc.). -[free]: https://github.com/iterative/dvc/blob/main/LICENSE +[free]: https://github.com/iterative/dvc/blob/master/LICENSE [vs code extension]: /doc/vs-code-extension [python api]: /doc/api-reference [command line]: /doc/command-reference From 78a989930a33a0fcaf941bb08901593535f9a1e3 Mon Sep 17 00:00:00 2001 From: Kshitiz Gupta Date: Thu, 10 Apr 2025 04:05:57 +0530 Subject: [PATCH 6/6] Update run-dvc-on-windows.md --- content/docs/user-guide/how-to/run-dvc-on-windows.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/content/docs/user-guide/how-to/run-dvc-on-windows.md b/content/docs/user-guide/how-to/run-dvc-on-windows.md index ef256bd0a4..049dcc5a90 100644 --- a/content/docs/user-guide/how-to/run-dvc-on-windows.md +++ b/content/docs/user-guide/how-to/run-dvc-on-windows.md @@ -33,7 +33,7 @@ alternatives: - The full [Cmder](https://cmder.app/) console emulator is another good option. It combines several useful tools like [ConEmu](https://conemu.github.io/) terminal and [Git for Windows](https://gitforwindows.org/) (Git Bash), among - [other shells](https://github.com/cmderdev/cmder/blob/main/README.md#features). + [other shells](https://github.com/cmderdev/cmder/blob/master/README.md#features). - [Anaconda Prompt](https://docs.anaconda.com/anaconda/user-guide/getting-started/#open-prompt-win) is also popular. - Install an actual Linux distro (e.g. Ubuntu) on a