Skip to content
Snippets Groups Projects
Commit ba6ebc65 authored by David Anderson's avatar David Anderson Committed by Oliver Bock
Browse files

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

parent 6c6cb8be
No related branches found
No related tags found
No related merge requests found
#!/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
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Please register or to comment