切换github帐号

bash 复制代码
#!/bin/bash

# Get the current GitHub user
current_user=$(git config --global user.name)

if [ "$current_user" == "user1" ]; then
    # Switch to user2
    mv id_rsa id_rsa_user1
    mv id_rsa.pub id_rsa_user1.pub
    mv id_rsa_user2 id_rsa
    mv id_rsa_user2.pub id_rsa.pub

    # Configure Git for user2
    git config --global user.name "user2"
    git config --global user.email "[email protected]"
    echo "Switched to user2"
else
    # Switch to user1
    mv id_rsa id_rsa_user2
    mv id_rsa.pub id_rsa_user2.pub
    mv id_rsa_user1 id_rsa  
    mv id_rsa_user1.pub id_rsa.pub

    # Configure Git for user1
    git config --global user.name "user1"
    git config --global user.email "[email protected]"
    echo "Switched to user1"
fi

# Display the current user name and email
echo "Current GitHub user: $(git config --global user.name)"
echo "Current GitHub email: $(git config --global user.email)"
相关推荐
uhakadotcom12 小时前
快速开始使用 n8n
后端·面试·github
uhakadotcom12 小时前
React与Next.js:基础知识及应用场景
前端·面试·github
uhakadotcom16 小时前
MQTT入门:轻量级物联网通信协议
后端·面试·github
uhakadotcom18 小时前
阿里云STS:安全、灵活的临时访问管理
后端·面试·github
uhakadotcom18 小时前
Flutter入门指南:快速构建高性能移动应用
面试·架构·github
uhakadotcom18 小时前
React 和 Next.js 的基础知识对比
前端·面试·github
uhakadotcom20 小时前
SwiftUI 入门指南:快速构建跨平台应用
面试·架构·github
uhakadotcom20 小时前
OpenTelemetry入门:让你的应用程序更透明
后端·面试·github
pk_xz12345621 小时前
复现GitHub上`https://github.com/tobiasfshr/map4d`这个项目
github
uhakadotcom1 天前
Julia语言:高性能数值计算的新星
面试·架构·github