I would like to check all committed files from multiple commits on origin/master
branch.
I have been checking following commands all are working on local branches only but not working on origin/master because they checking against origin/master only.
git diff master...<branch>
,git diff master... --name-only
,git diff HEAD origin/master --name-only
,git whatchanged/log --name-only --pretty="" origin..HEAD
How to can do the same operation on origin/master
?
I am directly making changes on origin/master branch then commit the files. It can be multiple commits. Now, I would like to know what are all the files that I changed on master branch.