Module: docs Branch: master Commit: 202921eaeb4935069b98352ac786930154006d38 URL: http://source.winehq.org/git/docs.git/?a=commit;h=202921eaeb4935069b98352ac7...
Author: André Hentschel nerv@dawncrow.de Date: Mon Jul 4 22:08:14 2011 +0200
winedev: Update git usage for patch creation.
---
en/winedev-coding.sgml | 13 +++++-------- 1 files changed, 5 insertions(+), 8 deletions(-)
diff --git a/en/winedev-coding.sgml b/en/winedev-coding.sgml index 430e602..2dc12a6 100644 --- a/en/winedev-coding.sgml +++ b/en/winedev-coding.sgml @@ -46,19 +46,16 @@ To generate a patch using Git, first commit it to your local tree. </para> <para> - Each file that you change needs to be updated with - <command> git update </command>. If you are adding or removing - a file, use <command> git update --add </command> or - <command>git update --remove</command> respectively. - After updating the index, commit the change using - <command> git commit </command>. The commit message will be - sent with your patch, and recored in the ChangeLog. + If you are adding a file, use <command>git add</command>. + Commit the change using <command>git commit</command>. The + commit message will be sent with your patch, and recorded in + the commit log. </para> <para> After committing the patch, you can extract it using <command>git format-patch</command> and send it to wine-patches using <command>git imap-send</command> or simply attaching it - to you mail manually. + to your mail manually. </para> </sect1>