在SVN中Branch/tag在一个功能选项中,在使用中也往往产生混淆。在实现上,branch和tag,对于svn都是使用copy实现的,所以他们在默认的权限上和一般的目录没有区别。至于何时用tag,何时用branch,完全由人主观的根据规范和需要来选择,而不是强制的(比如cvs)。一般情况下, t...
分类:
其他好文 时间:
2015-02-04 16:20:50
阅读次数:
139
12096 The SetStack Computer
Background from Wikipedia: Set theory is a branch ofmathematics created principally by the German mathe-matician Georg
Cantor at the end of the 19th century.
Initially ...
分类:
其他好文 时间:
2015-02-02 23:20:26
阅读次数:
519
git - Deleting remote master branch, refused due to being current branch - Stack OverflowIn the settings block on the options tap in the settings page...
分类:
其他好文 时间:
2015-01-29 23:48:53
阅读次数:
194
SQB@SQB-PC/e/workspace$gitconfig--globaluser.name"Kevin"SQB@SQB-PC/e/workspace$gitconfig--globaluser.email"409747494@qq.com"SQB@SQB-PC/e/workspace$gitconfig--listcore.symlinks=falsecore.autocrlf=truecolor.diff=autocolor.status=autocolor.branch=autocolor.int..
分类:
其他好文 时间:
2015-01-29 10:41:33
阅读次数:
225
在本地创建和远程分支对应的分支,使用git checkout -b branch-name origin/branch-name,本地和远程分支的名称最好一致;建立本地分支和远程分支的关联,使用git branch --set-upstream branch-name origin/branch-n...
分类:
其他好文 时间:
2015-01-28 12:45:28
阅读次数:
149
在Git中打标签非常简单,首先,切换到需要打标签的分支上:$ git branch* dev master$ git checkout masterSwitched to branch 'master'然后,敲命令git tag 就可以打一个新标签:$ git tag v1.0可以用命令git t....
分类:
其他好文 时间:
2015-01-27 13:14:48
阅读次数:
118
人生不如意之事十之八九,合并分支往往也不是一帆风顺的。准备新的feature1分支,继续我们的新分支开发:$ git checkout -b feature1Switched to a new branch 'feature1'修改readme.txt最后一行,改为:Creating a new b...
分类:
其他好文 时间:
2015-01-27 12:48:36
阅读次数:
204
使用git管理工具,branch 应该是我们接触最多的。不论我们是修复bug,还是做项目,都会新开branch,工作完成后再合并。然而对一些初学者,对git的一些命令知之甚少,这里,给大家写一些常用的和一些不常用的,但是非常有用的branch操作命令。本文书写约定当前分支我们用master名字,新分...
分类:
其他好文 时间:
2015-01-26 11:36:12
阅读次数:
732
查看本地分支$ git branch查看远程分支加上-a参数可以查看远程分支,远程分支会用红色表示出来(如果你开了颜色支持的话):$ git branch -a master remote tungway v1.52* zrong remotes/origin/master remote...
分类:
其他好文 时间:
2015-01-21 01:19:23
阅读次数:
273
1:cd--进入项目目录(cd projiect/)2:ls--查看项目目录3:git branch--查看分支4:git status--查看状态5:git checkout staging--切换分支6:mysql.server start--启动数据库7:git pull origin sta...
分类:
Web程序 时间:
2015-01-20 10:13:17
阅读次数:
210