Sha256: e62ff37749bade8fa9ba99f297b8f3308d42edff81e0090e8ac9817820c5ecdf
Contents?: true
Size: 331 Bytes
Versions: 39
Compression:
Stored size: 331 Bytes
Contents
#!/usr/bin/env sh # # Auto-generate a list of contributors for a given Git repository. # # At the root of a project: # # ./script/contributors.sh # echo "Contributors to this project:" > CONTRIBUTORS.md echo >> CONTRIBUTORS.md git shortlog -s | cut -c '8-200' | awk '{print "* ", $0}' >> CONTRIBUTORS.md echo >> CONTRIBUTORS.md
Version data entries
39 entries across 39 versions & 1 rubygems