使用github 托管代码简单使用教程--开源开发-常见错误
- 5. github开源开发
- 6. 报错log
- 6.1 fatal: remote origin already exists.
- 6.2 There is no tracking information for the current branch.
- 6.标签管理
廖雪峰老师博文学习笔记:https://www.liaoxuefeng.com/wiki/896043488029600/897884457270432
5. github开源开发
step1: Fork 开源项目至自己的github平台端
step2: 从自己的github 平台clone该仓库到本地
step3: 在本地进行开发,将文件push到自己的远端仓库
step4: 向开源项目发起pull reques,对方视情况答应你的合并代码要求
6. 报错log
6.1 fatal: remote origin already exists.
命令:
git remote add origin git@github.com:cyy-hub/Deecamp.git
报错:
fatal: remote origin already exists.
分析:已经关联了一个仓库
解决:删除原来的关联,在添加新的关联
git remote rm origin
git remote add origin git@github.com:cyy-hub/Deecamp.git
6.2 There is no tracking information for the current branch.
问题描述:
$ git pull
There is no tracking information for the current branch.
Please specify which branch you want to merge with.
See git-pull(1) for details.
git pull
If you wish to set tracking information for this branch you can do so with:
git branch --set-upstream-to=origin/ dev
原因:本地分支没有和远程分支建立联系
解决:建立联系
$ git branch --set-upstream-to=origin/dev dev
Branch ‘dev’ set up to track remote branch ‘dev’ from ‘origin’.
6.标签管理
暂时没get到有什么用,就不记了
廖雪峰老师博文学习笔记:https://www.liaoxuefeng.com/wiki/896043488029600/897884457270432