Work with Git
Here’s the step-by-step guide to creating a new branch, working on it, and merging it back into main: Make changes to files git add .git commit -m “Commit message”git push origin my-feature-branch # Push to remote (optional) git checkout main # Switch back to maingit pull origin main # Get latest changesgit merge my-feature-branch #…