Activity Team/Git FAQ: Difference between revisions
RafaelOrtiz (talk | contribs) man |
RafaelOrtiz (talk | contribs) examples |
||
| Line 127: | Line 127: | ||
=== How do I send a patch to a maintainer? === | === How do I send a patch to a maintainer? === | ||
First You may need to install git-mail: | |||
sudo yum -y install git-email | |||
An easy way to send a complete patch is to commit in git, then do: | An easy way to send a complete patch is to commit in git, then do: | ||
| Line 133: | Line 138: | ||
git send-email --to <maintainer> --cc <mailing-list> <filename> | git send-email --to <maintainer> --cc <mailing-list> <filename> | ||
f.e you can do: | |||
git send-email --to <maintainer> --subject=mail-subject 0003-service-name-deprecated.patch | |||
You can also generate a [[#How do I request a merge?|merge request]] on Gitorious from your forked repository to mainline. | You can also generate a [[#How do I request a merge?|merge request]] on Gitorious from your forked repository to mainline. | ||