Skip to content

Commit

Permalink
Update getting-started.md
Browse files Browse the repository at this point in the history
  • Loading branch information
b11p committed May 5, 2021
1 parent 6f26458 commit 98fe5df
Show file tree
Hide file tree
Showing 2 changed files with 6 additions and 2 deletions.
4 changes: 3 additions & 1 deletion docs/guide/getting-started.md
Original file line number Diff line number Diff line change
Expand Up @@ -72,7 +72,9 @@ npm install -D vuepress@next
- **Step 5**: Add the default temp and cache directory to `.gitignore` file

```bash
echo 'node_modules\n.temp\n.cache' >> .gitignore
echo 'node_modules' >> .gitignore
echo '.temp' >> .gitignore
echo '.cache' >> .gitignore
```

- **Step 6**: Create your first document
Expand Down
4 changes: 3 additions & 1 deletion docs/zh/guide/getting-started.md
Original file line number Diff line number Diff line change
Expand Up @@ -73,7 +73,9 @@ npm install -D vuepress@next
- **步骤5**: 将默认的临时目录和缓存目录添加到 `.gitignore` 文件中

```bash
echo 'node_modules\n.temp\n.cache' >> .gitignore
echo 'node_modules' >> .gitignore
echo '.temp' >> .gitignore
echo '.cache' >> .gitignore
```

- **步骤6**: 创建你的第一篇文档
Expand Down

0 comments on commit 98fe5df

Please sign in to comment.