git log to see only changes in your branch
If you want to see only changes in your current git branch, use the following command :-
git log master..
Otherwise, to specify your target branch
git log master..<your branch name>
If you want to see only changes in your current git branch, use the following command :-
git log master..
Otherwise, to specify your target branch
git log master..<your branch name>
Comments