Open MPI logo

Source Code Access: Obtaining a Git Clone

  |   Home   |   Support   |   FAQ   |  

Open MPI's Git repositories are hosted at GitHub.

  1. First, you will need a Git client. We recommend getting the latest version available. If you do not have the command "git" in your path, you will likely need to download and install Git.
  2. OTPO is hosted at GitHub.
  3. Clone this repository. For example (as of October 2014), to clone the main development repository via HTTPS:

    shell$ git clone https://github.com/open-mpi/otpo.git
    Cloning into 'otpo'...
    remote: Counting objects: 1101, done.
    remote: Total 1101 (delta 0), reused 0 (delta 0)
    Receiving objects: 100% (1101/1101), 3.51 MiB | 758.00 KiB/s, done.
    Resolving deltas: 100% (557/557), done.
    Checking connectivity... done.
    shell$

  4. The web interface available by clicking on the above URL shows a nice summary of recent activity and allows navigating into individual commits.

Note that Git is natively capable of using many forms of web proxies. If your network setup requires the user of a web proxy, consult the Git documentation for more details.