Skip to content

Latest commit

 

History

History
21 lines (16 loc) · 396 Bytes

File metadata and controls

21 lines (16 loc) · 396 Bytes

Using GitHub Day to Day

Use this loop:

  1. Sync before starting work.
  2. Edit files in VS Code.
  3. Review changes.
  4. Commit with a clear message.
  5. Push your branch.

Command-line version:

git status --short --branch
git add .
git commit -m "Describe the change"
git push

Good commit messages are short and concrete, such as Add starter script or Update setup notes.