Idea clone 项目推送到自有仓库

clone项目A后推送到自有仓库

  1. 将代码 clone 到本地 git clone https://projecta.git
  2. 手动删除 .git 目录 rm -rf .git
  3. 初始化新的仓库 git init
  4. 将本地代码添加到新的git仓库 git add .
  5. 提交本地代码 git commint -m "Initial commit of my new project"
  6. 将本地仓库与新的远程仓库关联 git remote add origin <https://newrepos.git>
  7. 推送远程 git push -u origin master

添加远程仓库并拉去合并到现有分支

  1. 添加远程仓库(可以命名为upstream) git remote add upstream <https://remoterepos.git>
  2. 拉取最新代码 git fetch upsteram
  3. 合并到自己的分支 git checkout my-branch, git merge upsteram/master
  4. 解决冲突(如果有)然后提交
  5. 推送到自有仓库 git push origin my-branch
posted @ 2024-10-12 20:47  试试手气  阅读(10)  评论(0编辑  收藏  举报