Git的pull,push失败及用户名邮箱多个情况解决办法(Git踩坑记录,不断更新)

#多用户名及邮箱问题

#我自己是用的GitHub,公司用的是Gerrit。所以说我有两账号和邮箱。在进行自己项目和公司项目切换之间就有问题。

Git的pull,push失败及用户名邮箱多个情况解决办法(Git踩坑记录,不断更新)_第1张图片

解决方法:

其实Git是分为局部用户名邮箱和全局用户名邮箱。

查看自己局部用户名及邮箱:

git config user.nanme
git config user.email

修改自己局部用户名及邮箱:

git config user.name "你自己的用户名"
git config user.email "你自己的邮箱"

查看自己全局用户名及邮箱:

git config --global user.nanme
git config --global user.email

修改自己全局用户名邮箱:

git config --global user.nanme "你自己的用户名"
git config --global user.email "你自己的邮箱"

 

这样就可以了。

 

#将自己项目上传到远程仓库

1.先在自己本地建立一个文件夹,然后使用init初始化。

2.将自己代码复制粘贴到这个文件夹里,然后使用add,commit (这两步操作只是在本地生成一个节点,所以此时还没有进行远程仓库关联)

3.在GitHub上创建自己项目。

4.GitHub仓库使用SSH加密,所以要在本地生成SSH公钥私钥,使用命令:

ssh-keygen -t rsa -C "[email protected]"

5.一般在C盘的User里的admin下的.ssh文件夹里的

Git的pull,push失败及用户名邮箱多个情况解决办法(Git踩坑记录,不断更新)_第2张图片

id_rsa.pub里就是你的SSH

添加到github上的

Git的pull,push失败及用户名邮箱多个情况解决办法(Git踩坑记录,不断更新)_第3张图片

Git的pull,push失败及用户名邮箱多个情况解决办法(Git踩坑记录,不断更新)_第4张图片

然后进行远程关联:

git remote add origin 你的github项目地址
//比如我的是https://github.com/lishutong61/newEnergy
//git remote add origin https://github.com/lishutong61/newEnergy

如果你远程仓库为空,没有ReadMe,那就使用:

git push -u origin master

上传

使用-u 就是因为远程为空。

如果你初始化了README,那可能会有

 ! [rejected]        master -> master (non-fast-forward) error: failed to push some refs to '[email protected]:lishutong61/newEnergy.git' hint: Updates were rejected because the tip of your current branch is behind

这个错误。

意思就是你本地与远程并不同步,因为你远程还有一个README文件,而本地没有。所以此时使用:

git pull --rebase origin master

然后你就会发现你本地多了README文件。

这时候再使用git push -u origin master就可以了

你可能感兴趣的:(Git)