Skip to content

Files

Latest commit

72bd0bd · Dec 7, 2015

History

History
21 lines (16 loc) · 660 Bytes

2015-12-07-git-finding-parent-branch.md

File metadata and controls

21 lines (16 loc) · 660 Bytes
layout title author tags
post
GIT: Finding Parent Branch
kamal
git, tips

When you create a branch in git, using command such as:-

git checkout -b branch1

Git will create the new branch based on our current branch, usually the master branch. But it possible at the time we created the branch, we're not on master branch. So to figure out what is the branch origin/parent, we can use this command:-

current_branch=`git rev-parse --abbrev-ref HEAD`
git show-branch -a | awk -F'[]^~[]' '/\*/ && !/'"$current_branch"'/ {print $2;exit}'

Reference - http://stackoverflow.com/questions/3161204/find-the-parent-branch-of-a-git-branch