git删除掉已经保存的用户名密码

以保存的用户名密码删除,先找到变量存在的位置:

git config -l

To help track down the setting, I‘d try to use:

git config --local credential.helper
git config --global credential.helper
git config --system credential.helper

The first one checks the local repo config, the second is your ~/.gitconfig, and the third is based on where git is installed. Depending on which one comes back showing the credential helper, you can try using the equivalent --unset option:

git config --local --unset credential.helper
git config --global --unset credential.helper
git config --system --unset credential.helper

The last one may not work if you don‘t have proper permissions. So you may need to run the last one under sudo for it to work correctly. FWIW, you may have installed for the pre-built git images for Mac OS X. If you cat /usr/local/git/etc/gitconfig, you‘ll see that it does set up the credential helper for you. So the last command above would help fix that problem.

时间: 2024-10-05 17:25:28

git删除掉已经保存的用户名密码的相关文章

tortoiseGIT保存用户名密码

tortoiseGIT保存用户名密码——转载: 虽然GIT可以使用SSH来免去输入用户名密码的麻烦,但是更多的人我相信还是比较喜欢使用tortoiseGIT. 使用HTTP模式的代码库可以通过保存用户名密码的方式来免去重复输入的麻烦. 首先安装git的时候需要选择加入环境变量 很多人说选择第三个,其实第二个也可以,因为第三个需要替换系统文件,我不是很推荐. 剩下的就是一路next,直到完成. 第二步:乌龟GIT,这个就不说了 第三步:设置一个新的环境变量HONE,value为%USERPROFI

vSphere Client用户名密码记录

vSphere Client在访问ESXi主机或vCenter后是默认不保存登录用户名和密码的,不过可以通过修改配置文件来保存,方便访问连接. 方法如下: 打开配置文件路径(实际安装路径):D:\Program Files (x86)\VMware\Infrastructure\Virtual Infrastructure Client\Launcher 用编辑器打开并修改配置文件内容,在配置文件中添加需要保存的用户名密码: <!-- set user name: <user>usern

Git 删除本地保存的账号和密码

使用git在本地拉过一次代码时候git会自动将用户名密码保存到本地. 导致想用别的用户名和密码拉代码时没有权限,这时需要删除或者修改git在本地保存的账户名和密码. 具体办法如下: 1.控制面板-->用户和账户 2.管理Windows凭据 进行编辑和删除就可以了. 原文地址:https://www.cnblogs.com/Small-sunshine/p/11634680.html

git 保存用户名密码

打开本地的.git/config 加入 [credential] helper = store 保存,第一次需要输入用户名密码,输入一次密码后第二次就会记住密码了不会再提示输入用户名及密码

将 git 用户名密码保存到本地

git在linux下push的时候,每次都要输入用户和密码,非常麻烦! 解决方法:新建一个文件在home目录下 ~/.netrc,将用户名密码写入: machine github.com login USERNAME password PASSWORD

GIT 在本地保存账户和密码

原文链接:http://www.jianshu.com/p/908591004f3b 解决方法,在本地的工程文件夹的.git下打开config文件 添加: [credential] helper = store 再输入一次用户名密码后就可以保存住了.

iOS开发,使用keychain保存用户名密码

本文提供完整版demo,源码下载地址:GitHub Demo下载 KeyChain是苹果提供的一种安全的保存用户名.密码.证书的方式,将敏感信息保存在keychain中后,这些信息不会随着app的卸载而丢失,除非开发人员在app中手动删除敏感信息,否则,这些信息将会一直保存在keychain中. 在使用keychain时,我们首先要将security.framework引入到工程中.由于使用时不支持arc,所以我们在arc环境中需要针对相关文件启用mrc模式. 首先,我们构造一个工具类,通过这个

TortoiseGit保存用户名密码的方法

方法一: 设置 -> git 编辑本地 .git/config 增加 1 [credential]    2     helper = store 保存,输入一次密码后第二次就会记住密码了 方法二: 1. Windows中添加一个HOME环境变量,值为%USERPROFILE% 2. 在“开始>运行”中打开%Home%,新建一个名为“_netrc”的文件 3. 用记事本打开_netrc文件,输入Git服务器名.用户名.密码,并保存: 1 machine github.com      #git

git保存帐号密码

每次更新git都要输入帐号密码比较麻烦,可以通过手动设置配置文件. window下: 进入home文件夹,一般是C:\Users\Administrator,创建.git-credentials文件(可以先创建一个git-credentials文件,然后在git bash下使用命令 mv git-credentials .git-credentials),打开文件,输入  http://{用户名}:{密码}@{服务器域名或ip} 保存 在bash下,执行 git config --global