
git
liqingshan_sh
这个作者很懒,什么都没留下…
展开
专栏收录文章
- 默认排序
- 最新发布
- 最早发布
- 最多阅读
- 最少阅读
-
git mergetool
名字: 运行merge-conflict resolution 工具去解决merge冲突 语法: 'git mergetool' [--tool=] [-y | --[no-]prompt] [...]描述: git mergetool 用来解决merge冲突。在这个过程中会调用merge 实体中的一个。通常这个命令用在 git merge之后。如果这个命令提供了一个或者多个文件参数,程序翻译 2015-02-11 13:07:32 · 821 阅读 · 0 评论 -
git merge-base
NAME: git-merge-base Find as good common ancestors as possible for a merge SYNOPSIS: 'git merge-base' [-a|--all] ... 'git merge-base' [-a|--all] --octopus ... 'git merge-base' --is-ancestor 'git翻译 2015-02-10 18:07:29 · 783 阅读 · 0 评论 -
git rebase
假设你现在基于远程分支“origin”,创建一个叫"mywork"的分支。 $ git checkout -b mywork origin 现在我们在这个分支上做一些修改,然后生成两个提交(commit). $ vi file.txt $ git commit $ vi otherfile.txt $ git commit ... 但是与此同时,有些人也在"origin"分支上做了转载 2015-02-12 13:40:19 · 351 阅读 · 0 评论