Skip to content

Getting started

Why git?

  • Version control
  • Branching
  • Collaboration using GitHub
  • History tracking
  • Rollback changes
  • Merge code

Setup

Setup and Configuration

git --version                               # Determine version number
git config --global user.name Yongjin Choi  # Set up configuration with name
git config --global user.email yj@mail.com  # Set up configuration with email
git config --list                           # Confirm and view changes

Getting Help

git help <verb>                             # For example: git help config
git <verb> --help                           # For example: git config --help

References