Created
March 8, 2022 14:03
-
-
Save JensRantil/d08e6b57205067dde3b530642720574f to your computer and use it in GitHub Desktop.
Stats on most common author in VueJS project
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
$ git log -1 | |
commit 6aa11872c88481dfa2da151536317176c48f226c (HEAD -> dev, origin/dev, origin/HEAD) | |
Author: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com> | |
Date: Tue Feb 22 19:38:12 2022 +0100 | |
build(deps): bump ajv from 6.6.2 to 6.12.6 (#12468) | |
Co-authored-by: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com> | |
$ find . -type f -exec cat {} + | wc -l | |
307257 | |
$ for f in `git ls-files`;do git blame -le $f;done | cut '-d ' -f 2 | sort | uniq -c | sort -n | tail | |
920 src/compiler/parser/index.js | |
1034 (<posva13@gmail.com> | |
1138 (<defcc@users.noreply.github.com> | |
1360 (<vik120@icloud.com> | |
1501 test/ssr/ssr-string.spec.js | |
2103 packages/vue-server-renderer/build.dev.js | |
2586 (<kawakazu80@gmail.com> | |
3989 (<zhanghan.me@gmail.com> | |
7547 packages/vue-server-renderer/build.js | |
141260 (<yyx990803@gmail.com> |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment