An Intermediate Look at Git + GitHub
Recap:
- Configure your git client (
git config user.name
+ user.email
)
- Create a git repository (
git init
)
- Start tracking a file with git (
git add
)
- Commit changes to the history (
git commit
)
- Check what’s going on (
git status
)
- Compare a file with the one in the history (
git diff
)
- Look into your history (
git log
)
Please follow along in the slides for the remaining information.