Guest User

Untitled

a guest
Oct 22nd, 2018
81
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.34 KB | None | 0 0
  1. all_release_branch_names=($(git show-ref | grep 'release_' | cut -d' ' -f 2))
  2. for branch in $all_release_branch_names; do
  3. commit_where_it_branched_from_master= $(git merge-base ${branch} master)
  4. git show $commit_where_it_branched_from_master -s --pretty=format:"$commit_it_where_branched_from_master branched from master on %cd"
  5. done
Add Comment
Please, Sign In to add comment