From fc43ea1644681e4f85256c7036fcab765c0383b3 Mon Sep 17 00:00:00 2001 From: Eliot Date: Fri, 29 Jan 2016 11:38:45 -0800 Subject: [PATCH 1/2] Use simplified git commands for recursive clone in README. --- README.md | 8 ++------ 1 file changed, 2 insertions(+), 6 deletions(-) diff --git a/README.md b/README.md index e664c0d..d28f3c5 100644 --- a/README.md +++ b/README.md @@ -18,17 +18,13 @@ 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 - cd omnisharp-server - git submodule update --init --recursive + git clone --recursive https://github.com/OmniSharp/omnisharp-server.git xbuild ``` ####Windows ``` - git clone https://github.com/OmniSharp/omnisharp-server.git - cd omnisharp-server - git submodule update --init --recursive + git clone --recursive https://github.com/OmniSharp/omnisharp-server.git # (if using Cygwin, overwrite the default config file config.json with config-cygwin.json) copy OmniSharp\config-cygwin.json OmniSharp\config.json From 1d11dd29551ea12a48b7a674a1be53d1189a6821 Mon Sep 17 00:00:00 2001 From: Eliot Lash Date: Wed, 4 Apr 2018 13:42:19 -0700 Subject: [PATCH 2/2] Add back in cd omnisharp-server --- README.md | 2 ++ 1 file changed, 2 insertions(+) diff --git a/README.md b/README.md index d28f3c5..dc1fcbb 100644 --- a/README.md +++ b/README.md @@ -19,12 +19,14 @@ This is the server component for the [Vim OmniSharp plugin](https://github.com/n 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 --recursive https://github.com/OmniSharp/omnisharp-server.git + cd omnisharp-server xbuild ``` ####Windows ``` git clone --recursive https://github.com/OmniSharp/omnisharp-server.git + cd omnisharp-server # (if using Cygwin, overwrite the default config file config.json with config-cygwin.json) copy OmniSharp\config-cygwin.json OmniSharp\config.json