Using local and remote repositoriesAdding 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:<username>/<nom du dépot>.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/<username>/<nom du dépot>.git
git push -u origin master