version control - Git command to find backported commits in Linux Kernel Repo -
consider linux kernel git repository. new versions of kernel contain backport of upstream fixes. e.g. v4.3.4 , v4.1.16 both contain commit 23567fd052a9abb6d67fe8e7a9ccdd9800a540f2.
however, backporting commit branches new commit, c23d6de841098d408ceb573cbc9f4dcf7c92a786 4.3.4 , b71567e6c9a2b15b7be9cb8ca695e9c990c0513b 4.1.16. far can see, id of original commit (23567fd0..) part of comment in new commits.
is there (series of) git commands, allow me list of branches contain commit message contains specific commit id?
Comments
Post a Comment