GIT - config --global user.name

时间:2013-10-13 17:05:59

标签: git logging configuration terminal config

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

git config --global user.name "myusername"

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

非常感谢!

1 个答案:

答案 0 :(得分:0)

使用

编辑全局配置
git config --global -e

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

[user]
    name = Your Name
    email = your.email@example.com