标签:fetch 使用 远程分支 ranch git add stat 状态 set stream
一、复制git地址;
克隆;
二、创建分支;
#获取远程所有分支 git branch -r #从远程master分支检出本地分支 git checkout -b songlingling origin/master #查看本地所有分支 git branch #查看本地文件修改状态 git status -------------------------------------------------------- #拉取远程master分支更改 git fetch origin master (每次提交前先拉一下远程分支) #合并远程master分支 git merge origin/master -------------------------------------------------------- #添加本地修改 git add . #提交当前更改 git commit -m ‘更改说明‘ #push当前commit到远程指定分支 git push origin songlingling ------------------------------ git branch -a 查看所有本地和远程分支 git checkout -b [newBranch] 建立本地分支newBranch git push origin [newBranch] :[newBranch] 创建远程分支newBranch git push --set-upstream origin [newBranch] 建立联系
三、git网页上,merger request——>submit;
标签:fetch 使用 远程分支 ranch git add stat 状态 set stream
原文地址:https://www.cnblogs.com/canglongdao/p/14153620.html