Git - Collaboration Workflows
After executing the following commands in trunk-based development:
What will be the status of the main branch?
git checkout main git pull origin main git checkout -b feature # make changes git commit -am 'Add feature' git checkout main git merge feature
What will be the status of the main branch?
