Initialisation d’un projet GIT

Pour déposer un projet existant sur Github :

  1. Se connecter
  2. Onglet Repositories, cliquer sur New
  3. Saisir le ‘Repository name’ avec le nom du projet
  4. Cocher ‘Privé’
  5. Cliquer sur ‘Create repository’
  • Dans le dossier du projet
  1. git init
  2. git add -A
  3. git commit -m ‘Initial commit’
  4. git branch -M main
  5. git remote add origin https://github.com/<path>/<to>/<repository>.git
  6. git push -U origin main