You're on your way to the next level! Join the Kudos program to earn points and save your progress.
Level 1: Seed
25 / 150 points
Next: Root
1 badge earned
Challenges come and go, but your rewards stay with you. Do more to earn more!
What goes around comes around! Share the love by gifting kudos to your peers.
Keep earning points to reach the top of the leaderboard. It resets every quarter so you always have a chance!
Join now to unlock these features and more
The Atlassian Community can help you and your team get more value out of Atlassian products and practices.
My pull request was approved, but it contained conflicts and when I hit "More information" link after the warning, the following popped up:
This pull request has conflicts. You must resolve the conflicts before you can merge: Step 1: Fetch the changes (saving the source branch as FETCH_HEAD). git fetch origin Feature1 Step 2: Checkout the target branch and merge in the changes from the source branch. Resolve conflicts. git checkout uat git merge FETCH_HEAD Step 3: After the merge conflicts are resolved, stage the changes accordingly, commit the changes and push. git commit git push origin HEAD Step 4: The pull request will be updated and marked as merged.
I ran all commands and merged conflicts, but cannot run the last one in #3
When I tried, I got the following error:
remote: Branch refs/heads/uat can only be modified through pull requests. remote: Check your branch permissions configuration with the project administrator.
What is the correct command to push the merge?