Skip to content

Clone this repository with submodule common

Marco Visser edited this page Oct 16, 2019 · 2 revisions

Since July 17th 2019 this repository has been split up into 2 repositories:

  • 1 main repository fhir-net-api (this one)
  • 1 submodule repository fhir-net-common

To clone this repository you have do some extra work to update the included submodule common. Some Git clients, like GitKraken or SourceTree, help you with this. They will suggest you to initialize the submodule common. Please answer yes to this question otherwise the fhir-net-api solution will not build, because you miss the common projects, like the project Hl7.Fhir.Support.

When you are using the Git CLI, then you can clone the fhir-net-api repository as follows:

git clone --recurse-submodules -j8 https://github.com/FirelyTeam/fhir-net-api.git .

where -j8 is an optional performance optimization that became available in version 2.8, and fetches up to 8 submodules at a time in parallel.

Use the option --branch <name> to checkout the given branch directly.

Clone this wiki locally