https://github.com/MarieEtienne/reproductibilite
2025-09-01
On most Linux distributions, Git is available from the package manager.
Check if Git is available if not
Check if Git is available if not
Check installation with:
Windows users should install Git for Windows, which includes Git Bash.
Open a terminal and type:
# create a new ssh key RSA (2048 bits) with no passphrase
ssh-keygen -t rsa -b 2048 -C "your_email@example.com"
# press enter to accept default file location (~/.ssh/id_rsa)
# press enter to use am empty passphrase
Keys are saved by default in:
C:\Users\<YourUser>\.ssh\id_rsa
(or open id_rsa.pub
in a text editor on Windows)
Run:
If successful, you’ll see:
Hi username! You've successfully authenticated, but GitHub does not provide shell access.
The purpose of Git is to keep tracks of different versions of a project and their authors.
To do so, you need to be authenticated. Before using, specify your name
You are now ready to clone, push, and pull using SSH with your GitHub account!