mirror of
https://github.com/abperiasamy/rtl8812AU_8821AU_linux.git
synced 2025-04-29 23:29:38 +02:00
commit
06d4026447
12
.mailmap
Normal file
12
.mailmap
Normal file
@ -0,0 +1,12 @@
|
|||||||
|
# Generate CONTRIBUTORS.md: contributors.sh
|
||||||
|
|
||||||
|
# Tip for finding duplicates (besides scanning the output of CONTRIBUTORS.md for name
|
||||||
|
# duplicates that aren't also email duplicates): scan the output of:
|
||||||
|
# git log --format='%aE - %aN' | sort -uf
|
||||||
|
#
|
||||||
|
# For explanation on this file format: man git-shortlog
|
||||||
|
|
||||||
|
Anand Babu (AB) Periasamy <abperiasamy@gmail.com> <ab@unlocksmith.org>
|
||||||
|
Harshavardhana <harsha@harshavardhana.net> <harsh@harshavardhana.net>
|
||||||
|
AndyPi <andrew.pain@gmail.com> <AndyPi@users.noreply.github.com>
|
||||||
|
Joe Acosta <josepha48@gmail.com>
|
22
CONTRIBUTORS.md
Normal file
22
CONTRIBUTORS.md
Normal file
@ -0,0 +1,22 @@
|
|||||||
|
## Contributors
|
||||||
|
<!-- DO NOT EDIT - CONTRIBUTORS.md is autogenerated from git commit log by contributors.sh script. -->
|
||||||
|
|
||||||
|
- Anand Babu (AB) Periasamy
|
||||||
|
- Andreas Hofmann
|
||||||
|
- Andrew Mann
|
||||||
|
- AndyPi
|
||||||
|
- Anton
|
||||||
|
- archshift
|
||||||
|
- bits3rpent
|
||||||
|
- Daiki Tamada
|
||||||
|
- HackDefendr
|
||||||
|
- Harshavardhana
|
||||||
|
- Joe Acosta
|
||||||
|
- John Lenz
|
||||||
|
- Karl-Philipp Richter
|
||||||
|
- Marco Milanesi
|
||||||
|
- mpoly
|
||||||
|
- pgroenbech
|
||||||
|
- scrivy
|
||||||
|
- Vicent Llongo
|
||||||
|
- Victor Azizi
|
21
README.md
21
README.md
@ -34,4 +34,25 @@ sudo make install
|
|||||||
sudo modprobe -a 8812au
|
sudo modprobe -a 8812au
|
||||||
```
|
```
|
||||||
|
|
||||||
|
## Contributors
|
||||||
|
<!-- DO NOT EDIT - CONTRIBUTORS.md is autogenerated from git commit log by contributors.sh script. -->
|
||||||
|
|
||||||
|
- Anand Babu (AB) Periasamy
|
||||||
|
- Andreas Hofmann
|
||||||
|
- Andrew Mann
|
||||||
|
- AndyPi
|
||||||
|
- Anton
|
||||||
|
- archshift
|
||||||
|
- bits3rpent
|
||||||
|
- Daiki Tamada
|
||||||
|
- HackDefendr
|
||||||
|
- Harshavardhana
|
||||||
|
- Joe Acosta
|
||||||
|
- John Lenz
|
||||||
|
- Karl-Philipp Richter
|
||||||
|
- Marco Milanesi
|
||||||
|
- mpoly
|
||||||
|
- pgroenbech
|
||||||
|
- scrivy
|
||||||
|
- Vicent Llongo
|
||||||
|
- Victor Azizi
|
||||||
|
15
contributors.sh
Executable file
15
contributors.sh
Executable file
@ -0,0 +1,15 @@
|
|||||||
|
#!/bin/bash
|
||||||
|
set -e
|
||||||
|
|
||||||
|
cd "$(dirname "$(readlink -f "$BASH_SOURCE")")"
|
||||||
|
|
||||||
|
# see also ".mailmap" for how email addresses and names are deduplicated
|
||||||
|
|
||||||
|
{
|
||||||
|
cat <<-'EOH'
|
||||||
|
## Contributors
|
||||||
|
<!-- DO NOT EDIT - CONTRIBUTORS.md is autogenerated from git commit log by contributors.sh script. -->
|
||||||
|
EOH
|
||||||
|
echo
|
||||||
|
git log --format='%aN <%aE>' | LC_ALL=C.UTF-8 sort -uf | cut -f1 -d'<' | sed 's/^/- /g'
|
||||||
|
} > CONTRIBUTORS.md
|
Loading…
x
Reference in New Issue
Block a user