https://blog.csdn.net/mChales_Liu/article/details/104379526
1 刚创建的idea项目和git联系
忽略历史强制拉取
git pull origin master --allow-unrelated-histories
https://blog.csdn.net/qq_39711319/article/details/119822632
2 本地分支合并主分支
创建本地分支的同时,远程相应也创建了分支
先在本地合并分支,然后push到远程仓库
切换到主分支
git checkout master
合并分支
git merge linzm
3 远程分支,随着开发的深入,需求迭代的次数增多,拉了很多功能分支,比如 feature-jira-456, feature-jira-187 等等,这些功能分支,上线后已经合并到主分支了,所以需要定期清理。我们可以把远程分支删掉(gitlab 网页上),但在本地,团队小伙伴 git pull 时,发现这些功能分支还在。
解决的方式:
git remote prune origin
此时,再git pull , 就发现删掉的远程分支,本地也没有了,成功。
https://blog.csdn.net/noodleboy/article/details/120292240
4 git branch --track master origin/master
5
git remote set-url origin https://[email protected]/linzm1007/powernode.git
git remote add origin-gitee https://gitee.com/linzm1007/powernode.git
git push -u origin-gitee master