Daniel Nylander schreef:
How do I create a patch per file? There are 28 new files that needs to be commited and one #include per dll/program to be added. Please help me out, I'm not a developer
If you created a git commit, you can undo it with git reset --mixed origin. Then do the following:
git update-index --add dlls/somedll/newfile.rc dlls/somedll/existingfile.rc git commit -m 'somedll: Add swedish translations'
Do this 28 times and then send it in.
Good luck, Maarten.