git
ibingow
这个作者很懒,什么都没留下…
展开
-
git使用笔记3--分支合并与管理
Chapter 3-2,3合并在提交对象C2处创建分支iss53和hotfix然后合并hotfixgit checkout mastergit merge hotfix合并时出现“Fast forward”的提示。由于当前 master 分支所在的提交对象是要并入的 hotfix 分支的直接上游,Git 只需把 master 分支指针直接右移原创 2012-03-23 15:20:55 · 1867 阅读 · 0 评论 -
git使用笔记2--分支简介
from http://progit.org/bookChapter 3git 存储的是snapshotgit仓库的结构每个文件内容的blob( What is blob?)树(多少?):包含目录内容列表(?),文件名与blob的对应关系commit:指向根树(root tree)和所有commit元数据递交是, 会对每个子目录进行checksu原创 2012-03-12 11:13:09 · 732 阅读 · 0 评论 -
git使用笔记1--基本用法
from http://progit.org/book/Chapter 2初始化已经存在的projectgit init对文件纳入版本控制git add filenames这些文件就会被tracked克隆已存在的仓库git clone记录仓库的变化each file in your working directory can b原创 2012-03-12 09:45:15 · 965 阅读 · 0 评论 -
git reflog
git reflog 可以查看所有分支的所有操作记录(包括(包括commit和reset的操作),包括已经被删除的commit记录,git log则不能察看已经删除了的commit记录具体一个例子,假设有三个commit, git st:commit3: add test3.ccommit2: add test2.ccommit1: add test1.c转载 2012-05-07 10:39:17 · 36385 阅读 · 2 评论