I have a branch where all the developers will commit their changes, I would like to track all the changes for the release. my question is how can I download all the commit messages for this particular branch.
Cheers.
there are many ways to see commits on branches let's see some practices below.
from CLI: use Git BASH or terminal or any cli tool which have access to git Binaries
use below commands that can help you list all the commits in a branch
below command show commit log on that branch
git log
if your developers uses tags for releases you can diff tags
git log tag1..tag2
git diff tag1 tag2
from Gui:
goto bibtbucket repository you want to view commits
on left hand side of the repository page you will notice an option commits. if you click on it it will display all commits on that branch.
you can switch branches and can list commits on this page
Thanks a lot for your response kiran, am looking forward to import them to excel or any format.
You must be a registered user to add a comment. If you've already registered, sign in. Otherwise, register and sign in.
Hope, this can help you formatting commits and there messages you can just easily redirect them to a file.
You must be a registered user to add a comment. If you've already registered, sign in. Otherwise, register and sign in.
You must be a registered user to add a comment. If you've already registered, sign in. Otherwise, register and sign in.
Online forums and learning are now in one easy-to-use experience.
By continuing, you accept the updated Community Terms of Use and acknowledge the Privacy Policy. Your public name, photo, and achievements may be publicly visible and available in search engines.
You must be a registered user to add a comment. If you've already registered, sign in. Otherwise, register and sign in.