Discription There is a skyscraping tree standing on the playground of Nanjing University of Science and Technology. On each branch of the tree is an i ...
分类:
其他好文 时间:
2018-01-19 21:28:55
阅读次数:
181
主干(trunk)、分支(branch )、标记(tag) 在SVN中Branch/tag在一个功能选项中,在使用中也往往产生混淆。 在实现上,branch和tag,对于svn都是使用copy实现的,所以他们在默认的权限上和一般的目录没有区别。至于何时用tag,何时用branch,完全由人主观的根据 ...
分类:
其他好文 时间:
2018-01-17 13:51:29
阅读次数:
142
1. 邮件配置变量 ${GIT_BRANCH} build 的 Git 分支 ${FILE,path="PATH"} 包括指定文件(路径)的含量相对于工作空间根目录。 path文件路径,注意:是工作区目录的相对路径。 ${BUILD_NUMBER} 显示当前构建的编号。 ${JOB_DESCRIPT ...
分类:
其他好文 时间:
2018-01-16 14:06:24
阅读次数:
531
一:版本管理 代码版本库:Trunk Branch Tag使用 Trunk——主开发目录,开发环境,没有版本号和发布名称,是项目最新进度的开发版本,如2.0开始开发,trunk此时为2.0的开发版 Branch——分支开发目录,环境基于目的来配置,基于任意进度版本(Trunk或者Tag),为某一具体 ...
分类:
其他好文 时间:
2018-01-16 12:21:34
阅读次数:
216
stackoverflow原问题地址:http://stackoverflow.com/questions/13716658/how to delete all commit history in github 原文:http://blog.csdn.net/yc1022/article/detai ...
分类:
其他好文 时间:
2018-01-16 00:54:36
阅读次数:
2003
报异常的方法内使用了Java 7的新特性:自动资源释放,类似于try(){},即在try后面跟一括号,在括号里面对一些资源赋值,try里面的代码块执行完毕之后会自动释放try后面的括号中声明的资源。 Java 7 会使用新的Class类型校验器,新的类型校验器将老的校验器分为两步: 1、类型推断 2 ...
分类:
编程语言 时间:
2018-01-15 12:38:57
阅读次数:
345
1. 配置别名 用git st表示git status$ git config --global alias.st status $ git st On branch master Your branch is ahead of 'origin/master' by 1 commit. (use " ...
分类:
其他好文 时间:
2018-01-14 13:03:36
阅读次数:
124
It’s 2013, and there’s no way around it: you need to learn how to use GitHub.2 Why? Because it’s a social network that has completely changed the way ...
分类:
其他好文 时间:
2018-01-10 23:46:49
阅读次数:
311
更新:git pull 删除未提交的文件:git clean -f 删除未提交的文件夹:git clean -fd 查看状态:git status 查看分支:git branch 检出某分支:git checkout origin/2.0release 回到某个提交:git reset --hard ...
分类:
其他好文 时间:
2018-01-10 15:49:11
阅读次数:
147
##解决冲突,创建分支 #查看所有分支 #创建新的分支 develop 切换到一个新分支 'develop'如果分支存在 fatal: A branch named 'develop' already exists. #切换会master #或者develop 分支 切换到分支 'master' # ...
分类:
系统相关 时间:
2018-01-08 18:33:44
阅读次数:
1904