How to find the father branch in git?
git
Solution
I believe you can use gitk or git-log to better visualize your commits history.
Like this:
gitk --all
or
git log --graph --decorate
Problem
Possible Duplicate: Find the parent branch of a branch I have made a new feature branch but I have forgotten form where did I branch this feature branch. Now the feature is complete but I don't know in which branch I have to merge Who do I find the branch that I have branched from?