使用 GitKraken:GIT 提交作者显示为未知
Using GitKraken: GIT commit author is showing as unknown
我正在使用 Gitkraken 作为我的 Github 源代码控制。
我已经关注了 this approach 但还是失败了。
但是当我输入下面的命令时,我可以看到我的名字。
$ git config --global user.name
My Name
但是,它在我的 GitKraken 中仍然显示未知。我知道使用 SourceTree 的人可以使用 git config --global user.name "Name"
技巧。
请帮忙,谢谢!
我怀疑问题是 GitKraken 第一次创建配置文件时没有设置全局用户。如 GK documentation:
中所述
When setting Profiles in Preferences > Profiles
, GitKraken will
automatically use the name and email address in your global .gitconfig
file.
但是,如果未设置,您可能会显示为 Unknown
。您可以通过在上述 Preferences > Profiles
屏幕中编辑您的个人资料或点击右上角(放大镜旁边)的个人资料图片来更改此设置,select 编辑在您的个人资料旁边,然后提供您在相应字段中的姓名和电子邮件。
请注意,如果在您的 GK Preferences > Profiles
中选中 Keep my Git config updated with my profile info
,在您的默认 GK 配置文件中更改此项将自动更新您的全局 git 配置。
我正在使用 Gitkraken 作为我的 Github 源代码控制。 我已经关注了 this approach 但还是失败了。
但是当我输入下面的命令时,我可以看到我的名字。
$ git config --global user.name My Name
但是,它在我的 GitKraken 中仍然显示未知。我知道使用 SourceTree 的人可以使用 git config --global user.name "Name"
技巧。
请帮忙,谢谢!
我怀疑问题是 GitKraken 第一次创建配置文件时没有设置全局用户。如 GK documentation:
中所述When setting Profiles in
Preferences > Profiles
, GitKraken will automatically use the name and email address in your global.gitconfig
file.
但是,如果未设置,您可能会显示为 Unknown
。您可以通过在上述 Preferences > Profiles
屏幕中编辑您的个人资料或点击右上角(放大镜旁边)的个人资料图片来更改此设置,select 编辑在您的个人资料旁边,然后提供您在相应字段中的姓名和电子邮件。
请注意,如果在您的 GK Preferences > Profiles
中选中 Keep my Git config updated with my profile info
,在您的默认 GK 配置文件中更改此项将自动更新您的全局 git 配置。