Git comparer la branche à une autre branche change

#Comparing Actual Changes Between Two Branches
$ git diff main..feature/login
$ git diff main...feature/login

#Comparing Commits Between Two Branches
$ git log main..feature/login
$ git log --oneline main..feature/login

#Comparing A Specific File Between Branches
$ git diff main..feature/login index.html
DreamCoder