git 修改远程仓库源

自古美人都是妖i 提交于 2020-02-15 23:25:57

自己已经写好了一个项目,想上传到 github

github 创建新项目

新建 README.md , LICENSE

本地项目添加 github 远程仓库源

  • 不是git项目
    git remote add origin https://USERNAME:PASSWORD@github.com/USERNAME/pro.git
  • 已是git项目,先删除再添加
    ```
    git remote rm origin
    git remote add origin https://USERNAME:PASSWORD@github.com/USERNAME/pro.git

    ```

冲突

  1. 如果本地已有了git项目,相当于有两个项目,这时候直接 pull 或者 push 在新版本会报错:

Git refusing to merge unrelated histories

需要加上 --allow-unrelated-histories.因为新版本默认关闭了这个选项

  1. 我的github项目新建的时候写了 README 文件,而我本地项目也有 README.md。这个时候运行 git pull 会提示 confilct.
    关于git的 merge 操作我一直比较懵,所以我用git rm ,等成功 git push 后 再chekcout:
    git rm README.md git push git checkout -- README.md

从已有的git项目导入到 github

导入个人git项目到 github 的正确姿势
code import
git[ssh]://git:pass@example.com/var/git/pro.git

添加 branch 的方式导入到github

git remote add branch https://USERNAME:PASSWORD@github.com/USERNAME/pro.git
git pull branch
标签
易学教程内所有资源均来自网络或用户发布的内容,如有违反法律规定的内容欢迎反馈
该文章没有解决你所遇到的问题?点击提问,说说你的问题,让更多的人一起探讨吧!