Use this loop:
- Sync before starting work.
- Edit files in VS Code.
- Review changes.
- Commit with a clear message.
- Push your branch.
Command-line version:
git status --short --branch
git add .
git commit -m "Describe the change"
git pushGood commit messages are short and concrete, such as Add starter script or
Update setup notes.