Commit:    0173592272937e4c8c480da9932bbd418aef69eb
Author:    Peter Kokot <peterko...@gmail.com>         Tue, 11 Dec 2018 02:04:27 
+0100
Parents:   001a1dbe21cf6b61c6cc8d45afaa2d5c8cb7c6e7
Branches:  master

Link:       
http://git.php.net/?p=web/bugs.git;a=commitdiff;h=0173592272937e4c8c480da9932bbd418aef69eb

Log:
Add contributing procedure

Changed paths:
  M  README.md


Diff:
diff --git a/README.md b/README.md
index 799e64b..92d5955 100644
--- a/README.md
+++ b/README.md
@@ -69,3 +69,36 @@ Source code of this application is structured in the 
following directories:
  ├─ phpunit.xml.dist        # PHPUnit's default XML configuration
  └─ ...
 ```
+
+## Contributing
+
+Issues with the application and new feature requests can be reported to
+[bugs.php.net](https://bugs.php.net) and discussed by sending message to the
+[webmaster mailing list](http://news.php.net/php.webmaster) to the address
+php-webmaster@lists.php.net.
+
+Application source code is located in the
+[git.php.net](https://git.php.net/?p=web/bugs.git) repository.
+
+Contributions can be done by forking the [GitHub 
mirror](https://github.com/php/web-bugs)
+repository and sending a pull request.
+
+```bash
+git clone g...@github.com:your-username/web-bugs
+cd web-bugs
+git checkout -b patch-1
+git add .
+git commit -m "Describe changes"
+git push origin patch-1
+```
+
+A good practice is to also set the upstream remote in case the upstream master
+branch updates. This way your master branch will track remote upstream master
+branch of the root repository.
+
+```bash
+git checkout master
+git remote add upstream git://github.com/php/web-bugs
+git config branch.master.remote upstream
+git pull --rebase
+```


--
PHP Webmaster List Mailing List (http://www.php.net/)
To unsubscribe, visit: http://www.php.net/unsub.php

Reply via email to