mirror of
https://github.com/MacPass/MacPass.git
synced 2025-12-13 19:22:25 +00:00
4 lines
109 B
Bash
Executable File
4 lines
109 B
Bash
Executable File
#!/bin/bash
|
|
# prints the list of contributors in markdown format
|
|
git log --pretty="[%an](%ae)" | sort | uniq
|