零:如何与远程仓库件建立连接
https://www.cnblogs.com/xiuxingzhe/p/9303278.html
一:本地新建分支并推送到远程:
1.新建并切换到新分支:
git checkout -b newbranch
2.新建远程分支
git push origin newbranch:newbranch
3.把本地的新分支,和远程的新分支关联
git push --set-upstream origin develop
二:分支合并
你在develop上写了一些更改,你想给它合并到master上面去
1.切换到master
git checkout master
2.合并develop上面的更改
git merge develop
三:你写了很多代码,但是git stash|||||| git pull |||||git stash pop之后发现你的更改没有了(代码丢了)
1.git log 查看日志
2.找到最近一次的属于你的一次commit的id,复制它
3.git reset --hard 刚刚复制的ID
4.git stash pop --index ||||||ok,你的代码回来了
//以后还是尽量别这样,走正常流程(git add ||||| git commit。。。。。)
网友评论