forked from antfu/shikiji
-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
docs: note about submodule, close antfu#61
- Loading branch information
Showing
1 changed file
with
18 additions
and
0 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1 +1,19 @@ | ||
Please refer to https://github.com/antfu/contribute | ||
|
||
--- | ||
|
||
## Additional Notes | ||
|
||
This repository contains a [git submodule](https://git-scm.com/book/en/v2/Git-Tools-Submodules) to `vscode-textmate`. By default `git clone` does not clone submodules. To clone this repository and its submodules, use: | ||
|
||
```bash | ||
git clone --recursive https://github.com/antfu/shikiji | ||
``` | ||
|
||
Or if you have already cloned it, use: | ||
|
||
```bash | ||
git submodule update --init --recursive | ||
``` | ||
|
||
Learn more at this [StackOverflow thread](https://stackoverflow.com/a/4438292). |