|<- [[Using local and remote repositories]]|[[Adding a remote repository]] ->|
github.com -> login -> create a new repo
-> nom -> description
=== créer un dépôt local et cloner le dépôt en ligne ===
Github donne ces informations après la création du dépôt remote sur GitHub.
touch README.md
git init
git add README.md
git commit -m "initial commit"
git remote add origin git@github.com:/.git
git push -u origin master
=== push un dépôt local vers le nouveau dépôt remote ===
git remote add origin https://github.com//.git
git push -u origin master