$ git remote -v
下面命令中的地址为github中主仓库的地址,并非你自己的
$ git remote add upstream https://github.com/****
$ git fetch upstream
$ git merge upstream/master
答:是因为本地的用户名密码没有设置。操作如下:
设置用户名:git config --global user.name "username"
设置邮箱 (没有双引号):git config --global user.email useremail@qq.com
查看用户名:git config user.name
查看邮箱:git config user.email