1,下载并安装WAMP 2,启动服务后,找到MYSQL--MYSQL console--弹出命令窗口(刚开始没有初始用户名跟密码,可直接回车执行) 3,首先输入 use mysq;l---然后修改用户名及密码 update user set password = password('123456') where user = 'root'; ----(注意password()方法,及末尾分号结束) ----flush privileges; (注意分号结束,此命令保存修改的用户名及密码) ---
1.修改某个具体项目中的用户名密码 vim xx/{yourProject dir }/.git/.git-credentials 在.git-credentials文件中配置用户名密码 https://用户名:密码 2.修改全局的用户名密码 vim ~/.git-credentials 在.git-credentials文件中配置用户名密码 https://用户名:密码 3.修改git保存用户名和密码 git config credential.helper store