Windows下Git多账号配置(附github最新上传)(上)

简介: Windows下Git多账号配置(附github最新上传)(上)

前言


本人之前使用git未注意到多账户的管理,所以用起来比较繁琐,在网上几经搜索后发现现有的教程均存在不通用的情况,而且在去年10月github更新后使用git上传也和之前不同。为此整理了一份最新的Git多账号配置上传博文。


1. 生成git账号公钥秘钥


1.1 生成gitlab账号公钥秘钥


在C:\Users\Administrator\.ssh(这个目录不绝对,因人而异)下打开git bash或cmd,执行命令ssh-keygen -t rsa -C user.email,例如ssh-keygen -t rsa -C xxxxxxxxx@xxx.com,然后命名为id_rsa_gitlab,输入密码(可以不设置,一直按回车)


20210226145627620.png


1.2 生成oschina账号公钥秘钥


执行命令ssh-keygen -t rsa -C xxxxxxxxx@xxx.com创建oschina对应的sshkey,命名为id_rsa_oschina。其余均和gitlab一致


20210226145752849.png


1.2 生成github账号公钥秘钥


执行命令ssh-keygen -t rsa -C xxxxxxxxx@xxx.com创建github对应的sshkey,命名为id_rsa_github。其余均和gitlab一致


20210226145837335.png


2. 公钥拷贝及上传


2.1 秘钥位置存储


把上面得到的文件拷贝到git默认访问的.ssh目录(win10在用户目录下,本文C:\Users\Administrator\.ssh)

除了秘钥文件之外,config文件是后面的步骤中手动生产的,known_hosts文件是后续自动生产的


20210226150120801.png


2.2 config配置


在C:\Users\Administrator\.ssh目录下创建一个config文本文件,每个账号配置一个Host节点。主要配置文件内容


# github-1 account
Host u1.github.com
  HostName github.com
  User user1
  IdentityFile C:\\Users\\Administrator\\.ssh\\id_rsa_github1
  PreferredAuthentications publickey
# github-2 account
Host u2.github.com
  HostName github.com
  User user2
  IdentityFile C:\\Users\\Administrator\\.ssh\\id_rsa_github2
  PreferredAuthentications publickey
# gitlab account
Host gitlab.com
  HostName gitlab.com
  User iJarmin_lab
  IdentityFile C:\\Users\\Administrator\\.ssh\\id_rsa_gitlab
  PreferredAuthentications publickey
# oschina account
Host git.oschina.net 
    HostName git.oschina.net
    User username2
    IdentityFile C:\\Users\\Administrator\\.ssh\\id_rsa_oschina
    PreferredAuthentications publickey

 

配置项说明:


Host      ##主机别名
HostName  ##服务器真实地址
IdentityFile  ##私钥文件路径
PreferredAuthentications  ##认证方式
User  ##用户名


将公钥上传到服务器


GitHub添加SSH key的方式如下图所示


20210226151059477.png


git.oschina.net添加SSH key的方式如下图所示:


20210226151119503.png


gitlab添加SSH key的方式如下图所示:


20210226151534259.png


2.3 进行测试是否成功


2.3.1 测试github


ssh -T git@github.com


提示 you,re successfully authenticated,but Github does not provide shell access


2.3.2 测试gitlab


ssh -T git@gitlab.com


提示welcome to gitlab


2.3.3 测试oschina


ssh -T git@git.oschina.net


提示welcome to Git


20210226151004173.png


2.4 配置账户的username和email


全局配置(任意位置执行)


首先一般仅需要一次配置时候,一般可以使用全局配置读取配置。加载的优先策略为先执行局部配置读取,再进行全局配置读取


>git config --global user.name "github's Name"
>git config --global user.email "github@xx.com"
>git config --list


为了保证上传的稳定,避免错乱,我们在使用时需要注意,如果一个网站有多个账户时,最好不要设置全局的 username 和 email


取消全局 username, email


>git config --global --unset user.name
>git config --global --unset user.email


如要在repo中使用 user1 进行操作,进入repo目录后,先设置username 和 email,再进行其他操作


>git config user.name "github's Name"
>git config user.email "github@xx.com"


同样的,如果想在repo中切换为 user2 进行操作,则重新设置username和email(同上)后,再进行其他操作


相关文章
|
1月前
|
存储 负载均衡 Java
如何配置Windows主机MPIO多路径访问存储系统
Windows主机多路径(MPIO)是一种技术,用于在客户端计算机上配置多个路径到存储设备,以提高数据访问的可靠性和性能。本文以Windows2012 R2版本为例介绍如何在客户端主机和存储系统配置多路径访问。
98 13
如何配置Windows主机MPIO多路径访问存储系统
|
1月前
|
Dart 搜索推荐 IDE
Windows下Zed编辑器配置Dart环境
本文介绍了Dart编程语言及其主要框架Flutter的优势,并推荐使用轻量级编辑器Zed进行Dart开发。详细步骤包括Dart环境的安装与配置,Zed编辑器的安装与个性化设置,以及如何在Zed中编写并运行Dart的HelloWorld程序。通过自定义任务实现Dart文件的快速运行,提高了开发效率。
|
1月前
|
监控 安全 网络安全
Windows Server管理:配置与管理技巧
Windows Server管理:配置与管理技巧
87 3
|
2月前
|
弹性计算 关系型数据库 数据安全/隐私保护
阿里云国际版如何配置Windows服务器的虚拟内存
阿里云国际版如何配置Windows服务器的虚拟内存
|
3月前
|
存储 Shell 开发工具
8-8|windows上Git报错
8-8|windows上Git报错
|
4月前
|
Java 应用服务中间件 开发工具
[App Service for Windows]通过 KUDU 查看 Tomcat 配置信息
[App Service for Windows]通过 KUDU 查看 Tomcat 配置信息
|
4月前
|
Java 应用服务中间件 Windows
【App Service for Windows】为 App Service 配置自定义 Tomcat 环境
【App Service for Windows】为 App Service 配置自定义 Tomcat 环境
|
4月前
|
网络安全 Windows
在Windows电脑上启动并配置SSH服务
在Windows电脑上启动并配置SSH服务
1011 0
|
4月前
|
Ubuntu Linux 数据安全/隐私保护
在 Windows 中配置 WSL2 与 Debian 的全流程
【8月更文挑战第27天】本文详细介绍了在Windows环境中配置WSL2与Debian的全过程,包括确认Windows版本、启用相关功能、安装WSL并设置版本为WSL2、下载安装Debian、配置国内镜像源,以及设置Xserver实现GUI功能。通过这些步骤,用户能够顺利完成配置,并进行基本优化。
645 0
|
4月前
【Azure 应用服务】App Service 配置 Application Settings 访问Storage Account得到 could not be resolved: '*.file.core.windows.net'的报错。没有解析成对应中国区 Storage Account地址 *.file.core.chinacloudapi.cn
【Azure 应用服务】App Service 配置 Application Settings 访问Storage Account得到 could not be resolved: '*.file.core.windows.net'的报错。没有解析成对应中国区 Storage Account地址 *.file.core.chinacloudapi.cn