Promote free/libre software on the EPFL campus
contact us! gnugen.ch/en/contact
Git is a distributed version control system.
provide functionality around git mostly for collaboration
alain@gnugen:~ $ command argument1 argument2 ...
alain@gnugen:~ $ command --name alain argument1 ...
pwd(print working directory) — show in which directory you currently are
ls(list) — show contents of the directory we are currently in
cd(change directory) — change into an other folder
alain@gnugen:~ $ ls
Documents Downloads Music Pictures Videos
alain@gnugen:~ $ ls Documents/
EPFL 'random stuff' Notes.txt
alain@gnugen:~ $ ls -a Documents/
. .. .a-secret.file EPFL 'random stuff' Notes.txt
alain@gnugen:~ $ cd
alain@gnugen:~ $ cd Documents
alain@gnugen:Documents $ cd ../
alain@gnugen:~ $ mkdir newfreesoftwareproject
alain@gnugen:~ $ ls
Documents Downloads Music newfreesoftwareproject Pictures Videos
alain@gnugen:~ $ cd newfreesoftwareproject
But why is the image cut?