How can I sync branches after migration from tfvc so that ahead|behind is 0|0?
The branches are identical in contents but with different history.
We are using Azure DevOps.
git merge
syncs up the branches perfectly but also merges in all the commits which is not optimal.
git merge --squash
results in nothing to commit and push.
Suggestions?