美文网首页
git数据实验细节

git数据实验细节

作者: zouxiaoyu | 来源:发表于2016-02-26 10:47 被阅读0次

1)the sky is not the limit:

Response.Our response isLOCAdded, as a measure of

outputs produced per unit time (proxy for productivity).

It sums the count of lines of code added per commit, over

all commits by a developer in a given week. We also ex-

perimented with Commits and FileTouches. All are highly

correlated (rho≃0.82 in both cases).

2)Daniel, S., et al. The effects of diversity in global,

distributed collectives: A study of open source project

success.Inform. Syst. Res. 24, 2 (2013), 312–333.

Commits are the most encompassing form of coding contribution to

a GITHUBproject and a representative facet of developer

productivity in OSS [18].

xall<-as.data.frame(apply(all,2,function(x)(x-mean(x))/var(x)))

all<-as.data.frame(apply(all,2,function(x)(x-min(x))/(max(x)-          min(x))))

all<-as.data.frame(apply(all,2,function(x)(x-min(x))/mean(x)))

https://github.com/BroadleafCommerce/BroadleafCommerce/commit/1a245b29a7686b7b336aff467683dc90f1cfe009这个BasicFieldPersistenceProvider.java48-49行有一个import和package断行的情况

code base的checkstyle中断后怎么补救:

1,先运行cb_cs_makeup.sh 将未完成的pr的most recentSha 拿到

eg:./cb_cs_makeup.sh cb_csOK cb_csFailed ../code_style/mostRecentSha

2,再如嘉爷服务器上跑run_cb_cs_bat.sh里那样跑数据

./run_cb_cs_bat.sh /home/wqzou/newStart /home/wqzou/code_style /home/wqzou/code_style/newRepo_list 40

2016-03-16

要注意checkstyle工具依赖的jdk版本。我们如果系统的版本不满足。可以直接安装jdk。我在自己的电脑上remove掉已有的jdk,jre,java-common后,安装了open-jdk。再运行checkstyle工具,就可以了!

sudo apt-get install openjdk-7-jdk

git log --pretty=oneline --author="jw@squareup.com" | cut -f1 -d " " | xargs -I {}  git show {}

获取到特定某个人每次commit的内容

github上codestyle,这几个例子都是改code style的:

https://github.com/querydsl/querydsl/pull/1357

https://github.com/querydsl/querydsl/pull/1421

这个项目貌似一般都是通过pr来讨论问题,然后集中的几个人,集中的几个pr来配置修复checkstyle。

https://github.com/Jasig/cas/pull/1238

这个项目好像做review比较多

一个别人提pr加Eclipse的插件java formter,作者不喜欢拒绝的https://github.com/EngineHub/CommandHelper/pull/290

相关文章

  • git数据实验细节

    1)the sky is not the limit: Response.Our response isLOCAd...

  • 水质实验注意事项及质量控制第二篇(其他项目)

    水质实验检测是水质数据的生命线,必须要牢牢守住,所以在实验过程中,需要有很多注意的细节和要求,在满足的情况下,水质...

  • 5. Git, Github, Gitlab

    1. 实验环境 2. Git基本操作 2.1 git安装 2.2 配置git的用户名和邮箱 2.3 验证git配置...

  • Git操作总结

    Git一般只添加数据。你执行的 Git 操作,几乎只往 Git 数据库中增加数据。很难让 Git 执行任何不可逆操...

  • 前端架构

    应用 构建模板结构 模拟同步数据 模拟异步数据 git 分支操作 git check out 切换分支: git ...

  • Git基础知识

    Git 一般只添加数据 你执行的Git操作,几乎只往Git数据库中添加数据。很难让Git执行任何不可逆操作,或者让...

  • FPGA 自动售货机大作业

    FPGA大作业实验报告 本实验报告分为实验目标,设计概述,细节详述,常见问题分析,总结,完整代码等部分。 实验目标...

  • 【代码管理,从小抓起】(一)

    熟练使用Git & Github,方便实验室共用分析脚本。本篇文章整理了自己的一些Git笔记。 什么是Git? 一...

  • git学习日志-git保存数据的简介

    接下来几章将学习git分支,但是在了解git分支之前,有必要先回顾下git是如何保存数据及数据的组成: git保存...

  • git常用命令

    git 数据管理命令 git config --global user.name "name" #配置git使用...

网友评论

      本文标题:git数据实验细节

      本文链接:https://www.haomeiwen.com/subject/tjcwkttx.html