首页 > 其他 > 详细

git使用

时间:2021-01-30 21:14:14      阅读:39      评论:0      收藏:0      [点我收藏+]

 一、复制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使用

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

(0)
(0)
   
举报
评论 一句话评论(0
关于我们 - 联系我们 - 留言反馈 - 联系我们:wmxa8@hotmail.com
© 2014 bubuko.com 版权所有
打开技术之扣,分享程序人生!