GitHub Tutorial — Basic Commands to Get Started

Adrian J. De Niz
1 min readDec 26, 2019

--

Commands for setup:

  1. git config --global user.name “John Doe”

2. git config --global user.email “example@email.com”

3. git config --list

Commands to update remote repository:

  1. git add --all

2. git commit -m ‘update’

3. git push

Command to update local repository:

  1. git pull

Click link to watch tutorial on YouTube.

--

--