github仓库主动同步到gitee
Github Actions是Github推出的主动化CI/CD的功能,我们将使用Github Actions让Github仓库同步到Gitee同步的原理是利用 SSH 公私钥配对的方式拉取 Github 仓库的代码并推送到 Gitee 仓库中,以是我们需要以下几个步调
[*]生成 SSH 公私钥
[*]添加公钥
[*]添加私钥
[*]配置代码
1、生成SSH公钥
执行命令:ssh-keygen -t rsa -C "youremail@example.com",一连三次回车,id_rsa 为私钥,id_rsa.pub为公钥
如果提示:already exists(已经存在),则可以到电脑位置:C:\Users\电脑账号名\ .ssh 直接使用
不使用默认SSH参考:生成/添加SSH公钥
2、GitHub项目配置SSH私钥
在Github项目
Settings->Secrets->Actions,名称为:GITEE_RSA_PRIVATE_KEY,值为:上面生成SSH的 私钥,私钥是 id_rsa 文件
https://i-blog.csdnimg.cn/direct/ffab81fc3b9e4ccf825274cc0b531dbd.png
3、GitHub配置SSH公钥
在Github
Settings->SSH and GPG keys->New SSH key,名称为:GITEE_RSA_PUBLIC_KEY,值为:上面生成SSH的 公钥
https://i-blog.csdnimg.cn/direct/e9f44266d08f4bf8bb930a072b2f9aef.png
4、Gitee配置SSH公钥
在Gitee
设置->安全设置->SSH公钥,标题为:GITEE_RSA_PUBLIC_KEY,值为:上面生成SSH的 公钥
https://i-blog.csdnimg.cn/direct/be6475c98ab145c399013c481984cb88.png
5、GitHub创建Github workflow
在Github项目
Actions创建一个新的workflow
https://i-blog.csdnimg.cn/direct/52aa5339bfe3478eb00d597dcac40042.png
https://i-blog.csdnimg.cn/direct/9f88ac2c35d547229c25d982d284012b.png
https://i-blog.csdnimg.cn/direct/8865114de2bd4fb9ad14d248eaef2349.png
name: Sync To Gitee
on: [ push, delete, create ]
jobs:
build:
runs-on: ubuntu-latest
steps:
- name: Sync to Gitee
uses: wearerequired/git-mirror-action@master
env:
# 注意在 Settings->Secrets 配置 GITEE_RSA_PRIVATE_KEY
SSH_PRIVATE_KEY: ${{ secrets.GITEE_RSA_PRIVATE_KEY }}
with:
# 注意替换为你的 GitHub 源仓库地址
source-repo: git@github.com:github-username/github-repositoryname.git
# 注意替换为你的 Gitee 目标仓库地址
destination-repo: git@gitee.com:gitee-username/gitee-repositoryname.git
成功运行
https://i-blog.csdnimg.cn/direct/482b2a1b166f42ef820aca17b3d221b1.png
免责声明:如果侵犯了您的权益,请联系站长,我们会及时删除侵权内容,谢谢合作!更多信息从访问主页:qidao123.com:ToB企服之家,中国第一个企服评测及商务社交产业平台。
页:
[1]