mirror of https://github.com/BOINC/boinc.git
Add a way to generate a checkin_notes file based off git metadata
This commit is contained in:
parent
6c6cb8be48
commit
ba6ebc657c
|
@ -0,0 +1,16 @@
|
||||||
|
#!/bin/bash
|
||||||
|
# Provide a go between the historical way BOINC has tracked commit changes with the way
|
||||||
|
# git manages historical information. Basically mimic the checkin_notes file with the
|
||||||
|
# output of various git commands
|
||||||
|
#
|
||||||
|
|
||||||
|
# Command line customizations here
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
# Get a list of commit ids to extract the log information for
|
||||||
|
for i in `git log --since="1 week ago" --pretty="%H"`;
|
||||||
|
do
|
||||||
|
git show --name-status --pretty=fuller $i
|
||||||
|
echo "$ii"
|
||||||
|
done
|
Loading…
Reference in New Issue