Git - Update your code

mer. 16 janvier 2019 by Martin Deudon

gitlogo

How to use git to update your code

Git is a free and open source distributed version control system. It allows you to get some code from repositories like github and to easily update your code to the latest version.

The first step is to install git : https://git-scm.com/

Then open a terminal, go to the location (use cd to change the directory) where you want to store the code and run :

git clone https://github.com/tinmarD/micmac.git 

Later, when you want to update this code, return to this directory and do :

git pull