Skip to content

Instantly share code, notes, and snippets.

@bradybridges
bradybridges / guide.md
Last active May 12, 2019 04:30
Beginners Guide To Git

Beginners Guide To Git

What Is Git

Git allows you to track changes to a repository on your local machine. This can provide organization to a large project. Git in combination with Github allows a team of people to work on a project.

Basic Git Commands

  • git init Initializes file for tracking
  • git add <file> Adds file to staging area
  • git commit -m 'message' Commits changes with message

Session 4 Practice Tasks

The assignments listed here should take you between 1.5 and 2 total hours.

To start this assignment:

  1. Click the button in the upper right-hand corner that says Fork. This is now your copy of the document.
  2. Click the Edit button when you're ready to start adding your answers.
  3. To save your work, click the green button in the bottom right-hand corner. You can always come back and re-edit your gist.