To know which files are going to be modified, you have to start by fetching the branches
fetch git
then to see the files
git log -p HEAD.. origin
and the differences (three dots, not two)
git diff HEAD... origin
Il n'y a pas de questions bêtes

Photo de Christopher Gower sur Unsplash
To know which files are going to be modified, you have to start by fetching the branches
fetch git
then to see the files
git log -p HEAD.. origin
and the differences (three dots, not two)
git diff HEAD... origin