A minimal repository used to practice Git workflows: staging, committing, branching, merging, conflict resolution, history navigation.
README.md— this fileindex.html— landing pagestyles.css— page stylingapp.js— page behaviornotes.txt— scratch notesdata/users.csv— sample data.gitignore— ignored paths
- Modify
notes.txt, rungit status/git diff. - Create a
feature/hellobranch, editapp.js, commit. - On
main, edit the same line ofapp.js, commit, then merge to trigger a conflict. - Use
git log --oneline --graph --allto inspect history. - Try
git restore,git reset,git reverton dummy commits.