- Launching the console application.
- Typing the command line
git --version
- If git is properly installed on your system, the previous command should display the version of the git package.
For testing that git manages to access GitHub from the internet, we propose you to clone a public repository which will be useful in the following.
- Launching the console application.
- Creating a work folder. For instance
cd ~
mkdir workdir
cd workdir
- Typing the command line
git clone https://github.com/echabert/ESIPAPCpp.git
- If git works properly, a folder called
ESIPAPCpp
must appear on your disk. - If it fails via the https access and you have an ssh-key, you can use the command line
git clone [email protected]:echabert/ESIPAPCpp.git
- Go into the folder
~/ESIPAPcpp/validation_tests
- Issue the command line at the prompt:
python test-gpp-linux.py
. This Python-2 script will test the C++ compiler configuration in several situations. - The C++ compiler is properly installed if all the validation tests have succeed. If you have at least one failure, please contact the supervisors.
- Go into the folder
~/ESIPAPcpp/validation_tests
- Issue the command line at the prompt:
python test-root-linux.py
. This Python-2 script will test the C++ compiler configuration in several situations. - The C++ compiler is properly installed if all the validation tests have succeed. If you have at least one failure, please contact the supervisors.