Agenda


In this module, we will explore git commands for

  • configuration
  • repository creation
  • tracking changes
  • synchronize changes
  • and other objectives

Help & Configuration


  • git --help
  • git --version
  • git config --global user.name
  • git config --global user.email

Repository Creation


  • git init
  • git clone

Tracking Changes


  • git status
  • git diff
  • git add
  • git reset
  • git commit

Synchronize Changes


  • git push
  • git fetch
  • git merge
  • git pull

Others


  • git log
  • git show
  • git reset
  • git remote

References