
git
YingVickyCao
这个作者很懒,什么都没留下…
展开
-
git study summary
1 How to get the code from the remote repository, then commit your code to remote repositoryGet the code from the remote repository.When clone, not need the user name and pwd. But git push com原创 2016-01-19 21:07:52 · 638 阅读 · 0 评论 -
git merge 工具 gvimdiff使用介绍
上一篇文章介绍了git冲突后的处理,这篇文章说明如果使用gvimdiff工具处理冲突:在使用前,我们先配置下vim参数,读取根目录下的.vimrc文件,加入下面几行:Shell123456789set laststatus=2 "show the status lines转载 2016-08-10 23:03:38 · 4061 阅读 · 0 评论 -
如何使用 vimdiff 来 git diff 和merge diff
git config --global diff.tool vimdiffgit config --global difftool.prompt falsegit config --global merge.tool vimdiffgit config --global mergetool.prompt falsegit config --global alia原创 2016-08-10 23:05:29 · 3244 阅读 · 0 评论 -
高效使用vimdiff解决git merge冲突(英文版)
http://blog.youkuaiyun.com/redguardtoo/article/details/9076961If you are already a vim and git master and you are impatient, please jump to theQuick start section at the end of this article.转载 2016-08-10 23:07:16 · 1775 阅读 · 0 评论 -
技巧:Vimdiff 使用
技巧:Vimdiff 使用转载地址:http://www.ibm.com/developerworks/cn/linux/l-vimdiff/各种 IDE 大行其道的同时,传统的命令行工具以其短小精悍,随手可得的特点仍有很大的生存空间,这篇短文介绍了一个文本比较和合并的小工具:vimdiff。希望能对在 Unix/Linux 系统上进行开发的朋友有所帮助。转载 2016-08-10 23:08:24 · 589 阅读 · 0 评论 -
Use vimdiff as git mergetool
http://www.rosipov.com/blog/use-vimdiff-as-git-mergetool/Using vimdiff as a git mergetool can be pretty confusing - multiple windows and little explanation. This is a short tutorial which expl转载 2016-08-10 23:09:52 · 720 阅读 · 0 评论 -
vimdiff比较两个文件
http://blog.youkuaiyun.com/zcube/article/details/42298529[html] view plain copy 实用的vim下比较两个文件命令: 1、 vimdiff file1 file2 终端下输入该命令进入vim,垂直分隔窗口进行比较 2、 vimdiff -o fi转载 2016-08-11 00:07:46 · 4445 阅读 · 0 评论 -
Viewing all `gitdiffs` with vimdiff
Viewing all `gitdiffs` with vimdiff git config --globaldiff.tool vimdiffgit config --globaldifftool.prompt falsegit config --globalalias.d difftoolgit config diff.toolvimdiff use git di原创 2018-01-04 21:32:00 · 269 阅读 · 0 评论