Skip to content

Files

Latest commit

 

History

History
59 lines (41 loc) · 1.75 KB

README.md

File metadata and controls

59 lines (41 loc) · 1.75 KB

Git with Jen Diamond

Introduction to Git and GitHub

Major Concepts

Concepts and vocabulary you will need to know in order to begin working with Git. Specific concepts covered include the role of the "repo" as well as defining commits and creating branches and working with others.

Basic Git Actions

Hands-on practice with Git

  • Learn how to use Markdown
  • Set up a local repo
  • Stage our files
  • Add the files
  • Create commits
  • Push changes to a remote repository
  • Create a new branch from the master
  • Learn how to switch branches and merge branches
  • Learn the basics of how to discard uncommitted changes from a project
  • Learn how to roll back a commit
  • Learn a clean Git work flow to you can clarify your work process
  • Learn to how to write a great commit message and why

  • Create a Gist in Github called git_notes.md
  • Learn how to use Markdown

Your Git Workflow :)
git status Check status
git add . Add everything to the repository
git status Check status
git commit -m 'Your comment' Commit everything (-m means message)
git status Check status

Segment 2 - Remote GitHub & GitHub


Segment 3 - Branching & Reset


Segment 4 - Cloning


Segment 5 - Test yourself