Git免密码提交

Posted weibanggang

tags:

篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了Git免密码提交相关的知识,希望对你有一定的参考价值。

下面说一下https克隆的方式免密码提交

在我们下载链接前面加上账号:密码@即可

方式一:

  • 使用https的方式克隆代码

    git clone ‘地址‘

  • 查看项目中的配置文件

    vim .git/config

    [core] repositoryformatversion = 0 filemode = true bare = false logallrefupdates = true ignorecase = true precomposeunicode = true [remote “origin”] url = https://github.com/地址 fetch = +refs/heads/:refs/remotes/origin/ [branch “master”] remote = origin merge = refs/heads/master

  • 修改remote中的url那行如下

    url = https://账号:密码@github.com/地址 

    方式二:

    技术分享图片技术分享图片

    技术分享图片

     

以上是关于Git免密码提交的主要内容,如果未能解决你的问题,请参考以下文章

git 免密码提交代码

gitpush 免密码

git push 免密码

git http拉取代码免账号密码

Windows下Git免密码

git 免密码配置