I imported several git repos to Azure Devops. They were previously hosted on Azure Server 2019 (On premise version of Azure Devops):
git remote add origin [email protected]:v3/MyOrg/MyProj
git push -u origin --all
I noticed the commit history showing work items from an entirely different project than the one I imported to.
So I deleted the repos. I had used azure devops migrations tools to import the Iterations, Areas, and Work Items for this project from on-prem, so I thought it was an issue with this tool. But, I re-pushed the repo to azure devops, and the unrelated work items were once again updated with links to git commits, some of them entirely different.
Is this a bug with Azure DevOps?
Can I clean up the links without impacting the work item?
#1234
. You'd need to figure out what the remapped work item IDs are and rewrite the commit messages with the correct ID, or simply rewrite the commit messages to not contain an ID at all. – Daniel Mann