Git同时配置和提交代码到Github和Gitee

简介: Git同时配置和提交代码到Github和Gitee

配置 Github 和 Gitee

1.创建ssh钥匙

注:创建时不需要输入密码,直接回车。

ssh-keygen -t rsa -C '邮箱' -f ~/.ssh/id_rsa_github
ssh-keygen -t rsa -C '邮箱' -f ~/.ssh/id_rsa_gitee

添加ssh钥匙到github和gitee


2.Github添加钥匙

钥匙文件:C:\Users\用户名\.ssh 下的 id_rsa_github.pub

添加钥匙的路径:头像 -> Settings -> SSH and GPG keys -> SSH keys -> New SSH key

操作:将 id_rsa_github.pub 文件中的内容复制到如下的所示的 Key 中

53.pngGitee添加钥匙

钥匙文件:C:\Users\用户名\.ssh 下的 id_rsa_gitee.pub

添加钥匙的路径:头像 -> 设置 -> ssh公匙

操作:将 id_rsa_gitee.pub 文件中的内容复制到如下的所示的 Key 中
54.png
3.添加配置文件

在 C:\Users\用户名\.ssh 中创建文件 config 写入如下内容

# github
Host github.com
HostName github.com
PreferredAuthentications publickey
IdentityFile ~/.ssh/id_rsa_github
# gitee
Host gitee.com
HostName gitee.com
PreferredAuthentications publickey
IdentityFile ~/.ssh/id_rsa_gitee

4.测试配置成功

ssh -T git@gitee.com
ssh -T git@github.com

55.png
到此处,git同时配置github和gitee成功!!!


同时提交代码到 Github 和 Gitee

1.初始化一个项目 git init


2.配置信息

打开项目中的 .git文件夹下的 config 文件,写入如下内容。

注:.git默认是一个隐藏文件夹,需要允许访问隐藏文件才能看到此文件。

[core]
    repositoryformatversion = 0
    filemode = false
    bare = false
    logallrefupdates = true
    symlinks = false
    ignorecase = true
[remote "github"]
    url = https://github.com/a-jingchao/dim-star.git
    fetch = +refs/heads/*:refs/remotes/origin/*
[remote "gitee"]
    url = https://gitee.com/a-jingchao/dim-star.git
    fetch = +refs/heads/*:refs/remotes/origin/*
[branch "master"]
    remote = origin
    merge = refs/heads/master

3.测试成功

git remote

56.png
4.其他操作 git add 、git commit

5.提交代码到仓库

git push github master
git push gitee master


相关文章
|
1月前
|
网络安全 开发工具 git
解决fatal:remote error:You can’t push to git://github.com/username/*.g
通过上述诊断与修复步骤,绝大多数的推送错误都能得到有效解决,确保您的Git工作流顺畅无阻。
83 1
|
1月前
|
Linux 网络安全 开发工具
IDEA如何配置git和github
【11月更文挑战第14天】本指南详细介绍了如何在 IntelliJ IDEA 中配置 Git 和 GitHub,包括检查和设置 Git 路径、测试配置,以及通过 SSH 或 HTTPS 方式配置 GitHub 仓库的具体步骤。完成配置后,用户可在 IDEA 中轻松进行版本控制操作。
128 0
|
2月前
|
缓存 网络安全 开发工具
全面掌握 Git 和 Gitee:从安装到上传的完整指南
本文档介绍了如何安装和配置Git,以及如何与Gitee进行连接。首先从官网下载Git并安装,接着配置用户名和邮箱,生成SSH密钥并将其添加到Gitee账户,完成无密码登录的设置。文档还提供了基本的命令使用指南,包括文件操作、Git命令和gitee代码上传流程,最后讲解了提交信息的规范格式和回滚操作的方法。
349 1
|
2月前
|
JavaScript Linux Windows
Typora图床配置(用自带的 PicGo-Core(command line) 插件GitHub
Typora图床配置(用自带的 PicGo-Core(command line) 插件GitHub
|
2月前
|
Unix Shell 网络安全
git学习六:(bug总结)git@github.com: Permission denied (publickey).等
本文是关于解决在使用Git和GitHub时遇到的“git@github.com: Permission denied (publickey)”错误的指南。文章提供了详细的步骤,包括确认SSH Agent运行状态、检查密钥配置、确保密钥匹配、验证仓库URL、检查权限和代理设置,以及配置SSH文件。这些步骤帮助用户诊断并解决SSH认证问题。
256 0
|
开发工具 git
git 配置本地代理
git 配置本地代理
427 0
|
3月前
|
网络协议 开发工具 网络虚拟化
SourceTree git 配置代理
SourceTree git 配置代理
94 1
|
Web App开发 开发工具 git
|
29天前
|
开发工具 git
git 常用命令
这些只是 Git 命令的一部分,Git 还有许多其他命令和选项,可根据具体需求进行深入学习和使用。熟练掌握这些命令能够帮助你更高效地管理代码版本和协作开发。
|
21天前
|
机器学习/深度学习 Shell 网络安全
【Git】Git 命令参考手册
Git 命令参考手册的扩展部分,包含了从基础操作到高级功能的全面讲解。
29 3