Skip to content

Instantly share code, notes, and snippets.

@radavis
Last active August 29, 2015 14:22
Show Gist options
  • Star 1 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save radavis/bc705feb02b15d1f404f to your computer and use it in GitHub Desktop.
Save radavis/bc705feb02b15d1f404f to your computer and use it in GitHub Desktop.
Getting Started with git

Getting Started with git

Think of it as a save-state for your code project.

Create a new git repository

git init
git add -A
git commit -m "initial"

Make some changes, then commit (save) your changes

git add -A
git commit -m "built some awesome shit."

What's going on with my git repo?

git status
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment