I'm working with software in a science project that involves ~20 developers and 98 software modules on 2 different CVS servers. To advertise git I set up read-only mirror repositories on bitbucket, using 'git-cvsimport {module}' followed by a 'git push --mirror git@bitbucket.org:team/{module}'.
Quite a while ago (earlier than 2/21/13) the format for the Newsfeed on Bitbucket (both Dashboard and Feed) was:
- Bob committed 02343490abc to {module}:
- Charlie committed 309dfer2342 to {module}
- ...
Now it seems to have changed (around 2/21/13) to the format:
- Alice pushed 2 commits to {module}:
- 02343490abc - some log message
- 309dfer2342 - some other log message
In this case, it is no longer obvious that Alice did not author the commits (Bob and Charlie). Or in my case, that I did not author the commits of all my 20 colleagues commiting to CVS.
Why did the format change? Is there some information on that subject (blog post, wiki entry, feature request ect.)? Is there some alternative to recreate the earlier format, or to create a custom newsfeed?