I'm trying to apply a .patch file to a single .cpp file using git diff.
These are my files: old.cpp , new.cpp and fix.patch.
old.cpp is the original unmodified source code, new.cpp is the modified source and fix.patch is the patch I want to create which when applied to old.cpp should apply the changes from new.cpp to it. Both old.cpp and new.cpp are with Windows (CR LF) line endings, both files are 918 KB large, only one line is being modified in the source.
I create the patch by putting the two files old.cpp and new.cpp in the same folder and using Git Bash prompt with the command:
git diff -u old.cpp new.cpp > fix.patch
The fix.patch file successfully appears but when I actually test it and apply it to old.cpp with Git Bash by typing:
patch old.cpp fix.patch
the patch is being applied successfully but the size of old.cpp reduces from 918 KB to 894 KB. After some research with kdiff3 I found that my newly created fix.patch file is with Unix (LF) line endings and after applying it to old.cpp, the patched old.cpp is adopting Unix (LF) line endings too. I guess this is the reason why the file size of old.cpp reduces too.
My question is what command should I use in git or what else I have to do so my newly created fix.patch file remains with Windows (CR LF) line endings and after applying the patch to old.cpp the newly patched old.cpp file is with Windows (CR LF) line endings too and the file size does not reduce so drastically. I received a suggestion here to use git apply instead of patch but I don't know what exactly to type after git apply so it works the way I want for my situation. :(
I am using Windows XP SP2, Git 1.7.6, Git Extensions 2.24 and Microsoft Visual C++ 2010.
I am fairly new and inexperienced in coding with C++ and working with git but I am trying to learn as much as I can. I spent two days trying to work things out on my own and search the Internet with Google but I wasn't able to fix the issue. I hope someone here can explain me how things exactly work and where I'm doing wrong.
Any help and feedback is greatly appreciated.
Thank you in advance. :)

git config core.autocrlf, it returned to metrue. I am usingpatchin the "Git Bash" prompt. – Hellen Aug 21 '11 at 12:28