0

我在一个项目上使用 git,每次我想在终端中提交一些东西时,我都必须输入这行命令:

git config --global user.name "myusername"

我刚刚更换了我的电脑,我不必在我以前的笔记本电脑上这样做。有没有办法跳过这个阶段?

非常感谢!

4

1 回答 1

0

使用编辑您的全局配置

git config --global -e

如果尚不存在,请添加以下部分:

[user]
    name = Your Name
    email = your.email@example.com
于 2013-10-13T17:08:54.927 回答