# HG changeset patch # User Oleksandr Gavenko # Date 1599600654 -10800 # Node ID d9232a82c55a2b9e1c93fe6d0fc44d70eb79b7c2 # Parent abefcbeca9a584d3b793fca926b0f1292c0f556d A way to find releases/heads with given commit. diff -r abefcbeca9a5 -r d9232a82c55a .bashrc --- a/.bashrc Tue Aug 25 10:15:42 2020 +0300 +++ b/.bashrc Wed Sep 09 00:30:54 2020 +0300 @@ -281,3 +281,10 @@ GIT_COMMITTER_DATE="$1" git commit --amend --no-edit --date "$1" } +# https://stackoverflow.com/questions/63794347/find-every-decoration-after-given-git-commit +mygit-descendants() { + git log --graph --decorate --oneline --simplify-by-decoration ^"$1" $( + git branch --all --contains "$1" --format '%(objectname)'; + git tag --contains "$1" --format '%(objectname)'; + ); +}