This commit is contained in:
林觅
2026-04-08 09:56:29 +08:00
parent 87903979cb
commit 797b5e8818

View File

@@ -2,8 +2,16 @@
线上部署gitea 线上部署gitea
### 关联线上库
- git remote add profile https://gitea.vlos.net/jafar.o.jeh/gitea_init.git - git remote add profile https://gitea.vlos.net/jafar.o.jeh/gitea_init.git
- git pull profile main - git pull profile main
### 更新线上库
- git add . - git add .
- git commit -m "更新信息" - git commit -m "更新信息"
- git push profile main - git push profile main
### 合并分支,合并dev->main
- git checkout main #切换到 main 分支
- git merge dev #令将分支dev合并到 main 分支
- git merge --continue #解决合并冲突(如果需要)
- git add . && git push origin main # 正常更新main分支到线上