• Git配置、缓存用户名密码和清除缓存


    配置用户名和邮箱:
    git config --global user.name "username"
    git config --global user.email "useremail@qq.com"
     
    清除配置中纪录的用户名和密码,下次提交代码时会让重新输入账号密码:
    git config --system --unset credential.helper
     
    查看git配置信息
    git config --list 
     
    执行命令之后,再次pull或push时会缓存输入的用户名和密码:
    git config --global credential.helper store
    

      

    清除git缓存中的用户名的密码
    git credential-manager uninstall
     
    window中系统也可能会缓存Git连接的凭证
     
    清除步骤如下:
     
    打开控制面板->用户账户->凭据管理器->普通凭证,第一条应该就是刚才操作的,建议直接编辑,用户名和密码编辑为正确的,再次clone就可以了。
  • 相关阅读:
    模块jieba库的使用
    模块wordcloud库的使用
    爬取哔哩哔哩网站弹幕
    爬虫讲解
    基本统计值计算
    数据类型及元素元组
    pyinstall的安装及使用
    面向对象介绍
    re模块
    logging模块
  • 原文地址:https://www.cnblogs.com/yuanwanli/p/13985267.html
Copyright © 2020-2023  润新知