Git - Commands
Git - Commands
*Making Changes*
🔄 *Step 3: Make Changes*
Modify your files as needed.
*Branching*
🌿 *Step 7: List Branches*
View all local branches with git branch.
*Remote Repositories*
🌐 *Step 11: Push to a Remote*
Share your commits with the remote repository using git push origin <branchname>.
*Understanding Differences*
🔄 *Step 14: Fetch vs. Pull*
Use git fetch to download remote data without merging, while git pull combines and
updates your local files.