美文网首页
Git 提交时出错 cloud not read usernam

Git 提交时出错 cloud not read usernam

作者: yasuion | 来源:发表于2018-01-05 17:20 被阅读0次

问题原因:studio第一次和远程仓库关联时,用户名密码填写错误。

问题原因:studio第一次和远程仓库关联时,用户名密码填写错误。

解决办法:上传到VCS 后,在studio Terminal下执行git pull,  再执行git push ,这时候发现要验证远程仓库的用户名和密码,验证过后就能提交。

不过每一次都需要验证才能提交。

解决办法:

在提交项目代码或者拉代码的时候,git会让你输入用户名密码,解决方案:

执行git config --global credential.helper store命令

然后git push origin your-branch       // your-branch就是分支的名字

会让你输入用户名和密码,这时你输入就好了,然后下次再git push /pull 的时候就不用密码了

相关文章

  • Git 提交时出错 cloud not read usernam

    问题原因:studio第一次和远程仓库关联时,用户名密码填写错误。 问题原因:studio第一次和远程仓库关联时,...

  • GIT统计代码量

    GIT统计代码量 Git统计个人提交代码行数 Git统计项目总行数 查看git上个人代码量(需要修改usernam...

  • 【Git】报错:“fatal: Could not read f

    提交代码时报此错: 在使用git提交代码时出现 fatal: Could not read from remote...

  • git 命令多人协作总结

    git pull 出错 fatal: Could not read from remote repository....

  • Git 命令总结

    git pull 出错 fatal: Could not read from remote repository....

  • git使用

    从本地git仓库向github仓库提交提交代码出错的解决办法 在使用git 对源代码进行push到gitHub时可...

  • git常用场景

    从本地提交修改的文件read.txt到远程仓库$git add read.txt #添加文件到缓存区$git c...

  • git 总结

    从本地提交修改的文件read.txt到远程仓库$git add read.txt #添加文件到缓存区$git c...

  • git 提交出错

    Git提交问题:remote: ERROR: missing Change-Id in commit messag...

  • 005 .git 目录

    git init会生成一个.git的文件夹. git config --local 设置的时候,把 usernam...

网友评论

      本文标题:Git 提交时出错 cloud not read usernam

      本文链接:https://www.haomeiwen.com/subject/ihusnxtx.html