DEV Community

Cover image for GitHub Tutorial — Basic Commands to Get Started
Adrian De Niz
Adrian De Niz

Posted on • Updated on

GitHub Tutorial — Basic Commands to Get Started

Commands for setup:

  1. git config --global user.name “John Doe”
  2. git config --global user.email “example@email.com
  3. git config --list Alt Text

Commands to update remote repository:

  1. git add --all
  2. git commit -m ‘update’
  3. git push Alt Text

Command to update local repository:

  1. git pull Alt Text

Here is a youtube video I posted that is more detailed on how to use these commands.

Top comments (0)