码迷,mamicode.com
首页 > 其他好文 > 详细

git使用

时间:2021-02-01 12:19:04      阅读:0      评论:0      收藏:0      [点我收藏+]

标签: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; 

git使用

标签:fetch   使用   远程分支   ranch   git add   stat   状态   set   stream   

原文地址:https://www.cnblogs.com/canglongdao/p/14153620.html

(0)
(0)
   
举报
评论 一句话评论(0
登录后才能评论!
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!