summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorThomas Schwinge <tschwinge@gnu.org>2007-08-09 02:54:05 +0200
committerThomas Schwinge <tschwinge@gnu.org>2007-08-08 21:43:28 +0000
commit27b56060c3f62c04fc93cd08781a49824c1b7826 (patch)
tree7356d7cbe6a25d0c0df5302feedbdc69f0279f38
parent28069bf82a8ebdad96c24a60a66c89da0ccf94ad (diff)
How to publish changes when having read-only access.
-rw-r--r--HowToContributeToThisWiki.mdwn17
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