diff options
author | Thomas Schwinge <tschwinge@gnu.org> | 2007-08-09 02:54:05 +0200 |
---|---|---|
committer | Thomas Schwinge <tschwinge@gnu.org> | 2007-08-08 21:43:28 +0000 |
commit | 27b56060c3f62c04fc93cd08781a49824c1b7826 (patch) | |
tree | 7356d7cbe6a25d0c0df5302feedbdc69f0279f38 | |
parent | 28069bf82a8ebdad96c24a60a66c89da0ccf94ad (diff) |
How to publish changes when having read-only access.
-rw-r--r-- | HowToContributeToThisWiki.mdwn | 17 |
1 files changed, 14 insertions, 3 deletions
diff --git a/HowToContributeToThisWiki.mdwn b/HowToContributeToThisWiki.mdwn index 93ef77ab..aaf41d86 100644 --- a/HowToContributeToThisWiki.mdwn +++ b/HowToContributeToThisWiki.mdwn @@ -53,11 +53,22 @@ Then you can work on these files. Prepare to publish your changes. - $ [TODO] + $ git-format-patch -M -B origin + 0001-Be-a-bit-more-expressive.patch + [...] + +See through the prepared **.patch* files and simply delete those you don't want +to pulish. -Finally publish them. +Finally, publish the good ones. If you have a local mail transfer agent +running, this is as simple follows. + + $ git-send-email --to web-hurd@gnu.org *.patch + [...] - $ [TODO] +If you don't have an mta running, you'll have to find another way: either post +the **.patch* files to <web-hurd@gnu.org> or upload them somewhere for us to +download from. ## Do a Read-write Checkout of the git Repository |