Git免密码提交

Posted 索马里猫

tags:

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

http://www.akmumu.com/2015/06/02/360.html

Git 提交

1、git init
2、git add .
3、git commit -m “说明”
4、git remote add origin https://github.com/superbobogithub/xxxx.git
5、git push -u origin master

 

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

  • 使用https的方式克隆代码

    git clone https://github.com/akmumu/google_hosts.git

  • 查看项目中的配置文件

    vim .git/config

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

  • 修改remote中的url那行如下

    url = https://akmumu:[email protected]/akmumu/google_hosts.git

https://username:[email protected]/username/project.git username就是你账号的个性地址


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

Git免密码提交

gitpush 免密码

解决git每次提交、更新都需要输入账户密码

Ubuntu系统中git每次提交都要输入密码怎么办

git http拉取代码免账号密码

ssh免密码,git拉取和上传代码,时间同步