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

git使用

时间:2019-11-15 15:49:56      阅读:84      评论:0      收藏:0      [点我收藏+]

标签:--   远程仓库   ranch   add   master   介绍   branch   简单   git   

1、在当前的工作夹打开git,就是主分支

2、git branch 分支名,(创建分支)

3、git status 查看状态

4、git add .  提交所有的分支内容,把分支内容添加到git仓库中暂存

5、git commit -m ‘提交的内容简单介绍‘  把文件提交到仓库,最好是提交的内容相关的简介,方便查看

6、git branch -d 分支名字  删除分支

7、git checkout -b 分支名  创建切换分支

8、git merge  分支名  合并分支到当前分支

9、git pull  远程git地址  从线上拉取代码 

10、git clone  远程仓库地址  从线上克隆主分支的内容

11、git remote add origin 远程git地址 关联远程仓库地址

12、git push -u origin master 第一次推送master分支到远程仓库 

13、git log --graph  查看分支合并图

git使用

标签:--   远程仓库   ranch   add   master   介绍   branch   简单   git   

原文地址:https://www.cnblogs.com/lljun/p/11867057.html

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