DEV Community

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

Posted on • Edited on

1

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)

A Workflow Copilot. Tailored to You.

Pieces.app image

Our desktop app, with its intelligent copilot, streamlines coding by generating snippets, extracting code from screenshots, and accelerating problem-solving.

Read the docs

👋 Kindness is contagious

If you found this post useful, please drop a ❤️ or leave a kind comment!

Okay