Skip to content
GitLab
Projects
Groups
Snippets
/
Help
Help
Support
Community forum
Keyboard shortcuts
?
Submit feedback
Contribute to GitLab
Sign in
Toggle navigation
Menu
Open sidebar
einsteinathome
boinc
Commits
ba6ebc65
Commit
ba6ebc65
authored
Jan 02, 2013
by
David Anderson
Committed by
Oliver Bock
Mar 04, 2013
Browse files
Add a way to generate a checkin_notes file based off git metadata
parent
6c6cb8be
Changes
1
Hide whitespace changes
Inline
Side-by-side
gitlog2boinclog.sh
0 → 100755
View file @
ba6ebc65
#!/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
Write
Preview
Supports
Markdown
0%
Try again
or
attach a new file
.
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Cancel
Please
register
or
sign in
to comment