惯性聚合 高效追踪和阅读你感兴趣的博客、新闻、科技资讯
阅读原文 在惯性聚合中打开

推荐订阅源

Y
Y Combinator Blog
Google DeepMind News
Google DeepMind News
腾讯CDC
V
Visual Studio Blog
Engineering at Meta
Engineering at Meta
博客园 - 司徒正美
小众软件
小众软件
奇客Solidot–传递最新科技情报
奇客Solidot–传递最新科技情报
T
Tailwind CSS Blog
Vercel News
Vercel News
爱范儿
爱范儿
Last Week in AI
Last Week in AI
G
Google Developers Blog
阮一峰的网络日志
阮一峰的网络日志
P
Proofpoint News Feed
有赞技术团队
有赞技术团队
D
DataBreaches.Net
博客园_首页
J
Java Code Geeks
云风的 BLOG
云风的 BLOG
V
V2EX
A
About on SuperTechFans
H
Hackread – Cybersecurity News, Data Breaches, AI and More
人人都是产品经理
人人都是产品经理

gitlab on 打工人日志

CI/CD 可观察性-基于grafana sonarqube docker安装和配置 SSH 通过 443 端口连接 GitHub ansible 命令 Git 规则 git版本控制 CICD 概念 git使用方法 Jenkins 安装与使用 Gitlab批量导出用户 ansible 安装和部署 git技巧 gitlab CI/CD 的使用 Markdown教程
gitlab与github同步项目
作者 · 2021-12-27 · via gitlab on 打工人日志
jobcher

2021年12月27日 1 分钟阅读 gitlab git入门系列 gitlab

gitlab 与 github 同步项目

  1. 本地同步项目
1git clone
  1. 创建一个同名的项目,命令行终端中添加 remote 地址
1git remote add githubOrigin git@github.com:sjtfreaks/blog.git
  1. 项目同步到 Github 上
1git push -u githubOrigin main
  1. 分别同步 github 与 gitlab 即可
1git push -u githubOrigin main
2git push -u origin main