git-commands.txt 349 B

12345678910111213141516
  1. Créer un nouveau dépôt en ligne de commande
  2. touch README.md
  3. git init
  4. git add README.md
  5. git commit -m "first commit"
  6. git remote add origin http://git.yojik.eu/eric/strUtils.git
  7. git push -u origin master
  8. Soumettre un dépôt existant par ligne de commande
  9. git remote add origin http://git.yojik.eu/eric/strUtils.git
  10. git push -u origin master