Skip to content

Instantly share code, notes, and snippets.

@KevDev90
Created July 29, 2019 23:27
Show Gist options
  • Save KevDev90/401738abc6ba1e44b44beb169567c708 to your computer and use it in GitHub Desktop.
Save KevDev90/401738abc6ba1e44b44beb169567c708 to your computer and use it in GitHub Desktop.
Beginners guide to git

Git basics

  1. Create a repository
  2. Checkout a repository
  3. Workflow
  4. Commit
  5. Push changes

Branching

  • Branches are used to develop features isolated from each other
  • The master branch is the default branch when you create a repository
  • Use other branches for development and merge them back to the master branch upon completion.
// A code block
// An highlighted inline code block

Coding image: Coding

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