我无法运行Pyscaffold putup,因为它告诉我,我的git用户名和电子邮件未设置。它们已经设置好了。
我的设置怎么了?
我这样设置git配置:
$ git config --global markee.email "mark_e@smith.com"
$ git config --global markee.name "MarkESmith"
它签出:
$ git config -l
markee.email=mark_e@smith.com
markee.name=MarkESmith
$ git config --global markee.name
MarkESmith
$ cat ~/.gitconfig
[markee]
email = mark_e@smith.com
name = MarkESmith
然后我尝试执行放置操作:
$ putup boston_housing
ERROR: Make sure git is configured. Run:
git config --global user.email "you@example.com"
git config --global user.name "Your Name"
to set your accounts default identity.
答案 0 :(得分:3)
您应该使用
git config --global user.email "mark_e@smith.com"
git config --global user.name "MarkESmith"
其中的字符串为user.email
和user.name
,并且未使用用户名进行参数设置。