GitHub Organization: https://github.com/jendiamond/intro_to_git_jendiamond
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.
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 |