
gitlab
不带刺仙人球
这个作者很懒,什么都没留下…
展开
-
gitlab-ci配置说明
参考Wesley·zk的博客,网址:https://www.cnblogs.com/szk5043/articles/9854712.html 参考Gitlab官网:https://docs.gitlab.com/ee/ci/ 一、Docker构建镜像 Gitlab CI/CD 被.gitlab-ci.yml 文件配置,需要放在版本库的根目录下。该脚本被GitLab Runner.执行...原创 2018-04-08 15:37:44 · 389 阅读 · 0 评论 -
git查看代码量
1 windows下checkout代码,cmd 下进入项目,之后开始统计git log --author="username_zhou" --pretty=tformat: --numstat | gawk '{ add += $1 ; subs += $2 ; loc += $1 - $2 } END { printf "added lines: %s removed lines : %s t...原创 2018-04-19 17:08:47 · 6846 阅读 · 0 评论