get:setting_up_a_github_account
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
get/setting_up_a_github_account.txt · Last modified: 2016/05/02 12:21 by leo