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

git 入门级使用

时间:2017-03-29 18:58:11      阅读:136      评论:0      收藏:0      [点我收藏+]

标签:切换   pull   push   bsp   space   comm   2.0   hit   使用   

分支:

  查看当前分支:git branch

  切换分支:

  从本地分支创建新分支并切换过去:git checkout -b 分支名

  切换回主分支:git checkout master

  删除本地分支:git branch -d 分支名

  将本地分支推送到远程:git push origin <branch>

标签:

  查看已有标签:git tag

  添加标签:

更新与合并:

  添加到提交:git add

  本地提交 —> git commit -m ‘提交内容简介‘

  本地push—>git push origin xiaojiez

  切换到 master —> git checkout master

  拉取 master 代码 —> git pull

  合并 本地分支代码到 master —> git merge xiaojiez

  推送到终端库:git push

  切换到本地分支:git checkout xiaojiez

  合并 master 代码:git merge master

解决冲突:

 

获取代码:

  git clone 地址

 

删除内容:

  rm -rf  路径1* 路径2* 路径3*

 

git 入门级使用

标签:切换   pull   push   bsp   space   comm   2.0   hit   使用   

原文地址:http://www.cnblogs.com/z-one/p/6641051.html

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