Git操作

1. Git仓库迁移

  1. 克隆旧仓库代码
bash 复制代码
git clone http://gitlab.example.com/lowcode/cctd-platform-datareport.git
  1. 拉取全部远程分支到本地
bash 复制代码
cd cctd-platform-datareport/
git branch -a
for branch in `git branch -r | grep -v '\->'`; do
   git branch --track "${branch#origin/}" "$branch"
done
  1. 重设远程仓库origin地址,推送代码
bash 复制代码
git remote rename origin upstream
git remote add origin http://172.16.92.64:3000/shiys/platform-datareport.git
git push -u origin --all
git push -u origin --tags
git remote rm upstream
相关推荐
李白爱喝茶36 分钟前
git fork(派生)使用操作
git
写bug写bug5 小时前
Git 中的撤销工作区、暂存区和已提交的更改
前端·git·后端
好运yoo6 小时前
git提交冲突的原因及解决方案
git
謬熙7 小时前
Git使用指南
git
没资格抱怨7 小时前
Git详细使用
git
匆匆整棹还7 小时前
git远程和本地创建分支并关联
git·github
shuangrenlong7 小时前
git 多账号配置
git
NewBee_Lxx8 小时前
gitmakegdb
git
丶21361 天前
【Git】Git 远程仓库命令详解
git