先下载 https://pc.qq.com/detail/13/detail_22693.html https://git-scm.com/downloads 官网 ...
分类:
其他好文 时间:
2020-03-30 12:43:12
阅读次数:
47
Files already tracked by Git are not affected; Git - gitignore Documentation https://git-scm.com/docs/gitignore gitignore - Specifies intentionally un ...
分类:
其他好文 时间:
2020-03-28 23:44:18
阅读次数:
102
答: 改变仓库的地址(<source code dir>/.git/config中的[remote "origin"]),如: .git/config中的[remote "origin"]如下: [remote "origin"] url= git://git.kernel.org/pub/scm/ ...
分类:
其他好文 时间:
2020-03-27 16:53:52
阅读次数:
166
一、背景和痛点大企业内部,跨团队,跨地域,导致文件共享困难如果不使用Artifactory,如何实现跨数据中心的文件共享呢?挂载NFS文件系统,开通跨数据中心的rsync/sftp协议自研解决方案,通过RESTAPI或者CLI方式,例如,雅虎的dist工具私有或者公有的云储存方案利用SCM版本控制系统对于编译构建效率影响很大NFS和云储存的方式对网络要求很高,稳定性得不到保证。自研的方式需要投入很
分类:
其他好文 时间:
2020-03-25 10:39:55
阅读次数:
78
前言 跑自动化用例每次用手工点击jenkins出发自动化用例太麻烦了,我们希望能每天固定时间跑,这样就不用管了,坐等收测试报告结果就行。 jenkins的定时任务是用的crontab语法,参考这篇 "https://www.cnblogs.com/yoyoketang/p/11167181.html ...
分类:
其他好文 时间:
2020-03-24 22:54:48
阅读次数:
129
java.lang.ClassNotFoundException: org.apache.http.util.Args
httpclient版本冲突,maven工程中传递依赖导致的版本冲突
<dependency>
<groupId>org.apache.httpcomponents</groupId>
<artifactId>httpcore</artifactId>
<version>4.4.13</version>
</dependency>
<dependency>
<groupId>org.apache.httpcomponents</groupId>
<artifactId>httpclient</artifactId>
<version>4.5.12</version>
</dependency>
分类:
Web程序 时间:
2020-03-23 16:56:17
阅读次数:
102
1、下载安装 https://git-scm.com/download/win 2、配置 # 配置用户名 git config --global user.name "oldDog" //( "username"是自己的账户名,) # 配置邮箱 git config --global user.em ...
分类:
其他好文 时间:
2020-03-22 19:56:48
阅读次数:
62
git-book: https://git-scm.com/book/zh/v2 项目分支流程管理规范: https://www.jianshu.com/p/217d2b3bc96d <- I should click it! 我关注的点: 分支:一条时间线,一条执行线,每次修改都会在分支上留下一个 ...
分类:
其他好文 时间:
2020-03-20 23:55:33
阅读次数:
93
mysql uuid SELECT LB_MATLISTS_20200120.* from LB_MATLISTS_20200120 GROUP BY matCode // 这样写会重复 select replace(uuid(),"-","") as uuid; insert into scm_m ...
分类:
数据库 时间:
2020-03-20 10:59:26
阅读次数:
78
首先安装git,官网下载https://git-scm.com/,选择自己的版本 第二步,注册码云或者GitHub,码云:https://gitee.com/,GitHub:https://github.com/ 第三步,配置用户信息 git config --global user.email " ...
分类:
其他好文 时间:
2020-03-19 13:16:13
阅读次数:
57