aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorMarkos Chandras <hwoarang@gentoo.org>2012-02-05 13:55:05 +0200
committerMarkos Chandras <hwoarang@gentoo.org>2012-02-05 13:55:05 +0200
commitcb6b70a63c5c5e0d24876a96e40bb4011402717d (patch)
treee22dc1a4d23bb231a91f4fe6abad337febb9a0eb /Documentation
parentnet-misc/kontrolpack: Version bump. (diff)
downloadqt-cb6b70a63c5c5e0d24876a96e40bb4011402717d.tar.gz
qt-cb6b70a63c5c5e0d24876a96e40bb4011402717d.tar.bz2
qt-cb6b70a63c5c5e0d24876a96e40bb4011402717d.zip
README: add minimal documentation on how to create git patches
Diffstat (limited to 'Documentation')
-rw-r--r--Documentation/maintainers/README26
-rw-r--r--Documentation/qt-faq.rst5
2 files changed, 31 insertions, 0 deletions
diff --git a/Documentation/maintainers/README b/Documentation/maintainers/README
new file mode 100644
index 00000000..39cb608b
--- /dev/null
+++ b/Documentation/maintainers/README
@@ -0,0 +1,26 @@
+Git Patches:
+
+Since Qt overlay is a git repo, we prefer patches to be sent in proper git
+format. It is easier for us to apply them and you also get all the kudos for
+your work on the commit message. The following process aims to simplify the
+process of creating git patches:
+
+1) Create a separate branch for your patches
+ git checkout -b for-qt
+
+2) Write stuff and then commit them
+
+3) Rebase your "for-qt" branch to master branch
+ a) Switch to master branch
+ git checkout master
+ b) Update your master branch
+ git pull
+ c) Switch back to "for-qt" branch
+ git checkout for-qt
+ d) Rebase your branch onto master
+ git rebase master
+
+4) Create your patch
+ git format-patch master..for-qt
+
+5) Send your patches to qt@gentoo.org or attach them to your bug
diff --git a/Documentation/qt-faq.rst b/Documentation/qt-faq.rst
index 96505e55..9eabffaf 100644
--- a/Documentation/qt-faq.rst
+++ b/Documentation/qt-faq.rst
@@ -7,6 +7,11 @@
.. contents::
.. sectnum::
+How can I contribute to this overlay?
+-------------------------------------
+
+Please, read Documentation/maintainers/README file for proper ways to submit
+bugs and patches for the Qt overlay
Why do I need qt3support?
-------------------------