Skip to content
GitLab
Explore
Sign in
Primary navigation
Search or go to…
Project
B
boinc
Manage
Activity
Members
Labels
Plan
Issues
Issue boards
Milestones
Wiki
Code
Merge requests
Repository
Branches
Commits
Tags
Repository graph
Compare revisions
Build
Pipelines
Jobs
Pipeline schedules
Artifacts
Deploy
Releases
Model registry
Operate
Environments
Monitor
Incidents
Analyze
Value stream analytics
Contributor analytics
CI/CD analytics
Repository analytics
Model experiments
Help
Help
Support
GitLab documentation
Compare GitLab plans
Community forum
Contribute to GitLab
Provide feedback
Keyboard shortcuts
?
Snippets
Groups
Projects
Show more breadcrumbs
einsteinathome
boinc
Commits
ba6ebc65
Commit
ba6ebc65
authored
12 years ago
by
David Anderson
Committed by
Oliver Bock
12 years ago
Browse files
Options
Downloads
Patches
Plain Diff
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
Changes
1
Show whitespace changes
Inline
Side-by-side
Showing
1 changed file
gitlog2boinclog.sh
+16
-0
16 additions, 0 deletions
gitlog2boinclog.sh
with
16 additions
and
0 deletions
gitlog2boinclog.sh
0 → 100755
+
16
−
0
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
This diff is collapsed.
Click to expand it.
Preview
0%
Loading
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!
Save comment
Cancel
Please
register
or
sign in
to comment