Git Workflow Quick Guide
Git Workflow Quick Guide
Imagine you spot a typo on your website. You edit the file
locally, stage the change with git add, and commit it
with git commit -m "Fix typo on homepage". A small
change, but important! These changes are now tracked
locally and saved with a commit message to help
remember what you changed.
Step 6: Push to the Remote
Pushing uploads your local commits to the remote
repository (e.g., GitHub). Use the git push origin main
command (or the correct branch name). This shares your
changes with your team and updates the central version
of your project.
Step 7: Branching for
Isolation
https://www.atlassian.com/git/tutorials