aboutsummaryrefslogtreecommitdiffstats
path: root/doc
diff options
context:
space:
mode:
authorThomas Willingham <beardyunixer@beardyunixer.com>2014-08-17 14:57:39 +0100
committerThomas Willingham <beardyunixer@beardyunixer.com>2014-08-17 14:57:39 +0100
commit8d3dc7541daef72924d22a7b902db32457f20884 (patch)
tree8625325f0c4c44b2d3db4fd89190a6f7b0302ab7 /doc
parentbb3768d1722f19928f42e195b4003de8aa8672db (diff)
downloadvolse-hubzilla-8d3dc7541daef72924d22a7b902db32457f20884.tar.gz
volse-hubzilla-8d3dc7541daef72924d22a7b902db32457f20884.tar.bz2
volse-hubzilla-8d3dc7541daef72924d22a7b902db32457f20884.zip
Doco - attempt to explain pull requests in git for non developers.
Diffstat (limited to 'doc')
-rw-r--r--doc/git_for_non_developers.bb29
1 files changed, 27 insertions, 2 deletions
diff --git a/doc/git_for_non_developers.bb b/doc/git_for_non_developers.bb
index e68634da1..aa87fba69 100644
--- a/doc/git_for_non_developers.bb
+++ b/doc/git_for_non_developers.bb
@@ -41,6 +41,31 @@ This will open up an editor where you can describe the changes you have made. S
Finally, push the changes to your own git
[code]git push[/code]
-And that's it!
+And that's it, your repo is up to date!
-Return to the [url=[baseurl]/help/main]Main documentation page[/url] \ No newline at end of file
+All you need to do now is actually create the pull request. There are two ways to do this.
+
+The easy way, if you're using Github is to simply click the green button at the top of your own copy of the repository, enter a description of the changes, and click 'create pull request'. The
+main repository, themes, and addons all have their main branch at Github, so this method can be used most of the time.
+
+Most people can stop here.
+
+Some projects in the extended RedMatrix ecosphere have no Github presence, to pull request these is a bit different - you'll have to create your pull request manually. Fortunately, this isn't
+much harder.
+
+[code]git request-pull -p <start> <url>[/code]
+
+Start is the name of a commit to start at. This must exist upstream. Normally, you just want master.
+
+URL is the URL of [i]your[/i] repo.
+
+One can also specify <end>. This defaults to HEAD.
+
+Example:
+[code]
+git request-pull master https://example.com/project
+[/code]
+
+And simply send the output to the project maintainer.
+
+Return to the [url=[baseurl]/help/main]Main documentation page[/url]