I am trying to compare files in local branch that could change or be created.
Currently I have a repository called "develop" that gets a new folder locally with contents:
./dist/index.js
./dist/index.js.map
...
The file is built and placed in dist. In remote I do not have this file, nor this folder.
Comparing with (ran in develop branch locally):
git diff origin/develop
The command above finds no changes at all unless I commit these files locally, which I am trying to avoid.
Is there any way to achieve what I am looking for?