今天使用idea修改git项目的作者信息,提交时遇到错误:

0 files committed, 1 file failed to commit: test --author 'java_suisui' is not 'Name  ' and matches no existing author

解决方案:需要在该项目的.git/config 文件中添加下面配置即可:

[user]
    name = java_suisui
    email = xxx@163.com

 

相关文章:

  • 2022-12-23
  • 2022-12-23
  • 2021-08-28
  • 2022-12-23
  • 2022-12-23
  • 2021-07-06
猜你喜欢
  • 2021-05-18
  • 2021-07-18
  • 2021-08-11
  • 2022-12-23
  • 2021-06-01
  • 2022-12-23
相关资源
相似解决方案