I am working on a project which uses git. Whenever I make changes, I submit a patch to the main developer who apply and commit it. Things worked nicely this far whith:
git diff > somepatch.patch
But when I create new files, The above command doesn't work. It creates a patch which doesn't contain new files that I created. I tried adding them to git like this:-
git add path/to/the/file.qml
but this also doesn't work.