This page documents how to download ParaView source code through Git. See the README for more information.
Optionally configure Git to use SSH instead of HTTPS.
Clone ParaView using the commands:
$ git clone --recursive https://gitlab.kitware.com/paraview/paraview.git ParaView $ cd ParaView
Users that have made no local changes and simply want to update a clone with the latest changes may run:
$ git pull $ git submodule update --init
Avoid making local changes unless you have read our developer instructions.
After cloning your local repository will be configured to follow the upstream master
branch by default. One may create a local branch to track the upstream release
branch instead, which should guarantee only bug fixes to the functionality available in the latest release:
$ git checkout --track -b release origin/release
This local branch will always follow the latest release. Use the above instructions to update it. Alternatively one may checkout a specific release tag:
$ git checkout v4.3.1
Release tags never move. Repeat the command with a different tag to get a different release. One may list available tags:
$ git tag
and then checkout any tag listed.
Git can be configured to access gitlab.kitware.com
repositories through the ssh
protocol instead of https
without having to manually change every URL found in instructions, scripts, and submodule configurations.
ssh
protocol.ssh
instead of https
for all repositories on gitlab.kitware.com
: $ git config --global url."git@gitlab.kitware.com:".insteadOf https://gitlab.kitware.com/The
--global
option causes this configuration to be stored in ~/.gitconfig
instead of in any repository, so it will map URLs for all repositories.insteadOf
configuration will map it for you.