【git】修改git凭据

Windows

poweshell 复制代码
# 删除 Windows 凭据
cmdkey /delete:git:https://github.com

# 删除本地 git 配置
git config --global --unset user.name
git config --global --unset user.email

# 设置新的 git 配置(请修改为你的信息)
git config --global user.name "你的新用户名"
git config --global user.email "你的新邮箱"

# 清除 git 缓存的凭据
git config --global --unset credential.helper

# 提示完成
Write-Host "Git 配置已重置,下次push时需要重新输入 GitHub 账号密码" -ForegroundColor Green

Linux

bash 复制代码
#!/bin/bash

# 删除缓存的凭据
git config --global --unset credential.helper
rm -rf ~/.git-credentials

# 清除 SSH 密钥(可选,取消注释如果需要)
# rm -rf ~/.ssh/id_rsa*

# 删除全局 git 配置
git config --global --unset user.name
git config --global --unset user.email

# 设置新的 git 配置
echo "请输入你的 Git 用户名:"
read username
echo "请输入你的 Git 邮箱:"
read email

git config --global user.name "$username"
git config --global user.email "$email"

# 清除本地凭据缓存
git config --global credential.helper cache
git config --global --unset credential.helper

echo -e "\033[32mGit 配置已重置,下次push时需要重新输入 GitHub 账号密码\033[0m"
相关推荐
学习&笔记3 小时前
git 撤销修改
git
star@星空5 小时前
git工作中常用指令
大数据·git·elasticsearch
问道飞鱼14 小时前
【GIT知识】git进阶-hooks勾子脚本
git·hooks
CoderLiu17 小时前
用Rust写了一个GitLib代码分析工具
前端·git·rust
Octopus207717 小时前
【Linux】git操作
linux·笔记·git·学习
林政硕(Cohen0415)19 小时前
Repo管理
git·嵌入式·repo
“αβ”20 小时前
解决 Linux git push 成功后(但没有出现绿点)的问题
git
从零开始的-CodeNinja之路20 小时前
【Jmeter】深度解剖Jmeter的二次开发
git·jmeter
陵易居士1 天前
鼠标右键单击Git Bash here不可用
git