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

git小记

时间:2019-01-11 18:54:13      阅读:206      评论:0      收藏:0      [点我收藏+]

标签:删除   git add   develop   pull   查看   strong   拉取   代码   合并   

1.在develop分支上创建新的分支feature-x:

git checkout -b feature-x develop

2.将feature-x分支合并到develop分支:

git checkout develop

git merge feature-x

3.删除feature-x分支:

git branch -d feature-x

4.上传分支代码

git status    //查看当前状态

git add .     //添加

git commit -m "注释"   

git push     //提交

5.拉取代码

git pull

6.将feature-x分支代码拉取到本地

git pull origin feature-x

 

git小记

标签:删除   git add   develop   pull   查看   strong   拉取   代码   合并   

原文地址:https://www.cnblogs.com/manru75/p/10256620.html

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