How To Compare Commits Between Two Branches
- Clone the repo you want.
- Change into the directory.
- Check the available branches to find each branch name with
git branch -a. - For example, to check all of the commits that are present in
release-1.4that do not exist inrelease-1.3, run this command:git log --oneline remotes/origin/release-1.3..remotes/origin/release-1.4 - To find out more information about a particular commit, use the
git showcommand:git show <commit>