I have never used patches with Git before and I need some help. I am trying to apply a patch to a Git repo to test a Wine patch, specifically this patch here. So I did the following:
$ git clone git://source.winehq.org/git/wine.git
$ cd wine
$ nano patch.p1
I then pasted the content of the patch with Ctrl+Shift+Vand used Ctrl+O to save. Then I tried this:
$ git am patch.p1
Patch format detection failed.
What am I doing wrong? I have never applied a patch before.