mirror of
https://github.com/git-quick-stats/git-quick-stats.git
synced 2025-12-21 12:13:52 +01:00
Compare commits
12 Commits
| Author | SHA1 | Date | |
|---|---|---|---|
|
|
ac730dbfbc | ||
|
|
37b37bb5c8 | ||
|
|
db8009ff6d | ||
|
|
5a275c87b8 | ||
|
|
98c0252e97 | ||
|
|
5a389f5071 | ||
|
|
382f6759cf | ||
|
|
6362149953 | ||
|
|
36cae305a4 | ||
|
|
90f6b631a9 | ||
|
|
6a894d9efe | ||
|
|
ef6120fa64 |
3
.mailmap
Normal file
3
.mailmap
Normal file
@@ -0,0 +1,3 @@
|
||||
Lukas Mestan <lukas.mestan@gmail.com> Lukáš Mešťan <arzzen@users.noreply.github.com>
|
||||
Lukas Mestan <lukas.mestan@gmail.com> arzzen
|
||||
|
||||
34
.travis.yml
34
.travis.yml
@@ -1,2 +1,34 @@
|
||||
language: bash
|
||||
language: generic
|
||||
|
||||
sudo: required
|
||||
|
||||
addons:
|
||||
apt:
|
||||
packages:
|
||||
- libcurl4-openssl-dev
|
||||
- libelf-dev
|
||||
- libdw-dev
|
||||
- cmake
|
||||
|
||||
install:
|
||||
- git checkout ${TRAVIS_PULL_REQUEST_BRANCH:-$TRAVIS_BRANCH}
|
||||
- git branch --set-upstream-to origin/$TRAVIS_BRANCH
|
||||
- git rev-parse HEAD
|
||||
|
||||
script: make test
|
||||
|
||||
after_success: |
|
||||
wget https://github.com/SimonKagstrom/kcov/archive/master.tar.gz &&
|
||||
tar xzf master.tar.gz &&
|
||||
cd kcov-master &&
|
||||
mkdir build &&
|
||||
cd build &&
|
||||
cmake .. &&
|
||||
make &&
|
||||
sudo make install &&
|
||||
cd ../.. &&
|
||||
rm -rf kcov-master &&
|
||||
mkdir -p coverage &&
|
||||
kcov coverage git-quick-stats suggestReviewers && bash <(curl -s https://codecov.io/bash) -cF suggestReviewers &&
|
||||
kcov coverage git-quick-stats detailedGitStats && bash <(curl -s https://codecov.io/bash) -cF detailedGitStats &&
|
||||
kcov coverage git-quick-stats commitsPerDay && bash <(curl -s https://codecov.io/bash) -cF commitsPerDay
|
||||
|
||||
2
Makefile
2
Makefile
@@ -1,5 +1,5 @@
|
||||
PREFIX=/usr/local
|
||||
TASK_DONE = echo "\n✓ $@ done\n"
|
||||
TASK_DONE = echo -e "\n✓ $@ done\n"
|
||||
# files that need mode 755
|
||||
EXEC_FILES=git-quick-stats
|
||||
|
||||
|
||||
@@ -2,7 +2,8 @@
|
||||
## GIT quick statistics
|
||||
|
||||
[](https://travis-ci.org/arzzen/git-quick-stats)
|
||||
[]()
|
||||
[](http://braumeister.org/formula/git-quick-stats)
|
||||
[](https://repology.org/metapackage/git-quick-stats/packages)
|
||||
|
||||
> `git quick-stats` is a simple and efficient way to access various statistics in git repository.
|
||||
|
||||
@@ -159,6 +160,8 @@ This documentation is written using standard [markdown syntax](https://help.gith
|
||||
|
||||
#### Tests
|
||||
|
||||
[](https://codecov.io/gh/arzzen/git-quick-stats)
|
||||
|
||||
```bash
|
||||
make test
|
||||
```
|
||||
@@ -166,7 +169,7 @@ make test
|
||||
## Licensing
|
||||
MIT see [LICENSE][] for the full license text.
|
||||
|
||||
[read this page]: http://github.com/arzzen/git-quick-stats/blob/master/CONTRIBUTING.md
|
||||
[read this page]: http://github.com/arzzen/git-quick-stats/blob/master/docs/CONTRIBUTING.md
|
||||
[landing page]: http://arzzen.github.io/git-quick-stats
|
||||
[LICENSE]: https://github.com/arzzen/git-quick-stats/blob/master/LICENSE.txt
|
||||
[LICENSE]: https://github.com/arzzen/git-quick-stats/blob/master/LICENSE
|
||||
|
||||
|
||||
9
docs/issue_template.md
Normal file
9
docs/issue_template.md
Normal file
@@ -0,0 +1,9 @@
|
||||
#### Expected behavior and actual behavior.
|
||||
|
||||
|
||||
#### Steps to reproduce the problem.
|
||||
|
||||
|
||||
#### Specifications like the version of the project, operating system, or hardware.
|
||||
|
||||
|
||||
Reference in New Issue
Block a user