Basic Git tutorial

Topics

Instructions

  1. Create a new repository inside your project directory.
    git init
  2. Create a README.md file.
  3. Stage readme file to commit.
    git add README.md
  4. Commit readme file.
    git commit -m "Add readme file"
Classes