Hi,
Yes, there is a way to change the author for commits in Git, including when working within a MATLAB/Simulink Project. The author information for a commit is determined by the ’user.name’ and ’user.email’ configuration settings in Git, not by any property of the host machine.
Here is how to change the author’s name and email address globally by using the following commands in your terminal or command prompt:
git config --global user.name "Your Name"
git config --global user.email "your.email@example.com"
For more details, please refer to this page - https://stackoverflow.com/questions/750172/how-do-i-change-the-author-and-committer-name-email-for-multiple-commits
Regards,
Ronit