DEV Community

Cover image for GitHub : cours pour débutant
Fabrice
Fabrice

Posted on • Updated on

GitHub : cours pour débutant

Dans ce tutoriel, je vais parlé de GIT/GITHUB. Je parle de :

  1. Initialisation de projet git :
git init
Enter fullscreen mode Exit fullscreen mode
  1. Clonage de projet :
git clone project_name
Enter fullscreen mode Exit fullscreen mode
  1. Ajout des modifications dans git en local :
git add -A
git commit -m "Message"
Enter fullscreen mode Exit fullscreen mode
  1. Envoie des modifications en ligne :
git push origin branch_name
Enter fullscreen mode Exit fullscreen mode

Voici le lien du tutoriel :

Image description

Top comments (0)