|
|
|
## Download ##
|
|
|
|
|
|
|
|
You must havec a git client installed on your system, then run in a terminal:
|
|
|
|
|
|
|
|
```shell
|
|
|
|
export GIT_SSL_NO_VERIFY=True
|
|
|
|
git clone https://git-xen.lmgc.univ-montp2.fr/lmgc90/lmgc90_user.git
|
|
|
|
```
|
|
|
|
This should create a directory *lmgc90_user*. Once the previous line has been run, all next ```git``` commands should be run from this *lmgc90_user* directory.
|
|
|
|
|
|
|
|
To update to the latest state run from a terminal in your *lmgc90_user*:
|
|
|
|
```
|
|
|
|
git pull origin master
|
|
|
|
```
|
|
|
|
|
|
|
|
Note on security:
|
|
|
|
-----------------
|
|
|
|
|
|
|
|
There are some securities issues in using the:
|
|
|
|
```shell
|
|
|
|
export GIT_SSL_NO_VERIFY=True
|
|
|
|
```
|
|
|
|
The proper way to do that would be to get the self-signed certificate in the PEM format of our website from your web navigator (in Firefox you can do that with *Firefox/Preferences* then in tab *Advance* thumbnail *Certificates* clic on *Display certificats* button ; find our certificates and clic *export* button). Then in your *lmgc90_user* directory run:
|
|
|
|
```
|
|
|
|
git config http.sslCAInfo path_to_your_pem_file
|
|
|
|
```
|
|
|
|
## Compile ##
|
|
|
|
|
|
|
|
Please read the README.md file in your version or [here](https://git-xen.lmgc.univ-montp2.fr/lmgc90/lmgc90_user/tree/master). |
|
|
|
\ No newline at end of file |