使用git提交到github,每次都要输入用户名和密码的解决方法

时间:2023-03-08 16:06:30

使用git提交文件到github,每次都要输入用户名和密码,操作起来很麻烦,以下方法可解决,记录以下。

原因:在clone 项目的时候,使用了 https方式,而不是ssh方式。

默认clone 方式是:https

使用git提交到github,每次都要输入用户名和密码的解决方法

切换到:shh 方式

使用git提交到github,每次都要输入用户名和密码的解决方法

切换后如下:

使用git提交到github,每次都要输入用户名和密码的解决方法

解决方法:

到本地项目文件夹子,打开git bash

1.查看clone 地址:git remote -v

使用git提交到github,每次都要输入用户名和密码的解决方法

说明是https 方式,现在换成ssh方式。

2.移除https的方式,换成 ssh方式

git remote rm origin

3.添加新的git方式:ssh方式,ssh方式地址的话,在github上,切换到ssh方式,然后复制地址。

使用git提交到github,每次都要输入用户名和密码的解决方法

使用git提交到github,每次都要输入用户名和密码的解决方法

git remote add origin git地址

4.查看push方式是否修改成功:

git remote -v

看到如下,说明成功,地址是以git开头

使用git提交到github,每次都要输入用户名和密码的解决方法

5.重新push(提交一下)

git push origin master

使用git提交到github,每次都要输入用户名和密码的解决方法

完成。