2015-11-08-git-基础

Git基础命令:

clone : Clone a repository into a new directory

init : Create an empty Git repository or reinitialize an existing one

add : Add file contents to the index

mv : Move or rename a file, a directory, or a symlink

reset : Reset current HEAD to the specified state

rm : Remove files from the working tree and from the index

bisect : Use binary search to find the commit that introduced a bug

grep : Print lines matching a pattern

log : Show commit logs

show : Show various types of objects

status : Show the working tree status

branch : List, create, or delete branches

checkout : Switch branches or restore working tree files

commit : Record changes to the repository

diff : Show changes between commits, commit and working tree, etc

merge : Join two or more development histories together

rebase : Reapply commits on top of another base tip

tag : Create, list, delete or verify a tag object signed with GPG

fetch : Download objects and refs from another repository

pull : Fetch from and integrate with another repository or a local branch

push : Update remote refs along with associated objects

最近的文章

2016-01-01-ReactiveCocoa-基础

ReactiveCocoa基础 有关对 ReactiveCocoa 的看法可以看一下唐巧的这篇ReactiveCocoa 讨论会ReactiveCocoa简介ReactiveCocoa(简称为RAC),是由Github开源的一个应用于iOS和OS开发的新框架,Cocoa是苹果整套框架的简称,因此很多苹果框架喜欢以Cocoa结尾。在我们iOS开发过程中,当某些事件响应的时候,需要处理某些业务逻辑,这些事件都用不同的方式来处理。比如按钮的点击使用action,ScrollView滚动使用de...…

loxue继续阅读
更早的文章

2015-11-05-Markdown

# Markdown blogmarkdown使用说明 标题使用#这是一个标题这是一个副标题这是一个小小小的内容这是一个小小小小的内容这是一个小小小小小的内容注:使用 # 号可表示 1-6 级标题,一级标题对应一个 # 号,二级标题对应两个 # 号,以此类推。这是一个带分割线的二级标题 使用=和-展示一级标题和二级标题 我展示的是一级标题 ================= 使用内容展示斜体(_content _ *content *)两个...…

loxue继续阅读