From cdca3df686ef22abfb37a6b7c1a05970e28d2070 Mon Sep 17 00:00:00 2001 From: gregvanl Date: Tue, 12 Jul 2022 21:52:04 -0700 Subject: [PATCH] Use correct capitalization --- README.md | 10 +++++----- 1 file changed, 5 insertions(+), 5 deletions(-) diff --git a/README.md b/README.md index ba57753d1..a8625a254 100644 --- a/README.md +++ b/README.md @@ -56,7 +56,7 @@ The two suggested workflows are: 1. Install [Git LFS](https://git-lfs.github.com/). 2. Run `git lfs install` to setup global git hooks. You only need to run this once per machine. -3. ssh auth: `git clone git@github.com:microsoft/vscode-docs.git`
https auth: `git clone https://github.com/microsoft/vscode-docs.git` +3. SSH auth: `git clone git@github.com:microsoft/vscode-docs.git`
HTTPS auth: `git clone https://github.com/microsoft/vscode-docs.git` 4. Now you can `git add` binary files and commit them. They'll be tracked in LFS. #### Cloning without binary files @@ -67,11 +67,11 @@ You might want to clone the repo without the 1.6GB images. Here are the steps: 2. Run `git lfs install` to setup global git hooks. You only need to run this once per machine. 3. Clone the repo without binary files. - macOS / Linux: - - ssh auth: `GIT_LFS_SKIP_SMUDGE=1 git clone git@github.com:microsoft/vscode-docs.git` - - https auth: `GIT_LFS_SKIP_SMUDGE=1 git clone https://github.com/microsoft/vscode-docs.git` + - SSH auth: `GIT_LFS_SKIP_SMUDGE=1 git clone git@github.com:microsoft/vscode-docs.git` + - HTTPS auth: `GIT_LFS_SKIP_SMUDGE=1 git clone https://github.com/microsoft/vscode-docs.git` - Windows: - - ssh auth: `$env:GIT_LFS_SKIP_SMUDGE="1"; git clone git@github.com:microsoft/vscode-docs.git` - - https auth: `$env:GIT_LFS_SKIP_SMUDGE="1"; git clone https://github.com/microsoft/vscode-docs.git` + - SSH auth: `$env:GIT_LFS_SKIP_SMUDGE="1"; git clone git@github.com:microsoft/vscode-docs.git` + - HTTPS auth: `$env:GIT_LFS_SKIP_SMUDGE="1"; git clone https://github.com/microsoft/vscode-docs.git` 4. Now you can selectively checkout some binary files to work with. For example: - `git lfs pull -I "docs/nodejs"` to only download images in `docs/nodejs` - `git lfs pull -I "release-notes/images/1_4*/*"` to only download images in `release-notes/images/1_4*`