There's more...

Another situation you may keep running into is that the committer names are different on Azure DevOps Server and Git. As a rule, Git recognizes committers by their designed email address, while Azure DevOps Server ordinarily utilizes your Windows character. Accordingly, a similar individual may be spoken to by two different committers on the Git store. Use the Azure DevOps Server username for the import and the genuine Git client for new submits that are made on the Git storehouse. Utilize the below command to remap the names:

git filter-branch -f --commit-filter " 
if [ "
$GIT_COMMITTER_NAME" = "<old Azure DevOps Server user>" ];
then GIT_COMMITTER_NAME="
<new name>";
GIT_AUTHOR_NAME="
<new name>";
GIT_COMMITTER_EMAIL="
<new - email>";
GIT_AUTHOR_EMAIL="
<new - email>";
git commit-tree "
$@";
else git commit-tree "
$@";
fi"
HEAD