I have a commit xyz in my local branch that I want to check if it is included in a remote release repository; can I do that in some easy way? I could clone the remote repo, but I'm hoping for a nicer+faster way. git ls-remote seemed promising, but found nothing of value to me there. Thanks!
|
|
|||
|
|
|
Let's suppose that the remote that refers to the remote repository is called
Now you can use the useful
(The
If it's contained in your local repository, but not one of the remote-tracking branches, the output will be empty. However, if that commit isn't known in your repository at all, you'll get the error |
|||||
|
|
Like Mark said,
However, beware for branches that contain a cherry-picked/rebased/merged version of the commit. This could come in handy
It will list the commit ONLY if it doesn't exist (as a cherrypick) in the remote branch. See the man page for log for an explanation on how --cherry-pick identifies equivalent commits Of course merges/rebases with conflict resolutions or squashes cannot be automatically detected like this |
|||
|
|