PhpStorm默认git作者

时间:2014-10-16 18:07:26

标签: git phpstorm

在PhpStorm中,我在项目设置中设置默认的git作者时遇到了困难:

我使用了“动作查找器”并搜索了设置,但我没有找到此选项。

有谁知道我可以在哪里更改此值,所以我不必在每次提交时更改它?

2 个答案:

答案 0 :(得分:27)

感谢Andrew提供的信息,我找到了解决方案:

转到项目文件夹\ .git \ config并添加以下行:

[user]
name = Your Name
email = name@domain.de

我希望这对其他PhpStorm和git用户有帮助。

答案 1 :(得分:20)

对PhpStorm没有任何线索,但您应该能够从repo中的命令行执行git config user.name "Your Name"git config user.email "Your email",并且可能达到您想要的结果。