git push 每次都提示输入密码解决方法

我曾经切换过一次github账号, 似乎还更改过一次github账号的密码, 然后呢?
然后就是每次向github提交代码时都要输入用户名密码(猜测是由于上述原因导致),
每次都是啊, 这也忒麻烦了, 于是就想办法解决这个问题, 经过一番查找, 终于找到一个解决办法, 分享之, 与君共勉 !!

==============

解决方案:

  1. 在你的用户目录下新建一个文本文件, 名曰.git-credentials
    用户目录:

    • windows: C:/Users/username
    • mac os x: /Users/username
    • linux: /home/username
  2. 在上一步创建的文件中输入一下内容:
    https:{username}:{password}@github.com
    当然上述{username}和{password}要换成你的github的账号名和密码
  3. 修改git配置
    执行命令git config --global credential.helper store
    上述命令会在~/.gitconfig文件末尾添加如下配置:
     [credential]
         helper = store


经过上述三步配置之后, 你push代码到github时, 便无需再输入用户名密码了~~

=================
续集......
后来发现, 不用上面三步这么麻烦, 简化流程如下:

  1. 在命令行输入命令:
    git config --global credential.helper store
    ? 这一步会在用户目录下的.gitconfig文件最后添加:

     [credential]
         helper = store
  2. 现在push你的代码 (git push), 这时会让你输入用户名密码, 这一步输入的用户名密码会被记住, 下次再push代码时就不用输入用户名密码啦!
    ?这一步会在用户目录下生成文件.git-credential记录用户名密码的信息.
    ? git config --global 命令实际上在操作用户目录下的.gitconfig文件, 我们cat一下此文件(cat .gitconfig), 其内容如下:
    [user]
     name = alice
     email = [email protected]
    [push]
     default = simple
    [credential]
     helper = store

    git config --global user.email "[email protected]" 操作的就是上面的email
    git config --global push.default matching 操作的就是上面的push段中的default字段
    git config --global credential.helper store 操作的就是上面最后一行的值


作者:元亨利贞o链接:http://www.jianshu.com/p/81ae6e77ff47來源:简书著作权归作者所有。商业转载请联系作者获得授权,非商业转载请注明出处。
时间: 2024-11-13 14:09:22

git push 每次都提示输入密码解决方法的相关文章

https方式下 git push 每次都要输入密码的解决办法

转载自:http://git.oschina.net/oschina/git-osc/issues/2586   作者:Zoker https方式每次都要输入密码,按照如下设置即可输入一次就不用再手输入密码的困扰而且又享受https带来的极速 设置记住密码(默认15分钟): git config --global credential.helper cache 如果想自己设置时间,可以这样做: git config credential.helper 'cache --timeout=3600'

wamp出现You don’t have permission to access/on this server提示的解决方法

本地搭建wamp 输入http://127.0.0.1访问正常,当输入http://localhost/ apache出现You don't have permission to access/on this server.的提示 解决方法如下: 找到httpd.conf,用记事本打开httpd.conf,然后将 <Directory /> Options FollowSymLinks AllowOverride None Order deny,allow Deny from all <

windows系统git使用zip命令报错解决方法

windows系统git使用zip命令报错解决方法 报错信息:zip command not found 解决方法 下载zip-3.0-bin.zip和bzip2-1.0.5-bin.zip压缩包 下载地址 文件拷贝 解压压缩包并把zip-3.0-bin.zip解压后的bin文件夹下的zip.exe文件和bzip2-1.0.5-bin.zip解压后的bin文件夹下的bzip2.dll文件统一放在本地git安装目录下 git 安装目录查看 where git 一般情况下安装目录是:C:\Progr

解决git push/pull 每次都要输入密码、ssh-keygen

一.问题描述 以github为例 每次在向github服务器 推送代码(git push),都会提示输入用户名密码 二.问题原因 在clone 代码时使用的是HTTS协议 三.解决方法 1.clone代码时使用SSH协议 2.本地git配置 打开终端 -----------------------系统配置------------------------------------ git config --global core.quotepath false //支持utf-8编码 解决中文乱码

转一下网上找来的tortoise git不用每次都输入邮箱和密码的方法。备查看

每次git clone 和push 都要输入用户名和密码.虽然安全,但在本机上每次都输有些麻烦,如何记住用户名和密码呢? 当你配置好git后,在C:\Documents and Settings\Administrator\ 目录下有一个  .gitconfig 的文件,里面会有你先前配好的name 和email,只需在下面加一行 [credential] helper = store 下次再输入用户名 和密码 时,git就会记住,从而在C:\Documents and Settings\Adm

关于在使用 sourcetree 进行代码 push 时, 出现的用户名或者密码提示错误 解决方法

关于在使用 sourcetree 进行代码 push 时, 出现的用户名或者密码提示错误 错误截图如下: 以下错误截图是出现在 pull (拉取)正常, push(推送)出现 password/user出错, 截图如下: 解决方法如下: 本人是在填写的用户名和 GitHub 上的不匹配, 将其移除, 然后在 push 会有添加用户名和密码的提示弹出, 填写 GitHub 上对应的用户名和密码即可 原文地址:https://www.cnblogs.com/canfixme/p/8686732.ht

git push错误failed to push some refs to的解决方法

! [rejected] master -> master (non-fast-forward) error: failed to push some refs to '[email protected]:yangchao0718/cocos2d.githint: Updates were rejected because the tip of your current branch is behinhint: its remote counterpart. Integrate the remo

push到github报错解决方法

在push代码到远程仓库时,报了如下的错误: $ git push -u origin master To https://github.com/11pdg/group-buy.git ! [rejected] master -> master (non-fast-forward) error: failed to push some refs to 'https://github.com/11pdg/group-buy.git' hint: Updates were rejected beca

Apache服务器出现Forbidden 403错误提示的解决方法总结

在配置Linux的 Apache服务时,经常会遇到http403错误,我今天配置测试时也出现了,最后解决了,总结了一下.http 403错误是拒绝访问的意思,有很多原因的.还有,这些问题在win平台的Apache里一样会发生!我按照经验总结的主要有以下4种原因! 本人测试的环境 是:Scientific Linux 5.3(与RHEL和CentOS百分百兼容!),其它版本的Linux应该通用,没测试. 1. 访问的文档权限不够.要755以上权限.解决方法:用命令chmod 755 /var/ww