Add a way to generate a checkin_notes file based off git metadata

This commit is contained in:
David Anderson 2013-01-02 09:29:51 -08:00 committed by Oliver Bock
parent 6c6cb8be48
commit ba6ebc657c
1 changed files with 16 additions and 0 deletions

16
gitlog2boinclog.sh Executable file
View File

@ -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