Browse code

Update RELEASE-CHECKLIST to mention how to get a decent contributors list

Docker-DCO-1.1-Signed-off-by: Andrew Page <admwiggin@gmail.com> (github: tianon)

Tianon Gravi authored on 2014/02/05 05:32:53
Showing 1 changed files
... ...
@@ -66,6 +66,14 @@ EXAMPLES:
66 66
 * Improve detection of kernel version
67 67
 ```
68 68
 
69
+If you need a list of contributors between the last major release and the
70
+current bump branch, use something like:
71
+```bash
72
+git log --format='%aN <%aE>' v0.7.0...bump_v0.8.0 | sort -uf
73
+```
74
+Obviously, you'll need to adjust version numbers as necessary.  If you just need
75
+a count, add a simple `| wc -l`.
76
+
69 77
 ### 3. Change the contents of the VERSION file
70 78
 
71 79
 ```bash