Referenzbibliothek
Git-Befehle Cheatsheet
Git-Befehle für Status, Diffs und fokussierte Commits.
Check status
Referenz: Inspect changed, staged, and untracked files before committing.
git status Show recent commits
Referenz: Review recent history before writing a new commit message.
git log --oneline -5 Compare changes
Referenz: Read unstaged code changes before staging.
git diff Create commit
Referenz: Commit a focused change with a clear message.
git commit -m "fix: describe the change"