A way to find releases/heads with given commit.
--- 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)';
+ );
+}