Skip to content
This repository has been archived by the owner on Oct 11, 2021. It is now read-only.

Latest commit

 

History

History
45 lines (31 loc) · 1.49 KB

get-the-source-code.rst

File metadata and controls

45 lines (31 loc) · 1.49 KB

Get the source code

The expertsystem source code is maintained through Git, so you need to install Git first. Once you've done so, navigate to a suitable folder and run:

git clone git@github.com:ComPWA/expertsystem.git

After that, there should be a folder called :file:`expertsystem`. We'll call this folder the local repository. If you navigate into it, you can see it has:

These files will be used in the following steps.

Warning

When new commits are merged into the master branch of expertsystem, you need to update your local copy of the source code.

git checkout master
git pull

It's best to have a clean your working tree before you do a :command:`git pull`. See :doc:`/contribute` for more info.