wordpress lang,seo 最新,湘潭网站建设价格,心知天气Wordpress新建git仓会出现版本分支问题#xff0c;解决过程#xff1a;
其他的前期绑定之类的传送#xff1a;https://blog.csdn.net/qq_37194189/article/details/130767397 大概思路#xff1a;新建一个分支#xff0c;上传#xff0c;合并#xff0c;删除分支 git branch …新建git仓会出现版本分支问题解决过程
其他的前期绑定之类的传送https://blog.csdn.net/qq_37194189/article/details/130767397 大概思路新建一个分支上传合并删除分支 git branch 查询分支状态*代表的是当前你所在的工作分支 git status 查询检查是否成功状态 创建一个分支newbran
git branch newbran
检查分支状态
git branch
切换新分支
git checkout newbran
一系列上传
git add .
git commit -m 1查看状态git status On branch newbran nothing to commit, working tree clean 再切回去原分支
git checkout master
将新分支提交的改动合并原分支上
git merge newbran
提交
git push -u origin master
删除新分支
branch -D newbran 就搞定了,以后老三样就可以了
git add .
git commit -m 1
git push