summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
author木杉 <zhmushan@qq.com>2019-11-10 22:59:17 +0800
committerRy Dahl <ry@tinyclouds.org>2019-11-10 09:59:17 -0500
commitb3baab6d1479abbfd2e534fe05f5e146c2d5b1a2 (patch)
tree91d7f5a085859f7a6e06399a5d8145d7c9b2e184
parent335e8bd33cd22891f12b58c4d9489d19c886ae4c (diff)
fix manual (#3313)
PS C:\Users\zhbnh> git config --global core.symlinks=true error: invalid key: core.symlinks=true
-rw-r--r--std/manual.md2
1 files changed, 1 insertions, 1 deletions
diff --git a/std/manual.md b/std/manual.md
index 0a0771f24..a5083d577 100644
--- a/std/manual.md
+++ b/std/manual.md
@@ -174,7 +174,7 @@ in the repository. First
`core.symlinks=true` before the checkout is started.
```bash
-git config --global core.symlinks=true
+git config --global core.symlinks true
git clone --recurse-submodules https://github.com/denoland/deno.git
```