mirror of
https://github.com/git-quick-stats/git-quick-stats.git
synced 2025-12-16 12:00:12 +01:00
Compare commits
21 Commits
| Author | SHA1 | Date | |
|---|---|---|---|
|
|
ed0e3cbb6b | ||
|
|
46a771138e | ||
|
|
9f54b87ed5 | ||
|
|
246076f5f6 | ||
|
|
c0a1795c1a | ||
|
|
63b9b42034 | ||
|
|
90f9e359c3 | ||
|
|
82ba58e01d | ||
|
|
5b64a8de17 | ||
|
|
b77021c545 | ||
|
|
62458b6fd1 | ||
|
|
ad5b503eea | ||
|
|
96b5dab53f | ||
|
|
85b7fb1cdf | ||
|
|
151b260be1 | ||
|
|
f06b7f4833 | ||
|
|
bf7533afa7 | ||
|
|
27edcf0f7a | ||
|
|
dc72babb20 | ||
|
|
c8ad2fba84 | ||
|
|
5cf8feee53 |
1
.github/FUNDING.yml
vendored
1
.github/FUNDING.yml
vendored
@@ -2,3 +2,4 @@
|
|||||||
|
|
||||||
github: [arzzen]
|
github: [arzzen]
|
||||||
open_collective: git-quick-stats
|
open_collective: git-quick-stats
|
||||||
|
custom: ['https://lukasmestan.com/thanks/']
|
||||||
|
|||||||
38
.github/ISSUE_TEMPLATE/bug_report.md
vendored
Normal file
38
.github/ISSUE_TEMPLATE/bug_report.md
vendored
Normal file
@@ -0,0 +1,38 @@
|
|||||||
|
---
|
||||||
|
name: Bug report
|
||||||
|
about: Create a report to help us improve
|
||||||
|
title: ''
|
||||||
|
labels: ''
|
||||||
|
assignees: ''
|
||||||
|
|
||||||
|
---
|
||||||
|
|
||||||
|
**Describe the bug**
|
||||||
|
A clear and concise description of what the bug is.
|
||||||
|
|
||||||
|
**To Reproduce**
|
||||||
|
Steps to reproduce the behavior:
|
||||||
|
1. Go to '...'
|
||||||
|
2. Click on '....'
|
||||||
|
3. Scroll down to '....'
|
||||||
|
4. See error
|
||||||
|
|
||||||
|
**Expected behavior**
|
||||||
|
A clear and concise description of what you expected to happen.
|
||||||
|
|
||||||
|
**Screenshots**
|
||||||
|
If applicable, add screenshots to help explain your problem.
|
||||||
|
|
||||||
|
**Desktop (please complete the following information):**
|
||||||
|
- OS: [e.g. iOS]
|
||||||
|
- Browser [e.g. chrome, safari]
|
||||||
|
- Version [e.g. 22]
|
||||||
|
|
||||||
|
**Smartphone (please complete the following information):**
|
||||||
|
- Device: [e.g. iPhone6]
|
||||||
|
- OS: [e.g. iOS8.1]
|
||||||
|
- Browser [e.g. stock browser, safari]
|
||||||
|
- Version [e.g. 22]
|
||||||
|
|
||||||
|
**Additional context**
|
||||||
|
Add any other context about the problem here.
|
||||||
20
.github/ISSUE_TEMPLATE/feature_request.md
vendored
Normal file
20
.github/ISSUE_TEMPLATE/feature_request.md
vendored
Normal file
@@ -0,0 +1,20 @@
|
|||||||
|
---
|
||||||
|
name: Feature request
|
||||||
|
about: Suggest an idea for this project
|
||||||
|
title: ''
|
||||||
|
labels: ''
|
||||||
|
assignees: ''
|
||||||
|
|
||||||
|
---
|
||||||
|
|
||||||
|
**Is your feature request related to a problem? Please describe.**
|
||||||
|
A clear and concise description of what the problem is. Ex. I'm always frustrated when [...]
|
||||||
|
|
||||||
|
**Describe the solution you'd like**
|
||||||
|
A clear and concise description of what you want to happen.
|
||||||
|
|
||||||
|
**Describe alternatives you've considered**
|
||||||
|
A clear and concise description of any alternative solutions or features you've considered.
|
||||||
|
|
||||||
|
**Additional context**
|
||||||
|
Add any other context or screenshots about the feature request here.
|
||||||
1
.gitignore
vendored
1
.gitignore
vendored
@@ -7,3 +7,4 @@
|
|||||||
.Spotlight*
|
.Spotlight*
|
||||||
.Trash*
|
.Trash*
|
||||||
**/*~
|
**/*~
|
||||||
|
nbproject/*
|
||||||
27
Dockerfile
Normal file
27
Dockerfile
Normal file
@@ -0,0 +1,27 @@
|
|||||||
|
FROM alpine
|
||||||
|
|
||||||
|
# Copy sources
|
||||||
|
COPY . /app
|
||||||
|
|
||||||
|
# Install required packages & build git-quick-stats
|
||||||
|
RUN apk add --no-cache bash git make ncurses util-linux \
|
||||||
|
&& cd /app \
|
||||||
|
&& make install \
|
||||||
|
&& rm -rf /app \
|
||||||
|
&& apk del --no-cache make \
|
||||||
|
&& mkdir -p /usr/local/bin \
|
||||||
|
&& echo -en "#!/bin/bash\nset -e\n[[ \"\${1::1}\" == '-' ]] && set -- /usr/bin/git quick-stats \"\$@\"\nexec \"\$@\"" \
|
||||||
|
> /usr/local/bin/docker-entrypoint \
|
||||||
|
&& chmod +x /usr/local/bin/docker-entrypoint
|
||||||
|
|
||||||
|
# Declare all variables usables by git-quick-stats
|
||||||
|
ENV _GIT_SINCE= \
|
||||||
|
_GIT_UNTIL= \
|
||||||
|
_GIT_LIMIT= \
|
||||||
|
_GIT_PATHSPEC= \
|
||||||
|
_MENU_THEME=default \
|
||||||
|
TERM=xterm-256color
|
||||||
|
|
||||||
|
WORKDIR /git
|
||||||
|
ENTRYPOINT [ "/usr/local/bin/docker-entrypoint" ]
|
||||||
|
CMD [ "/usr/bin/git", "quick-stats" ]
|
||||||
2
LICENSE
2
LICENSE
@@ -1,6 +1,6 @@
|
|||||||
MIT License
|
MIT License
|
||||||
|
|
||||||
Copyright (c) 2019 Lukáš Mešťan
|
Copyright (c) 2020 Lukáš Mešťan
|
||||||
|
|
||||||
Permission is hereby granted, free of charge, to any person obtaining a copy
|
Permission is hereby granted, free of charge, to any person obtaining a copy
|
||||||
of this software and associated documentation files (the "Software"), to deal
|
of this software and associated documentation files (the "Software"), to deal
|
||||||
|
|||||||
21
README.md
21
README.md
@@ -19,6 +19,7 @@
|
|||||||
* [**Git log since and until**](#git-log-since-and-until)
|
* [**Git log since and until**](#git-log-since-and-until)
|
||||||
* [**Git log limit**](#git-log-limit)
|
* [**Git log limit**](#git-log-limit)
|
||||||
* [**Git pathspec**](#git-pathspec)
|
* [**Git pathspec**](#git-pathspec)
|
||||||
|
* [**Git merge view strategy**](#git-merge-view-strategy)
|
||||||
* [**Color themes**](#color-themes)
|
* [**Color themes**](#color-themes)
|
||||||
|
|
||||||
[**Installation**](#installation)
|
[**Installation**](#installation)
|
||||||
@@ -26,6 +27,7 @@
|
|||||||
* [**UNIX and Linux**](#unix-and-linux)
|
* [**UNIX and Linux**](#unix-and-linux)
|
||||||
* [**macOS**](#macos-homebrew)
|
* [**macOS**](#macos-homebrew)
|
||||||
* [**Windows**](#windows)
|
* [**Windows**](#windows)
|
||||||
|
* [**Docker**](#docker)
|
||||||
|
|
||||||
[**System requirements**](#system-requirements)
|
[**System requirements**](#system-requirements)
|
||||||
|
|
||||||
@@ -158,6 +160,15 @@ You can also exclude files from the stats. Note that it works with any alphanume
|
|||||||
export _GIT_PATHSPEC=':!package-lock.json'
|
export _GIT_PATHSPEC=':!package-lock.json'
|
||||||
```
|
```
|
||||||
|
|
||||||
|
### Git merge view strategy
|
||||||
|
|
||||||
|
You can set the variable `_GIT_MERGE_VIEW` to enable merge commits to be part of the stats by setting `_GIT_MERGE_VIEW` to `enable`. You can also choose to only show merge commits by setting `_GIT_MERGE_VIEW` to `exclusive`. Default is to not show merge commits. These work similar to git's built-in `--merges` and `--no-merges` log options.
|
||||||
|
|
||||||
|
```bash
|
||||||
|
export _GIT_MERGE_VIEW="enable"
|
||||||
|
export _GIT_MERGE_VIEW="exclusive"
|
||||||
|
```
|
||||||
|
|
||||||
### Color themes
|
### Color themes
|
||||||
|
|
||||||
You can change to the legacy color scheme by toggling the variable `_MENU_THEME` between `default` and `legacy`
|
You can change to the legacy color scheme by toggling the variable `_MENU_THEME` between `default` and `legacy`
|
||||||
@@ -206,6 +217,14 @@ If you are installing with Cygwin, use these scripts:
|
|||||||
|
|
||||||
If you are wishing to use this with WSL, follow the UNIX and Linux instructions.
|
If you are wishing to use this with WSL, follow the UNIX and Linux instructions.
|
||||||
|
|
||||||
|
### Docker
|
||||||
|
|
||||||
|
You can use the Docker image provided:
|
||||||
|
|
||||||
|
* Build: `docker build -t arzzen/git-quick-stats .`
|
||||||
|
* Run interactive menu: `docker run --rm -it -v $(pwd):/git arzzen/git-quick-stats`
|
||||||
|
* Docker pull command: `docker pull arzzen/git-quick-stats` [docker repository](https://hub.docker.com/r/arzzen/git-quick-stats)
|
||||||
|
|
||||||
## System requirements
|
## System requirements
|
||||||
|
|
||||||
* An OS with a Bash shell
|
* An OS with a Bash shell
|
||||||
@@ -260,7 +279,7 @@ make test
|
|||||||
|
|
||||||
MIT see [LICENSE][] for the full license text.
|
MIT see [LICENSE][] for the full license text.
|
||||||
|
|
||||||
[read this page]: http://github.com/arzzen/git-quick-stats/blob/master/docs/CONTRIBUTING.md
|
[read this page]: http://github.com/arzzen/git-quick-stats/blob/master/.github/CONTRIBUTING.md
|
||||||
[landing page]: http://arzzen.github.io/git-quick-stats
|
[landing page]: http://arzzen.github.io/git-quick-stats
|
||||||
[LICENSE]: https://github.com/arzzen/git-quick-stats/blob/master/LICENSE
|
[LICENSE]: https://github.com/arzzen/git-quick-stats/blob/master/LICENSE
|
||||||
|
|
||||||
|
|||||||
BIN
docs/bg.png
BIN
docs/bg.png
Binary file not shown.
|
Before Width: | Height: | Size: 55 KiB |
6
docs/css/animate.min.css
vendored
6
docs/css/animate.min.css
vendored
File diff suppressed because one or more lines are too long
5
docs/css/bootstrap.min.css
vendored
5
docs/css/bootstrap.min.css
vendored
File diff suppressed because one or more lines are too long
@@ -1,509 +0,0 @@
|
|||||||
/*!
|
|
||||||
* Start Bootstrap - Creative Bootstrap Theme (http://startbootstrap.com)
|
|
||||||
* Code licensed under the Apache License v2.0.
|
|
||||||
* For details, see http://www.apache.org/licenses/LICENSE-2.0.
|
|
||||||
*/
|
|
||||||
|
|
||||||
html,
|
|
||||||
body {
|
|
||||||
width: 100%;
|
|
||||||
height: 100%;
|
|
||||||
}
|
|
||||||
|
|
||||||
body {
|
|
||||||
font-family: Merriweather,'Helvetica Neue',Arial,sans-serif;
|
|
||||||
}
|
|
||||||
|
|
||||||
hr {
|
|
||||||
max-width: 50px;
|
|
||||||
border-color: #f05f40;
|
|
||||||
border-width: 3px;
|
|
||||||
}
|
|
||||||
|
|
||||||
hr.light {
|
|
||||||
border-color: #fff;
|
|
||||||
}
|
|
||||||
|
|
||||||
a {
|
|
||||||
color: #f05f40;
|
|
||||||
-webkit-transition: all .35s;
|
|
||||||
-moz-transition: all .35s;
|
|
||||||
transition: all .35s;
|
|
||||||
}
|
|
||||||
|
|
||||||
a:hover,
|
|
||||||
a:focus {
|
|
||||||
color: #eb3812;
|
|
||||||
}
|
|
||||||
|
|
||||||
#about a {
|
|
||||||
color: rgba(52, 52, 52, .7);
|
|
||||||
}
|
|
||||||
|
|
||||||
#about a:hover,
|
|
||||||
#about a:focus {
|
|
||||||
color: rgb(52, 52, 52);
|
|
||||||
}
|
|
||||||
|
|
||||||
h1,
|
|
||||||
h2,
|
|
||||||
h3,
|
|
||||||
h4,
|
|
||||||
h5,
|
|
||||||
h6 {
|
|
||||||
font-family: 'Open Sans','Helvetica Neue',Arial,sans-serif;
|
|
||||||
}
|
|
||||||
|
|
||||||
p {
|
|
||||||
margin-bottom: 20px;
|
|
||||||
font-size: 16px;
|
|
||||||
line-height: 1.5;
|
|
||||||
}
|
|
||||||
|
|
||||||
.bg-primary {
|
|
||||||
background-color: #f05f40;
|
|
||||||
}
|
|
||||||
|
|
||||||
.bg-dark {
|
|
||||||
color: #fff;
|
|
||||||
background-color: #222;
|
|
||||||
}
|
|
||||||
|
|
||||||
.text-faded {
|
|
||||||
color: rgba(255,255,255,.7);
|
|
||||||
}
|
|
||||||
|
|
||||||
section {
|
|
||||||
padding: 100px 0;
|
|
||||||
}
|
|
||||||
|
|
||||||
aside {
|
|
||||||
padding: 50px 0;
|
|
||||||
}
|
|
||||||
|
|
||||||
.no-padding {
|
|
||||||
padding: 0;
|
|
||||||
}
|
|
||||||
|
|
||||||
.navbar-default {
|
|
||||||
border-color: rgba(34,34,34,.05);
|
|
||||||
font-family: 'Open Sans','Helvetica Neue',Arial,sans-serif;
|
|
||||||
background-color: #fff;
|
|
||||||
-webkit-transition: all .35s;
|
|
||||||
-moz-transition: all .35s;
|
|
||||||
transition: all .35s;
|
|
||||||
}
|
|
||||||
|
|
||||||
.navbar-default .navbar-header .navbar-brand {
|
|
||||||
text-transform: uppercase;
|
|
||||||
font-family: 'Open Sans','Helvetica Neue',Arial,sans-serif;
|
|
||||||
font-weight: 700;
|
|
||||||
color: #2d8888;
|
|
||||||
}
|
|
||||||
|
|
||||||
.navbar-default .navbar-header .navbar-brand:hover,
|
|
||||||
.navbar-default .navbar-header .navbar-brand:focus {
|
|
||||||
color: #eb3812;
|
|
||||||
}
|
|
||||||
|
|
||||||
.navbar-default .nav > li>a,
|
|
||||||
.navbar-default .nav>li>a:focus {
|
|
||||||
text-transform: uppercase;
|
|
||||||
font-size: 13px;
|
|
||||||
font-weight: 700;
|
|
||||||
color: #222;
|
|
||||||
}
|
|
||||||
|
|
||||||
.navbar-default .nav > li>a:hover,
|
|
||||||
.navbar-default .nav>li>a:focus:hover {
|
|
||||||
color: #f05f40;
|
|
||||||
}
|
|
||||||
|
|
||||||
.navbar-default .nav > li.active>a,
|
|
||||||
.navbar-default .nav>li.active>a:focus {
|
|
||||||
color: #f05f40!important;
|
|
||||||
background-color: transparent;
|
|
||||||
}
|
|
||||||
|
|
||||||
.navbar-default .nav > li.active>a:hover,
|
|
||||||
.navbar-default .nav>li.active>a:focus:hover {
|
|
||||||
background-color: transparent;
|
|
||||||
}
|
|
||||||
|
|
||||||
@media(min-width:768px) {
|
|
||||||
.navbar-default {
|
|
||||||
border-color: rgba(255,255,255,.3);
|
|
||||||
background-color: transparent;
|
|
||||||
}
|
|
||||||
|
|
||||||
.navbar-default .navbar-header .navbar-brand {
|
|
||||||
color: rgba(255,255,255,.7);
|
|
||||||
}
|
|
||||||
|
|
||||||
.navbar-default .navbar-header .navbar-brand:hover,
|
|
||||||
.navbar-default .navbar-header .navbar-brand:focus {
|
|
||||||
color: #fff;
|
|
||||||
}
|
|
||||||
|
|
||||||
.navbar-default .nav > li>a,
|
|
||||||
.navbar-default .nav>li>a:focus {
|
|
||||||
color: rgba(255,255,255,.7);
|
|
||||||
}
|
|
||||||
|
|
||||||
.navbar-default .nav > li>a:hover,
|
|
||||||
.navbar-default .nav>li>a:focus:hover {
|
|
||||||
color: #fff;
|
|
||||||
}
|
|
||||||
|
|
||||||
.navbar-default.affix {
|
|
||||||
border-color: rgba(34,34,34,.05);
|
|
||||||
background-color: #fff;
|
|
||||||
}
|
|
||||||
|
|
||||||
.navbar-default.affix .navbar-header .navbar-brand {
|
|
||||||
font-size: 14px;
|
|
||||||
color: #f05f40;
|
|
||||||
}
|
|
||||||
|
|
||||||
.navbar-default.affix .navbar-header .navbar-brand:hover,
|
|
||||||
.navbar-default.affix .navbar-header .navbar-brand:focus {
|
|
||||||
color: #eb3812;
|
|
||||||
}
|
|
||||||
|
|
||||||
.navbar-default.affix .nav > li>a,
|
|
||||||
.navbar-default.affix .nav>li>a:focus {
|
|
||||||
color: #222;
|
|
||||||
}
|
|
||||||
|
|
||||||
.navbar-default.affix .nav > li>a:hover,
|
|
||||||
.navbar-default.affix .nav>li>a:focus:hover {
|
|
||||||
color: #f05f40;
|
|
||||||
}
|
|
||||||
}
|
|
||||||
|
|
||||||
header {
|
|
||||||
position: relative;
|
|
||||||
width: 100%;
|
|
||||||
min-height: auto;
|
|
||||||
text-align: center;
|
|
||||||
color: #fff;
|
|
||||||
background-color: #2f2d2f;
|
|
||||||
/*background-color: #2c3333;*/
|
|
||||||
/*background-image: url(../img/header.jpg);*/
|
|
||||||
/*background-position: center;*/
|
|
||||||
/*-webkit-background-size: cover;*/
|
|
||||||
/*-moz-background-size: cover;*/
|
|
||||||
/*background-size: cover;*/
|
|
||||||
/*-o-background-size: cover;*/
|
|
||||||
}
|
|
||||||
|
|
||||||
header .header-content {
|
|
||||||
position: relative;
|
|
||||||
width: 100%;
|
|
||||||
padding: 100px 15px;
|
|
||||||
text-align: center;
|
|
||||||
}
|
|
||||||
|
|
||||||
header .header-content .header-content-inner h1 {
|
|
||||||
margin-top: 0;
|
|
||||||
margin-bottom: 0;
|
|
||||||
/* text-transform: uppercase; */
|
|
||||||
font-weight: 700;
|
|
||||||
font-size: 120px;
|
|
||||||
}
|
|
||||||
|
|
||||||
header .header-content .header-content-inner hr {
|
|
||||||
margin: 30px auto;
|
|
||||||
}
|
|
||||||
|
|
||||||
header .header-content .header-content-inner p {
|
|
||||||
margin-bottom: 50px;
|
|
||||||
font-size: 16px;
|
|
||||||
font-weight: 300;
|
|
||||||
color: rgba(255,255,255,.7);
|
|
||||||
}
|
|
||||||
|
|
||||||
@media(min-width:768px) {
|
|
||||||
header {
|
|
||||||
min-height: 100%;
|
|
||||||
}
|
|
||||||
|
|
||||||
header .header-content {
|
|
||||||
position: absolute;
|
|
||||||
top: 50%;
|
|
||||||
padding: 0 50px;
|
|
||||||
-webkit-transform: translateY(-50%);
|
|
||||||
-ms-transform: translateY(-50%);
|
|
||||||
transform: translateY(-50%);
|
|
||||||
}
|
|
||||||
|
|
||||||
header .header-content .header-content-inner {
|
|
||||||
margin-right: auto;
|
|
||||||
margin-left: auto;
|
|
||||||
max-width: 1000px;
|
|
||||||
}
|
|
||||||
|
|
||||||
header .header-content .header-content-inner p {
|
|
||||||
margin-right: auto;
|
|
||||||
margin-left: auto;
|
|
||||||
max-width: 80%;
|
|
||||||
font-size: 18px;
|
|
||||||
}
|
|
||||||
}
|
|
||||||
|
|
||||||
.section-heading {
|
|
||||||
margin-top: 0;
|
|
||||||
}
|
|
||||||
|
|
||||||
.service-box {
|
|
||||||
margin: 50px auto 0;
|
|
||||||
max-width: 400px;
|
|
||||||
}
|
|
||||||
|
|
||||||
@media(min-width:992px) {
|
|
||||||
.service-box {
|
|
||||||
margin: 20px auto 0;
|
|
||||||
}
|
|
||||||
}
|
|
||||||
|
|
||||||
.service-box p {
|
|
||||||
margin-bottom: 0;
|
|
||||||
}
|
|
||||||
|
|
||||||
.portfolio-box {
|
|
||||||
display: block;
|
|
||||||
position: relative;
|
|
||||||
margin: 0 auto;
|
|
||||||
max-width: 650px;
|
|
||||||
}
|
|
||||||
|
|
||||||
.portfolio-box .portfolio-box-caption {
|
|
||||||
display: block;
|
|
||||||
position: absolute;
|
|
||||||
bottom: 0;
|
|
||||||
width: 100%;
|
|
||||||
height: 100%;
|
|
||||||
text-align: center;
|
|
||||||
color: #fff;
|
|
||||||
opacity: 0;
|
|
||||||
background: rgba(240,95,64,.9);
|
|
||||||
-webkit-transition: all .35s;
|
|
||||||
-moz-transition: all .35s;
|
|
||||||
transition: all .35s;
|
|
||||||
}
|
|
||||||
|
|
||||||
.portfolio-box .portfolio-box-caption .portfolio-box-caption-content {
|
|
||||||
position: absolute;
|
|
||||||
top: 50%;
|
|
||||||
width: 100%;
|
|
||||||
text-align: center;
|
|
||||||
transform: translateY(-50%);
|
|
||||||
}
|
|
||||||
|
|
||||||
.portfolio-box .portfolio-box-caption .portfolio-box-caption-content .project-category,
|
|
||||||
.portfolio-box .portfolio-box-caption .portfolio-box-caption-content .project-name {
|
|
||||||
padding: 0 15px;
|
|
||||||
font-family: 'Open Sans','Helvetica Neue',Arial,sans-serif;
|
|
||||||
}
|
|
||||||
|
|
||||||
.portfolio-box .portfolio-box-caption .portfolio-box-caption-content .project-category {
|
|
||||||
text-transform: uppercase;
|
|
||||||
font-size: 14px;
|
|
||||||
font-weight: 600;
|
|
||||||
}
|
|
||||||
|
|
||||||
.portfolio-box .portfolio-box-caption .portfolio-box-caption-content .project-name {
|
|
||||||
font-size: 18px;
|
|
||||||
}
|
|
||||||
|
|
||||||
.portfolio-box:hover .portfolio-box-caption {
|
|
||||||
opacity: 1;
|
|
||||||
}
|
|
||||||
|
|
||||||
@media(min-width:768px) {
|
|
||||||
.portfolio-box .portfolio-box-caption .portfolio-box-caption-content .project-category {
|
|
||||||
font-size: 16px;
|
|
||||||
}
|
|
||||||
|
|
||||||
.portfolio-box .portfolio-box-caption .portfolio-box-caption-content .project-name {
|
|
||||||
font-size: 22px;
|
|
||||||
}
|
|
||||||
}
|
|
||||||
|
|
||||||
.call-to-action h2 {
|
|
||||||
margin: 0 auto 20px;
|
|
||||||
}
|
|
||||||
|
|
||||||
.text-primary {
|
|
||||||
color: #f05f40;
|
|
||||||
}
|
|
||||||
|
|
||||||
.no-gutter > [class*=col-] {
|
|
||||||
padding-right: 0;
|
|
||||||
padding-left: 0;
|
|
||||||
}
|
|
||||||
|
|
||||||
.btn-default {
|
|
||||||
border-color: #fff;
|
|
||||||
color: #222;
|
|
||||||
background-color: #fff;
|
|
||||||
-webkit-transition: all .35s;
|
|
||||||
-moz-transition: all .35s;
|
|
||||||
transition: all .35s;
|
|
||||||
}
|
|
||||||
|
|
||||||
.btn-default:hover,
|
|
||||||
.btn-default:focus,
|
|
||||||
.btn-default.focus,
|
|
||||||
.btn-default:active,
|
|
||||||
.btn-default.active,
|
|
||||||
.open > .dropdown-toggle.btn-default {
|
|
||||||
border-color: #ededed;
|
|
||||||
color: #222;
|
|
||||||
background-color: #f2f2f2;
|
|
||||||
}
|
|
||||||
|
|
||||||
.btn-default:active,
|
|
||||||
.btn-default.active,
|
|
||||||
.open > .dropdown-toggle.btn-default {
|
|
||||||
background-image: none;
|
|
||||||
}
|
|
||||||
|
|
||||||
.btn-default.disabled,
|
|
||||||
.btn-default[disabled],
|
|
||||||
fieldset[disabled] .btn-default,
|
|
||||||
.btn-default.disabled:hover,
|
|
||||||
.btn-default[disabled]:hover,
|
|
||||||
fieldset[disabled] .btn-default:hover,
|
|
||||||
.btn-default.disabled:focus,
|
|
||||||
.btn-default[disabled]:focus,
|
|
||||||
fieldset[disabled] .btn-default:focus,
|
|
||||||
.btn-default.disabled.focus,
|
|
||||||
.btn-default[disabled].focus,
|
|
||||||
fieldset[disabled] .btn-default.focus,
|
|
||||||
.btn-default.disabled:active,
|
|
||||||
.btn-default[disabled]:active,
|
|
||||||
fieldset[disabled] .btn-default:active,
|
|
||||||
.btn-default.disabled.active,
|
|
||||||
.btn-default[disabled].active,
|
|
||||||
fieldset[disabled] .btn-default.active {
|
|
||||||
border-color: #fff;
|
|
||||||
background-color: #fff;
|
|
||||||
}
|
|
||||||
|
|
||||||
.btn-default .badge {
|
|
||||||
color: #fff;
|
|
||||||
background-color: #222;
|
|
||||||
}
|
|
||||||
|
|
||||||
.btn-primary {
|
|
||||||
border-color: #f05f40;
|
|
||||||
color: #fff;
|
|
||||||
background-color: #2d8888;
|
|
||||||
-webkit-transition: all .35s;
|
|
||||||
-moz-transition: all .35s;
|
|
||||||
transition: all .35s;
|
|
||||||
}
|
|
||||||
|
|
||||||
.btn-primary:hover,
|
|
||||||
.btn-primary:focus,
|
|
||||||
.btn-primary.focus,
|
|
||||||
.btn-primary:active,
|
|
||||||
.btn-primary.active,
|
|
||||||
.open > .dropdown-toggle.btn-primary {
|
|
||||||
color: #fff;
|
|
||||||
background-color: #68a9a9;
|
|
||||||
}
|
|
||||||
|
|
||||||
.btn-primary:active,
|
|
||||||
.btn-primary.active,
|
|
||||||
.open > .dropdown-toggle.btn-primary {
|
|
||||||
background-image: none;
|
|
||||||
}
|
|
||||||
|
|
||||||
.btn-primary.disabled,
|
|
||||||
.btn-primary[disabled],
|
|
||||||
fieldset[disabled] .btn-primary,
|
|
||||||
.btn-primary.disabled:hover,
|
|
||||||
.btn-primary[disabled]:hover,
|
|
||||||
fieldset[disabled] .btn-primary:hover,
|
|
||||||
.btn-primary.disabled:focus,
|
|
||||||
.btn-primary[disabled]:focus,
|
|
||||||
fieldset[disabled] .btn-primary:focus,
|
|
||||||
.btn-primary.disabled.focus,
|
|
||||||
.btn-primary[disabled].focus,
|
|
||||||
fieldset[disabled] .btn-primary.focus,
|
|
||||||
.btn-primary.disabled:active,
|
|
||||||
.btn-primary[disabled]:active,
|
|
||||||
fieldset[disabled] .btn-primary:active,
|
|
||||||
.btn-primary.disabled.active,
|
|
||||||
.btn-primary[disabled].active,
|
|
||||||
fieldset[disabled] .btn-primary.active {
|
|
||||||
border-color: #f05f40;
|
|
||||||
background-color: #f05f40;
|
|
||||||
}
|
|
||||||
|
|
||||||
.btn-primary .badge {
|
|
||||||
color: #f05f40;
|
|
||||||
background-color: #fff;
|
|
||||||
}
|
|
||||||
|
|
||||||
.btn {
|
|
||||||
border: 0;
|
|
||||||
border-radius: 300px;
|
|
||||||
text-transform: uppercase;
|
|
||||||
font-family: 'Open Sans','Helvetica Neue',Arial,sans-serif;
|
|
||||||
font-weight: 700;
|
|
||||||
font-size: 1.4em;
|
|
||||||
}
|
|
||||||
|
|
||||||
.btn-xl {
|
|
||||||
padding: 15px 30px;
|
|
||||||
}
|
|
||||||
|
|
||||||
::-moz-selection {
|
|
||||||
text-shadow: none;
|
|
||||||
color: #fff;
|
|
||||||
background: #222;
|
|
||||||
}
|
|
||||||
|
|
||||||
::selection {
|
|
||||||
text-shadow: none;
|
|
||||||
color: #fff;
|
|
||||||
background: #222;
|
|
||||||
}
|
|
||||||
|
|
||||||
img::selection {
|
|
||||||
color: #fff;
|
|
||||||
background: 0 0;
|
|
||||||
}
|
|
||||||
|
|
||||||
img::-moz-selection {
|
|
||||||
color: #fff;
|
|
||||||
background: 0 0;
|
|
||||||
}
|
|
||||||
|
|
||||||
body {
|
|
||||||
webkit-tap-highlight-color: #222;
|
|
||||||
}
|
|
||||||
|
|
||||||
#map {
|
|
||||||
height: 300px;
|
|
||||||
overflow: visible;
|
|
||||||
position: relative;
|
|
||||||
}
|
|
||||||
|
|
||||||
.subtitle {
|
|
||||||
color: #b1b1b1;
|
|
||||||
}
|
|
||||||
|
|
||||||
.logo {
|
|
||||||
width: 50%;
|
|
||||||
padding-bottom: 5px;
|
|
||||||
}
|
|
||||||
|
|
||||||
.screencap {
|
|
||||||
width: 80%;
|
|
||||||
padding-top: 20px;
|
|
||||||
padding-bottom: 30px;
|
|
||||||
}
|
|
||||||
@@ -1,81 +0,0 @@
|
|||||||
/*!
|
|
||||||
* The code below adds the modal functionality of the Freelancer Bootstrap Theme
|
|
||||||
* and was originally part of this theme.
|
|
||||||
*
|
|
||||||
*
|
|
||||||
* Start Bootstrap - Freelancer Bootstrap Theme (http://startbootstrap.com)
|
|
||||||
* Code licensed under the Apache License v2.0.
|
|
||||||
* For details, see http://www.apache.org/licenses/LICENSE-2.0.
|
|
||||||
*/
|
|
||||||
|
|
||||||
body {
|
|
||||||
overflow-x: hidden;
|
|
||||||
}
|
|
||||||
|
|
||||||
.img-centered {
|
|
||||||
margin: 0 auto;
|
|
||||||
}
|
|
||||||
|
|
||||||
.portfolio-modal .modal-content {
|
|
||||||
padding: 100px 0;
|
|
||||||
min-height: 100%;
|
|
||||||
border: 0;
|
|
||||||
border-radius: 0;
|
|
||||||
text-align: center;
|
|
||||||
background-clip: border-box;
|
|
||||||
-webkit-box-shadow: none;
|
|
||||||
box-shadow: none;
|
|
||||||
}
|
|
||||||
|
|
||||||
.portfolio-modal .modal-content h2 {
|
|
||||||
margin: 0;
|
|
||||||
font-size: 3em;
|
|
||||||
}
|
|
||||||
|
|
||||||
.portfolio-modal .modal-content img {
|
|
||||||
margin-bottom: 30px;
|
|
||||||
}
|
|
||||||
|
|
||||||
.portfolio-modal .modal-content .item-details {
|
|
||||||
margin: 30px 0;
|
|
||||||
}
|
|
||||||
|
|
||||||
.portfolio-modal .close-modal {
|
|
||||||
position: absolute;
|
|
||||||
top: 25px;
|
|
||||||
right: 25px;
|
|
||||||
width: 75px;
|
|
||||||
height: 75px;
|
|
||||||
background-color: transparent;
|
|
||||||
cursor: pointer;
|
|
||||||
}
|
|
||||||
|
|
||||||
.portfolio-modal .close-modal:hover {
|
|
||||||
opacity: .3;
|
|
||||||
}
|
|
||||||
|
|
||||||
.portfolio-modal .close-modal .lr {
|
|
||||||
z-index: 1051;
|
|
||||||
width: 1px;
|
|
||||||
height: 75px;
|
|
||||||
margin-left: 35px;
|
|
||||||
background-color: #2c3e50;
|
|
||||||
-webkit-transform: rotate(45deg);
|
|
||||||
-ms-transform: rotate(45deg);
|
|
||||||
transform: rotate(45deg);
|
|
||||||
}
|
|
||||||
|
|
||||||
.portfolio-modal .close-modal .lr .rl {
|
|
||||||
z-index: 1052;
|
|
||||||
width: 1px;
|
|
||||||
height: 75px;
|
|
||||||
background-color: #2c3e50;
|
|
||||||
-webkit-transform: rotate(90deg);
|
|
||||||
-ms-transform: rotate(90deg);
|
|
||||||
transform: rotate(90deg);
|
|
||||||
}
|
|
||||||
|
|
||||||
.portfolio-modal .modal-backdrop {
|
|
||||||
display: none;
|
|
||||||
opacity: 0;
|
|
||||||
}
|
|
||||||
BIN
docs/favicon.ico
BIN
docs/favicon.ico
Binary file not shown.
|
Before Width: | Height: | Size: 1.4 KiB |
@@ -1,35 +0,0 @@
|
|||||||
<!DOCTYPE html>
|
|
||||||
<html lang="en-us">
|
|
||||||
<head>
|
|
||||||
<meta charset="utf-8">
|
|
||||||
<meta http-equiv="X-UA-Compatible" content="IE=edge">
|
|
||||||
<meta name="viewport" content="width=device-width, initial-scale=1">
|
|
||||||
<meta name="author" content="Lukas Mestan">
|
|
||||||
<meta name="description" content="Commandline GIT statistics">
|
|
||||||
<title>git quick stats</title>
|
|
||||||
<link rel="shortcut icon" href="favicon.ico?v=1" type="image/x-icon">
|
|
||||||
<link rel="stylesheet" href="css/bootstrap.min.css" type="text/css">
|
|
||||||
<link href="https://fonts.googleapis.com/css?family=Montserrat" rel="stylesheet">
|
|
||||||
<link rel="stylesheet" href="css/animate.min.css" type="text/css">
|
|
||||||
<link rel="stylesheet" href="css/creative.css" type="text/css">
|
|
||||||
<link rel="stylesheet" href="css/modals.css" type="text/css">
|
|
||||||
<!--[if lt IE 9]>
|
|
||||||
<script src="https://oss.maxcdn.com/libs/html5shiv/3.7.0/html5shiv.js"></script>
|
|
||||||
<script src="https://oss.maxcdn.com/libs/respond.js/1.4.2/respond.min.js"></script>
|
|
||||||
<![endif]-->
|
|
||||||
<meta http-equiv="refresh" content="0;url=https://lukasmestan.com/git-quick-stats/">
|
|
||||||
</head>
|
|
||||||
<body id="page-top">
|
|
||||||
<header>
|
|
||||||
<div class="header-content">
|
|
||||||
<div class="header-content-inner">
|
|
||||||
<h1>git quick stats</h1>
|
|
||||||
<h3 class="subtitle"> simple and efficient way to access various statistics in git repository</h3>
|
|
||||||
<img class="screencap" src="bg.png" \>
|
|
||||||
<br>
|
|
||||||
<a href="https://github.com/arzzen/git-quick-stats" class="btn btn-primary btn-xl page-scroll">download</a>
|
|
||||||
</div>
|
|
||||||
</div>
|
|
||||||
</header>
|
|
||||||
</body>
|
|
||||||
</html>
|
|
||||||
@@ -7,19 +7,35 @@
|
|||||||
set -o nounset
|
set -o nounset
|
||||||
set -o errexit
|
set -o errexit
|
||||||
|
|
||||||
|
# Beginning git log date. Respects all git datetime formats
|
||||||
_since=${_GIT_SINCE:-}
|
_since=${_GIT_SINCE:-}
|
||||||
[[ -n "${_since}" ]] && _since="--since=$_since"
|
[[ -n "${_since}" ]] && _since="--since=$_since"
|
||||||
|
|
||||||
|
# End of git log date. Respects all git datetime formats
|
||||||
_until=${_GIT_UNTIL:-}
|
_until=${_GIT_UNTIL:-}
|
||||||
[[ -n "${_until}" ]] && _until="--until=$_until"
|
[[ -n "${_until}" ]] && _until="--until=$_until"
|
||||||
|
|
||||||
|
# Set files or directories to be excluded in stats
|
||||||
_pathspec=${_GIT_PATHSPEC:-}
|
_pathspec=${_GIT_PATHSPEC:-}
|
||||||
[[ -n "${_pathspec}" ]] && _pathspec="-- $_pathspec"
|
[[ -n "${_pathspec}" ]] && _pathspec="-- $_pathspec"
|
||||||
|
|
||||||
|
# Set merge commit view strategy. Default is to show no merge commits
|
||||||
|
# Exclusive shows only merge commits
|
||||||
|
# Enable shows regular commits together with normal commits
|
||||||
|
_merges=${_GIT_MERGE_VIEW:-}
|
||||||
|
_merges=$(echo "$_merges" | awk '{print tolower($0)}')
|
||||||
|
if [[ "${_merges}" == "exclusive" ]]; then
|
||||||
|
_merges="--merges"
|
||||||
|
elif [[ "${_merges}" == "enable" ]]; then
|
||||||
|
_merges=""
|
||||||
|
else
|
||||||
|
_merges="--no-merges"
|
||||||
|
fi
|
||||||
|
|
||||||
|
# Limit git log output
|
||||||
_limit=${_GIT_LIMIT:-}
|
_limit=${_GIT_LIMIT:-}
|
||||||
if [[ -n "${_limit}" ]];
|
if [[ -n "${_limit}" ]]; then
|
||||||
then _limit=$_limit
|
_limit=$_limit
|
||||||
else
|
else
|
||||||
_limit=10
|
_limit=10
|
||||||
fi
|
fi
|
||||||
@@ -35,21 +51,13 @@ _theme="${_MENU_THEME:=default}"
|
|||||||
################################################################################
|
################################################################################
|
||||||
function checkUtils() {
|
function checkUtils() {
|
||||||
local -r msg="not found. Please make sure this is installed and in PATH."
|
local -r msg="not found. Please make sure this is installed and in PATH."
|
||||||
|
declare -ar utils=("awk" "basename" "cat" "column" "echo" "git" "grep" "head"
|
||||||
command -v awk >/dev/null 2>&1 || { echo >&2 "awk ${msg}"; exit 1; }
|
"seq" "sort" "tput" "tr" "uniq" "wc")
|
||||||
command -v basename >/dev/null 2>&1 || { echo >&2 "basename ${msg}"; exit 1; }
|
|
||||||
command -v cat >/dev/null 2>&1 || { echo >&2 "cat ${msg}"; exit 1; }
|
for u in "${utils[@]}"
|
||||||
command -v column >/dev/null 2>&1 || { echo >&2 "column ${msg}"; exit 1; }
|
do
|
||||||
command -v echo >/dev/null 2>&1 || { echo >&2 "echo ${msg}"; exit 1; }
|
command -v "$u" >/dev/null 2>&1 || { echo >&2 "$u ${msg}"; exit 1; }
|
||||||
command -v git >/dev/null 2>&1 || { echo >&2 "git ${msg}"; exit 1; }
|
done
|
||||||
command -v grep >/dev/null 2>&1 || { echo >&2 "grep ${msg}"; exit 1; }
|
|
||||||
command -v head >/dev/null 2>&1 || { echo >&2 "head ${msg}"; exit 1; }
|
|
||||||
command -v seq >/dev/null 2>&1 || { echo >&2 "seq ${msg}"; exit 1; }
|
|
||||||
command -v sort >/dev/null 2>&1 || { echo >&2 "sort ${msg}"; exit 1; }
|
|
||||||
command -v tput >/dev/null 2>&1 || { echo >&2 "tput ${msg}"; exit 1; }
|
|
||||||
command -v tr >/dev/null 2>&1 || { echo >&2 "tr ${msg}"; exit 1; }
|
|
||||||
command -v uniq >/dev/null 2>&1 || { echo >&2 "uniq ${msg}"; exit 1; }
|
|
||||||
command -v wc >/dev/null 2>&1 || { echo >&2 "wc ${msg}"; exit 1; }
|
|
||||||
}
|
}
|
||||||
|
|
||||||
################################################################################
|
################################################################################
|
||||||
@@ -118,6 +126,10 @@ ADDITIONAL USAGE
|
|||||||
ex: export _GIT_LIMIT=20
|
ex: export _GIT_LIMIT=20
|
||||||
You can exclude directories or files from the stats by using pathspec
|
You can exclude directories or files from the stats by using pathspec
|
||||||
ex: export _GIT_PATHSPEC=':!pattern'
|
ex: export _GIT_PATHSPEC=':!pattern'
|
||||||
|
You can set _GIT_MERGE_VIEW to view merge commits with normal commits
|
||||||
|
ex: export _GIT_MERGE_VIEW=enable
|
||||||
|
You can also set _GIT_MERGE_VIEW to only show merge commits
|
||||||
|
ex: export _GIT_MERGE_VIEW=exclusive
|
||||||
You can set _MENU_THEME to display the legacy color scheme
|
You can set _MENU_THEME to display the legacy color scheme
|
||||||
ex: export _MENU_THEME=legacy"
|
ex: export _MENU_THEME=legacy"
|
||||||
}
|
}
|
||||||
@@ -226,7 +238,7 @@ function detailedGitStats() {
|
|||||||
optionPicked "Contribution stats (by author) on the current branch:"
|
optionPicked "Contribution stats (by author) on the current branch:"
|
||||||
fi
|
fi
|
||||||
|
|
||||||
git -c log.showSignature=false log ${_branch} --use-mailmap --no-merges --numstat \
|
git -c log.showSignature=false log ${_branch} --use-mailmap $_merges --numstat \
|
||||||
--pretty="format:commit %H%nAuthor: %aN <%aE>%nDate: %ad%n%n%w(0,4,4)%B%n" \
|
--pretty="format:commit %H%nAuthor: %aN <%aE>%nDate: %ad%n%n%w(0,4,4)%B%n" \
|
||||||
$_since $_until $_pathspec | LC_ALL=C awk '
|
$_since $_until $_pathspec | LC_ALL=C awk '
|
||||||
function printStats(author) {
|
function printStats(author) {
|
||||||
@@ -301,7 +313,7 @@ function detailedGitStats() {
|
|||||||
################################################################################
|
################################################################################
|
||||||
function suggestReviewers() {
|
function suggestReviewers() {
|
||||||
optionPicked "Suggested code reviewers (based on git history):"
|
optionPicked "Suggested code reviewers (based on git history):"
|
||||||
git -c log.showSignature=false log --use-mailmap --no-merges $_since $_until \
|
git -c log.showSignature=false log --use-mailmap $_merges $_since $_until \
|
||||||
--pretty=%aN $_pathspec | head -n 100 | sort | uniq -c | sort -nr | LC_ALL=C awk '
|
--pretty=%aN $_pathspec | head -n 100 | sort | uniq -c | sort -nr | LC_ALL=C awk '
|
||||||
{ args[NR] = $0; }
|
{ args[NR] = $0; }
|
||||||
END {
|
END {
|
||||||
@@ -318,7 +330,7 @@ function suggestReviewers() {
|
|||||||
################################################################################
|
################################################################################
|
||||||
function jsonOutput() {
|
function jsonOutput() {
|
||||||
optionPicked "Output log saved to file at: ${json_path:?}/output.json"
|
optionPicked "Output log saved to file at: ${json_path:?}/output.json"
|
||||||
git -c log.showSignature=false log --use-mailmap --no-merges $_since $_until \
|
git -c log.showSignature=false log --use-mailmap $_merges $_since $_until \
|
||||||
--pretty=format:'{%n "commit": "%H",%n "abbreviated_commit": "%h",%n "tree": "%T",%n "abbreviated_tree": "%t",%n "parent": "%P",%n "abbreviated_parent": "%p",%n "refs": "%D",%n "encoding": "%e",%n "subject": "%s",%n "sanitized_subject_line": "%f",%n "body": "%b",%n "commit_notes": "%N",%n "author": {%n "name": "%aN",%n "email": "%aE",%n "date": "%aD"%n },%n "commiter": {%n "name": "%cN",%n "email": "%cE",%n "date": "%cD"%n }%n},' \
|
--pretty=format:'{%n "commit": "%H",%n "abbreviated_commit": "%h",%n "tree": "%T",%n "abbreviated_tree": "%t",%n "parent": "%P",%n "abbreviated_parent": "%p",%n "refs": "%D",%n "encoding": "%e",%n "subject": "%s",%n "sanitized_subject_line": "%f",%n "body": "%b",%n "commit_notes": "%N",%n "author": {%n "name": "%aN",%n "email": "%aE",%n "date": "%aD"%n },%n "commiter": {%n "name": "%cN",%n "email": "%cE",%n "date": "%cD"%n }%n},' \
|
||||||
| sed "$ s/,$//" \
|
| sed "$ s/,$//" \
|
||||||
| sed ':a;N;$!ba;s/\r\n\([^{]\)/\\n\1/g' \
|
| sed ':a;N;$!ba;s/\r\n\([^{]\)/\\n\1/g' \
|
||||||
@@ -337,7 +349,7 @@ function commitsByMonth() {
|
|||||||
for i in Jan Feb Mar Apr May Jun Jul Aug Sep Oct Nov Dec
|
for i in Jan Feb Mar Apr May Jun Jul Aug Sep Oct Nov Dec
|
||||||
do
|
do
|
||||||
echo -en "\t$i\t"
|
echo -en "\t$i\t"
|
||||||
git -c log.showSignature=false shortlog -n --no-merges --format='%ad %s' \
|
git -c log.showSignature=false shortlog -n $_merges --format='%ad %s' \
|
||||||
$_since $_until | grep " $i " | wc -l
|
$_since $_until | grep " $i " | wc -l
|
||||||
done | awk '{
|
done | awk '{
|
||||||
count[$1] = $2
|
count[$1] = $2
|
||||||
@@ -368,7 +380,7 @@ function commitsByWeekday() {
|
|||||||
for i in Mon Tue Wed Thu Fri Sat Sun
|
for i in Mon Tue Wed Thu Fri Sat Sun
|
||||||
do
|
do
|
||||||
echo -en "\t$i\t"
|
echo -en "\t$i\t"
|
||||||
git -c log.showSignature=false shortlog -n --no-merges --format='%ad %s' \
|
git -c log.showSignature=false shortlog -n $_merges --format='%ad %s' \
|
||||||
$_since $_until | grep "$i " | wc -l
|
$_since $_until | grep "$i " | wc -l
|
||||||
done | awk '{
|
done | awk '{
|
||||||
|
|
||||||
@@ -413,7 +425,7 @@ function commitsByHour() {
|
|||||||
for i in $(seq -w 0 23)
|
for i in $(seq -w 0 23)
|
||||||
do
|
do
|
||||||
echo -ne "\t$i\t"
|
echo -ne "\t$i\t"
|
||||||
git -c log.showSignature=false shortlog -n --no-merges --format='%ad %s' \
|
git -c log.showSignature=false shortlog -n $_merges --format='%ad %s' \
|
||||||
"${_author}" $_since $_until | grep ' '$i: | wc -l
|
"${_author}" $_since $_until | grep ' '$i: | wc -l
|
||||||
done | awk '{
|
done | awk '{
|
||||||
count[$1] = $2
|
count[$1] = $2
|
||||||
@@ -441,7 +453,7 @@ function commitsByHour() {
|
|||||||
################################################################################
|
################################################################################
|
||||||
function commitsPerDay() {
|
function commitsPerDay() {
|
||||||
optionPicked "Git commits per date:";
|
optionPicked "Git commits per date:";
|
||||||
git -c log.showSignature=false log --use-mailmap --no-merges $_since $_until \
|
git -c log.showSignature=false log --use-mailmap $_merges $_since $_until \
|
||||||
--date=short --format='%ad' $_pathspec | sort | uniq -c
|
--date=short --format='%ad' $_pathspec | sort | uniq -c
|
||||||
}
|
}
|
||||||
|
|
||||||
@@ -453,9 +465,9 @@ function commitsPerDay() {
|
|||||||
################################################################################
|
################################################################################
|
||||||
function commitsPerAuthor() {
|
function commitsPerAuthor() {
|
||||||
optionPicked "Git commits per author:"
|
optionPicked "Git commits per author:"
|
||||||
local authorCommits=$(git -c log.showSignature=false log --use-mailmap --no-merges \
|
local authorCommits=$(git -c log.showSignature=false log --use-mailmap $_merges \
|
||||||
$_since $_until | grep -i Author: | cut -c9-)
|
$_since $_until | grep -i Author: | cut -c9-)
|
||||||
local coAuthorCommits=$(git -c log.showSignature=false log --use-mailmap --no-merges \
|
local coAuthorCommits=$(git -c log.showSignature=false log --use-mailmap $_merges \
|
||||||
$_since $_until | grep -i Co-Authored-by: | cut -c21-)
|
$_since $_until | grep -i Co-Authored-by: | cut -c21-)
|
||||||
|
|
||||||
if [[ -z "${coAuthorCommits}" ]]
|
if [[ -z "${coAuthorCommits}" ]]
|
||||||
@@ -493,7 +505,7 @@ function myDailyStats() {
|
|||||||
}'
|
}'
|
||||||
|
|
||||||
echo -e "\t" $(git -c log.showSignature=false log --use-mailmap \
|
echo -e "\t" $(git -c log.showSignature=false log --use-mailmap \
|
||||||
--author="$(git config user.name)" --no-merges \
|
--author="$(git config user.name)" $_merges \
|
||||||
--since=$(date "+%Y-%m-%dT00:00:00") \
|
--since=$(date "+%Y-%m-%dT00:00:00") \
|
||||||
--until=$(date "+%Y-%m-%dT23:59:59") --reverse \
|
--until=$(date "+%Y-%m-%dT23:59:59") --reverse \
|
||||||
| grep commit | wc -l) "commits"
|
| grep commit | wc -l) "commits"
|
||||||
@@ -506,7 +518,7 @@ function myDailyStats() {
|
|||||||
################################################################################
|
################################################################################
|
||||||
function contributors() {
|
function contributors() {
|
||||||
optionPicked "All contributors (sorted by name):"
|
optionPicked "All contributors (sorted by name):"
|
||||||
git -c log.showSignature=false log --use-mailmap --no-merges $_since $_until \
|
git -c log.showSignature=false log --use-mailmap $_merges $_since $_until \
|
||||||
--format='%aN' $_pathspec | sort -u | cat -n
|
--format='%aN' $_pathspec | sort -u | cat -n
|
||||||
}
|
}
|
||||||
|
|
||||||
@@ -554,14 +566,14 @@ function changelogs() {
|
|||||||
|
|
||||||
git -c log.showSignature=false log \
|
git -c log.showSignature=false log \
|
||||||
--use-mailmap \
|
--use-mailmap \
|
||||||
--no-merges \
|
$_merges \
|
||||||
--format="%cd" \
|
--format="%cd" \
|
||||||
--date=short "${_author}" $_since $_until $_pathspec \
|
--date=short "${_author}" $_since $_until $_pathspec \
|
||||||
| sort -u -r | head -n $_limit \
|
| sort -u -r | head -n $_limit \
|
||||||
| while read DATE; do
|
| while read DATE; do
|
||||||
echo -e "\n[$DATE]"
|
echo -e "\n[$DATE]"
|
||||||
GIT_PAGER=cat git -c log.showSignature=false log \
|
GIT_PAGER=cat git -c log.showSignature=false log \
|
||||||
--use-mailmap --no-merges \
|
--use-mailmap $_merges \
|
||||||
--format=" * %s (%aN)" "${_author}" \
|
--format=" * %s (%aN)" "${_author}" \
|
||||||
--since=$DATE --until=$next
|
--since=$DATE --until=$next
|
||||||
next=$DATE
|
next=$DATE
|
||||||
|
|||||||
@@ -1,4 +1,4 @@
|
|||||||
.TH git-quick-stats "1" "January 2019" "git-quick-stats" "User Commands"
|
.TH git-quick-stats "1" "January 2020" "git-quick-stats" "User Commands"
|
||||||
.SH NAME
|
.SH NAME
|
||||||
.B git\-quick\-stats
|
.B git\-quick\-stats
|
||||||
\- Simple and efficient way to access various stats in a git repository.
|
\- Simple and efficient way to access various stats in a git repository.
|
||||||
@@ -105,10 +105,8 @@ display this help text in the terminal
|
|||||||
.PP
|
.PP
|
||||||
.SH ADDITIONAL USAGE
|
.SH ADDITIONAL USAGE
|
||||||
You can set _GIT_SINCE and _GIT_UNTIL to limit the git time log, example:
|
You can set _GIT_SINCE and _GIT_UNTIL to limit the git time log, example:
|
||||||
.IP
|
|
||||||
.PP
|
.PP
|
||||||
.B export _GIT_SINCE="2017\-01\-20"
|
.B export _GIT_SINCE="2017\-01\-20"
|
||||||
.IP
|
|
||||||
.PP
|
.PP
|
||||||
You can set _GIT_LIMIT for limited output log, example:
|
You can set _GIT_LIMIT for limited output log, example:
|
||||||
.PP
|
.PP
|
||||||
@@ -118,6 +116,14 @@ You can exclude directories or files from the stats by using pathspec, example:
|
|||||||
.PP
|
.PP
|
||||||
.B export _GIT_PATHSPEC=':!pattern'
|
.B export _GIT_PATHSPEC=':!pattern'
|
||||||
.PP
|
.PP
|
||||||
|
You can set _GIT_MERGE_VIEW to show merge commits with normal commits, example:
|
||||||
|
.PP
|
||||||
|
.B export _GIT_MERGE_VIEW="enable"
|
||||||
|
.PP
|
||||||
|
You can also set _GIT_MERGE_VIEW to only show merge commits, example:
|
||||||
|
.PP
|
||||||
|
.B export _GIT_MERGE_VIEW="exclusive"
|
||||||
|
.PP
|
||||||
You can switch to the legacy color scheme, example:
|
You can switch to the legacy color scheme, example:
|
||||||
.PP
|
.PP
|
||||||
.B export _MENU_THEME=legacy
|
.B export _MENU_THEME=legacy
|
||||||
|
|||||||
@@ -3,7 +3,7 @@
|
|||||||
. tests/assert.sh -v
|
. tests/assert.sh -v
|
||||||
|
|
||||||
src="./git-quick-stats"
|
src="./git-quick-stats"
|
||||||
assert "$src fail" "Invalid argument\n\nNAME\n git-quick-stats - Simple and efficient way to access various stats in a git repo\n\nSYNOPSIS\n For non-interactive mode: git-quick-stats [OPTIONS]\n For interactive mode: git-quick-stats\n\nDESCRIPTION\n Any git repository contains tons of information about commits, contributors,\n and files. Extracting this information is not always trivial, mostly because\n of a gadzillion options to a gadzillion git commands.\n\n This program allows you to see detailed information about a git repository.\n\nOPTIONS\n -r, --suggest-reviewers\n show the best people to contact to review code\n -T, --detailed-git-stats\n give a detailed list of git stats\n -R, --git-stats-by-branch\n see detailed list of git stats by branch\n -d, --commits-per-day\n displays a list of commits per day\n -m, --commits-by-month\n displays a list of commits per month\n -w, --commits-by-weekday\n displays a list of commits per weekday\n -o, --commits-by-hour\n displays a list of commits per hour\n -A, --commits-by-author-by-hour\n displays a list of commits per hour by author\n -a, --commits-per-author\n displays a list of commits per author\n -S, --my-daily-stats\n see your current daily stats\n -C, --contributors\n see a list of everyone who contributed to the repo\n -b, --branch-tree\n show an ASCII graph of the git repo branch history\n -D, --branches-by-date\n show branches by date\n -c, --changelogs\n see changelogs\n -L, --changelogs-by-author\n see changelogs by author\n -j, --json-output\n save git log as a JSON formatted file to a specified area\n -h, -?, --help\n display this help text in the terminal\n\nADDITIONAL USAGE\n You can set _GIT_SINCE and _GIT_UNTIL to limit the git time log\n ex: export _GIT_SINCE=\"2017-01-20\"\n You can set _GIT_LIMIT for limited output log\n ex: export _GIT_LIMIT=20\n You can exclude directories or files from the stats by using pathspec\n ex: export _GIT_PATHSPEC=':!pattern'\n You can set _MENU_THEME to display the legacy color scheme\n ex: export _MENU_THEME=legacy"
|
assert "$src fail" "Invalid argument\n\nNAME\n git-quick-stats - Simple and efficient way to access various stats in a git repo\n\nSYNOPSIS\n For non-interactive mode: git-quick-stats [OPTIONS]\n For interactive mode: git-quick-stats\n\nDESCRIPTION\n Any git repository contains tons of information about commits, contributors,\n and files. Extracting this information is not always trivial, mostly because\n of a gadzillion options to a gadzillion git commands.\n\n This program allows you to see detailed information about a git repository.\n\nOPTIONS\n -r, --suggest-reviewers\n show the best people to contact to review code\n -T, --detailed-git-stats\n give a detailed list of git stats\n -R, --git-stats-by-branch\n see detailed list of git stats by branch\n -d, --commits-per-day\n displays a list of commits per day\n -m, --commits-by-month\n displays a list of commits per month\n -w, --commits-by-weekday\n displays a list of commits per weekday\n -o, --commits-by-hour\n displays a list of commits per hour\n -A, --commits-by-author-by-hour\n displays a list of commits per hour by author\n -a, --commits-per-author\n displays a list of commits per author\n -S, --my-daily-stats\n see your current daily stats\n -C, --contributors\n see a list of everyone who contributed to the repo\n -b, --branch-tree\n show an ASCII graph of the git repo branch history\n -D, --branches-by-date\n show branches by date\n -c, --changelogs\n see changelogs\n -L, --changelogs-by-author\n see changelogs by author\n -j, --json-output\n save git log as a JSON formatted file to a specified area\n -h, -?, --help\n display this help text in the terminal\n\nADDITIONAL USAGE\n You can set _GIT_SINCE and _GIT_UNTIL to limit the git time log\n ex: export _GIT_SINCE=\"2017-01-20\"\n You can set _GIT_LIMIT for limited output log\n ex: export _GIT_LIMIT=20\n You can exclude directories or files from the stats by using pathspec\n ex: export _GIT_PATHSPEC=':!pattern'\n You can set _GIT_MERGE_VIEW to view merge commits with normal commits\n ex: export _GIT_MERGE_VIEW=enable\n You can also set _GIT_MERGE_VIEW to only show merge commits\n ex: export _GIT_MERGE_VIEW=exclusive\n You can set _MENU_THEME to display the legacy color scheme\n ex: export _MENU_THEME=legacy"
|
||||||
assert_raises "$src fail" 1
|
assert_raises "$src fail" 1
|
||||||
|
|
||||||
assert_contains "$src --suggest-reviewers" "Suggested code reviewers (based on git history)" 127
|
assert_contains "$src --suggest-reviewers" "Suggested code reviewers (based on git history)" 127
|
||||||
|
|||||||
Reference in New Issue
Block a user