1. 使用git
https://www.jianshu.com/p/cff83e5e1d79
2. 解决Git refusing to merge unrelated histories
https://www.jianshu.com/p/536080638cc9
3. 在push项目前,要pull项目:
-> 在pull项目时,一般会出现Git refusing to merge unrelated histories错误,
-> 问题的结局方法,在git pull origin master后面跟上参数--allow-unrelated-histories
-> 然后在pull时,说origin不存在,所以这时候应该git remote add origin (git路径)
4. Merge branch 'master' 错误的解决
5:git使用步骤
-> 首先git pull下来或者git clone下来
-> 其次是git add .(本地服务器添加)
-> 然后是git commit -m '注释'
-> 最后就是git remote add origin git路径(远程源服务器添加)
-> 推送上去git push -u origin master(推送到master分支)
6. 在项目开发中,pull下来之前,需要add .保存起来,然后再pull下来,解决冲突,然后push上去
7. 项目中有更新文件,并且需要上传至服务器时,先一定要init,然后add
8. git pull时,出现错误 this operation must be run in a work tree
先git init,不行就将.git文件夹删除,然后再git init
9. 在更新git过程中,由于多次没有pull远程文件,单只git push失败;
从而,已经commit过的代码还没有合并进去,因此又要重新合并,并且
上次commit的信息都在,因此这次再次commit的话,需要确定分支是否
已经是developer,通过git branch来查看,然后git push就行,不再
需要git push -u origin master等路径了,因为上次已经绑定了分支,
直接push就行
10. 访问私有库时,错误码503的解决办法
https://blog.csdn.net/weixin_41010198/article/details/109327793
其中http://proxy.corpadderess:8080,是库的ip:端口
网友评论