Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Use simplified git commands for recursive clone in README. #211

Open
wants to merge 2 commits into
base: master
Choose a base branch
from
Open
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
6 changes: 2 additions & 4 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -18,17 +18,15 @@ This is the server component for the [Vim OmniSharp plugin](https://github.com/n
####OSX / Linux
Requires a minimum of Mono 3.0.12 - If you absolutely must use mono 2.10 then checkout the mono-2.10.8 tag. [Updating mono on ubuntu](https://github.com/nosami/OmniSharpServer/wiki). If you are using OSX, please use the official version of Mono as the homebrew version has [known](https://github.com/nosami/OmniSharpServer/issues/83) [issues](https://github.com/nosami/OmniSharpServer/issues/80).
```
git clone https://github.com/OmniSharp/omnisharp-server.git
git clone --recursive https://github.com/OmniSharp/omnisharp-server.git
cd omnisharp-server
git submodule update --init --recursive
xbuild
```

####Windows
```
git clone https://github.com/OmniSharp/omnisharp-server.git
git clone --recursive https://github.com/OmniSharp/omnisharp-server.git
cd omnisharp-server
git submodule update --init --recursive

# (if using Cygwin, overwrite the default config file config.json with config-cygwin.json)
copy OmniSharp\config-cygwin.json OmniSharp\config.json
Expand Down