1

I took git-flow to do my work,

But I wonder how to see the merged-branch logs after I merged the branch.

for example, when I finished the branch feature/support_vadp

I can no see the logs in that branch anymore.

584c054 - (HEAD, hotfix/fix_duplicated_partial_only_items) Ignore: experimental seeding files (24 minutes ago) <poc7667>
bbaffaf - (master) Merge branch 'develop' (31 minutes ago) <poc7667>
7bc6c17 - (develop) Merge branch 'feature/support_vadp' into develop (37 minutes ago) <poc7667>

enter image description here

newBike
  • 14,385
  • 29
  • 109
  • 192

1 Answers1

0

That would be the log of the develop branch, where you merged your feature branch.
To see all branches:

git log --all --branches

It also depends on how you are using git-flow: with SourceTree for instance, you would have the option to finish and delete the branch:

http://blog.sourcetreeapp.com/files/2012/07/flow_finishfeature.png

(in which case you wouldn't be able to see the feature branch commit, even with a git log --all --branches)

See more at "Finishing a feature branch with GIT Flow".

Community
  • 1
  • 1
VonC
  • 1,262,500
  • 529
  • 4,410
  • 5,250