码迷,mamicode.com
首页 > 移动开发 > 详细

iOS开发——开发技巧&Git常用命令

时间:2015-06-24 23:59:16      阅读:293      评论:0      收藏:0      [点我收藏+]

标签:

Git常用命令

初始化
git init        加—bare实现远程仓库

配置
git config user.name iCocos

配置全局
git config —global user.name iCocos
git config —global user.email iCocos@163.com

状态
git status

添加到帮派
git add iCocos.m

提交
git commit iCocos.m -m “注释”

Log纪录
git log
git log + 文件名
git reflog          所有记录


反悔
》1提交之前
git checout iCocos.m
git reset —hard HEAD    注意:这里没有^


》2提交之后
git reset  —hard HEAD^                        强制重置(回到上一个版本)
git reset —hard +版本号                      回到指定版本号





git diff     查看文件变化(修改了那个地方)


/********
远程配置



分支:
git tag -a V1.0 -m ‘Versiion 1.0’

查看版本:
git tag

添加到服务器
git push origin v1.0

 

iOS开发——开发技巧&Git常用命令

标签:

原文地址:http://www.cnblogs.com/iCocos/p/4598847.html

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