Skip to content

Commit 889a819

Browse files
committed
Update README.txt to add submodule commands
1 parent a8879cd commit 889a819

File tree

1 file changed

+13
-0
lines changed

1 file changed

+13
-0
lines changed

README.md

Lines changed: 13 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -16,5 +16,18 @@ it is a WPF UI, console application, or web service. A standard console applica
1616
so that you can easily consume Editor Services functionality in any editor using either the included
1717
standard input/output transport protocol or a transport of your own design.
1818

19+
## Cloning the Code
1920

21+
To clone the repository and initialize all the submodules at once you can run:
22+
23+
```
24+
git clone --recursive https://github.com/PowerShell/PowerShellEditorServices.git
25+
```
26+
27+
If you have already cloned the repository without `--recursive` option, you can run following commands to initialize the submodules:
28+
29+
```
30+
git submodule init
31+
git submodule update
32+
```
2033

0 commit comments

Comments
 (0)