How to see the merger history?

I use git, but I am not an expert in this.

I inherited an old project, and it follows the git thread (and I like it): every new function in the branch feature/name. But when new features were merged into the developmain branch, they were not erased from origin. So now, by origin, I see many branches, and I don’t know which one is old or who works.

Is there a way to have a history of mergers performed between function branches and development?

EDITOR: I'm on a linux machine

+4
source share
2 answers

To get the history of merge commits made in the current branch, use the following command:

git log --merges
+10
source

install it

sudo apt-get install git-gui

gui

git gui 
0

Source: https://habr.com/ru/post/1616524/


All Articles