We have a feature branch "feature" created from the main branch "main".
We did changes in "feature" and then merged into "main"
In the meantime others also merged their changes in "main". If we want these changes in "main" to also come back to "feature" what is the best way - i.e. we want to resynchronize "feature" with "main"
My suggestion: Check out the main branch again:
Pull the latest changes:
Check out feature branch again and merge main into feature branch:
You can do this quicker, but this is the - to me - most intuitive way.