-
-
Notifications
You must be signed in to change notification settings - Fork 36
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
Showing
21 changed files
with
239 additions
and
59 deletions.
There are no files selected for viewing
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
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,8 @@ | ||
[attr]py-file eol=lf | ||
*.py py-file | ||
|
||
.git* export-ignore | ||
MANIFEST.in export-ignore | ||
.travis.yml export-ignore | ||
codecov.yml export-ignore | ||
.git-fame.1.md export-ignore |
Validating CODEOWNERS rules …
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
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,3 @@ | ||
# Require maintainer's :+1: for changes to the .github/ repo-config files | ||
# mainly due to https://github.com/probot/settings privilege escalation | ||
.github/* @github/pages |
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
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,2 @@ | ||
github: casperdcl | ||
custom: https://caspersci.uk.to/donate |
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
Binary file not shown.
File renamed without changes.
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
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,23 @@ | ||
name: git-fame | ||
summary: Pretty-print `git` repository collaborators sorted by contributions | ||
description: | | ||
{description} | ||
adopt-info: git-fame | ||
grade: stable | ||
confinement: strict | ||
base: core18 | ||
license: MPL-2.0 | ||
parts: | ||
git-fame: | ||
plugin: python | ||
python-version: python3 | ||
python-packages: [tqdm, pyyaml] | ||
stage-packages: [git] | ||
source: {source} | ||
source-commit: '{commit}' | ||
parse-info: [setup.py] | ||
apps: | ||
git-fame: | ||
command: bin/git-fame | ||
#completer: git-fame_completion.bash | ||
plugs: [home] |
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
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
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,8 @@ | ||
{ "metadata": { | ||
"title": "git-fame: Pretty-print `git` repository collaborators sorted by contributions", | ||
"keywords": [ | ||
"git", "blame", "git-blame", "git-log", "code-analysis", "cost", "loc", "author", | ||
"commit", "shortlog", "ls-files"], | ||
"creators": [ | ||
{"name": "da Costa-Luis, Casper O.", "orcid": "0000-0002-7211-1557"}] | ||
}} |
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
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,6 @@ | ||
FROM python:3.7-alpine | ||
RUN apk update && apk add --no-cache git | ||
COPY setup.py README.rst git-fame/ | ||
COPY gitfame git-fame/gitfame | ||
RUN pip install -U ./git-fame[full] | ||
ENTRYPOINT ["git-fame", "/repo"] |
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
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
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
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
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,8 @@ | ||
comment: | ||
layout: header, changes, diff | ||
coverage: | ||
status: | ||
patch: | ||
default: | ||
target: '80' | ||
project: false |
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
Oops, something went wrong.