Re: [git-users] How do I find the branch of each parent of a merge commit?

2014-04-01 Thread Alex Rodrigues
Thanks . wanted to make sure there was not already some simple command to get what I wanted, and it appears there isn't. Thanks for the links, seems to be some promising leads there which help me get to where I want to go. -- You received this message because you are subscribed to the

Re: [git-users] How do I find the branch of each parent of a merge commit?

2014-04-01 Thread Alex Rodrigues
Also found http://stackoverflow.com/questions/2706797/finding-what-branch-a-commit-came-from the following command appears to be exactly what I need git reflog show --all | grep SHA1 Now I would need to just parse out the branch name :-) -- You received this message because you are

Re: [git-users] How do I find the branch of each parent of a merge commit?

2014-03-31 Thread Alex Rodrigues
Perhaps I should explain what I am trying to do. We have several project branches where developers commit their code (A project is a set of related features). The project branches are frequently merged to an integration branch where the code is compiled and then deployed from. (1 integration

Re: [git-users] How do I find the branch of each parent of a merge commit?

2014-03-31 Thread Philip Oakley
- Original Message - From: Alex Rodrigues To: git-users@googlegroups.com Cc: Alex Rodrigues ; Philip Oakley Sent: Monday, March 31, 2014 8:56 PM Subject: Re: [git-users] How do I find the branch of each parent of a merge commit? Perhaps I should explain what I am trying

Re: [git-users] How do I find the branch of each parent of a merge commit?

2014-03-29 Thread Philip Oakley
- Original Message - From: Alex Rodrigues To: git-users@googlegroups.com Sent: Saturday, March 29, 2014 3:22 AM Subject: [git-users] How do I find the branch of each parent of a merge commit? I would like to find the branches that contributed to a commit that was the