summaryrefslogtreecommitdiffstats
path: root/readme.md
diff options
context:
space:
mode:
authorpurwandi <free6300@gmail.com>2011-09-08 17:09:20 +0200
committerpurwandi <free6300@gmail.com>2011-09-08 17:09:20 +0200
commit80023511af5dfb47b01ca1381da22490319835a2 (patch)
treee26d988ec54c153bff4fcec78a2687adca75e9ab /readme.md
parentca24f5e36b9c460813ee740acda1f41eaa533c3f (diff)
Added some tag link
Diffstat (limited to 'readme.md')
-rw-r--r--readme.md22
1 files changed, 9 insertions, 13 deletions
diff --git a/readme.md b/readme.md
index 74e294a15..7d7bf9d4a 100644
--- a/readme.md
+++ b/readme.md
@@ -24,15 +24,13 @@ Please see file on [CodeIgniter User Guide](http://codeigniter.com/user_guide/in
# Contributing
-CodeIgniter is a community driven project and accepts contributions of code and documentation from the community. These contributions are made in the form of Issues or Pull Requests on the EllisLab CodeIgniter repository on GitHub.
+CodeIgniter is a community driven project and accepts contributions of code and documentation from the community. These contributions are made in the form of Issues or [Pull Requests](http://help.github.com/send-pull-requests/) on the [EllisLab CodeIgniter repository](https://github.com/EllisLab/CodeIgniter) on GitHub.
Issues are a quick way to point out a bug. If you find a bug or documentation error in CodeIgniter then please check a few things first:
There is not already an open Issue
-
The issue has already been fixed (check the develop branch, or look for closed Issues)
-
Is it something really obvious that you fix it yourself?
Reporting issues is helpful but an even better approach is to send a Pull Request, which is done by “Forking” the main repository and committing to your own copy. This will require you to use the version control system called Git.
@@ -40,30 +38,30 @@ Guidelines
Before we look into how, here are the guidelines. If your Pull Requests fail to pass these guidelines it will be declined and you will need to re-submit when you’ve made the changes. This might sound a bit tough, but it is required for us to maintain quality of the code-base.
-PHP Style: All code must meet the Style Guide, which is essentially the Allman indent style, underscores and readable operators. This makes certain that all code is the same format as the existing code and means it will be as readable as possible.
+PHP Style: All code must meet the [Style Guide](http://codeigniter.com/user_guide/general/styleguide.html), which is essentially the [Allman indent style](http://en.wikipedia.org/wiki/Indent_style#Allman_style), underscores and readable operators. This makes certain that all code is the same format as the existing code and means it will be as readable as possible.
Documentation: If you change anything that requires a change to documentation then you will need to add it. New classes, methods, parameters, changing default values, etc are all things that will require a change to documentation. The change-log must also be updated for every change. Also PHPDoc blocks must be maintained.
Compatibility: CodeIgniter is compatible with PHP 5.1.6 so all code supplied must stick to this requirement. If PHP 5.2 or 5.3 functions or features are used then there must be a fallback for PHP 5.1.6.
-Branching: CodeIgniter uses the Git-Flow branching model which requires all pull requests to be sent to the “develop” branch. This is where the next planned version will be developed. The “master” branch will always contain the latest stable version and is kept clean so a “hotfix” (e.g: an emergency security patch) can be applied to master to create a new version, without worrying about other features holding it up. For this reason all commits need to be made to “develop” and any sent to “master” will be closed automatically. If you have multiple changes to submit, please place all changes into their own branch on your fork.
+Branching: CodeIgniter uses the [Git-Flow](http://nvie.com/posts/a-successful-git-branching-model/) branching model which requires all pull requests to be sent to the “develop” branch. This is where the next planned version will be developed. The “master” branch will always contain the latest stable version and is kept clean so a “hotfix” (e.g: an emergency security patch) can be applied to master to create a new version, without worrying about other features holding it up. For this reason all commits need to be made to “develop” and any sent to “master” will be closed automatically. If you have multiple changes to submit, please place all changes into their own branch on your fork.
One thing at a time: A pull request should only contain one change. That does not mean only one commit, but one change - however many commits it took. The reason for this is that if you change X and Y but send a pull request for both at the same time, we might really want X but disagree with Y, meaning we cannot merge the request. Using the Git-Flow branching model you can create new branches for both of these features and send two requests.
How-to Guide
+There are two ways to make changes, the easy way and the hard way. Either way you will need to [create a GitHub account](https://github.com/signup/free).
-There are two ways to make changes, the easy way and the hard way. Either way you will need to create a GitHub account.
Easy way
-
GitHub allows in-line editing of files for making simple typo changes and quick-fixes. This is not the best way as you are unable to test the code works. If you do this you could be introducing syntax errors, etc, but for a Git-phobic user this is good for a quick-fix.
-Hard way
+Hard way
The best way to contribute is to “clone” your fork of CodeIgniter to your development area. That sounds like some jargon, but “forking” on GitHub means “making a copy of that repo to your account” and “cloning” means “copying that code to your environment so you can work on it”.
Set up Git (Windows, Mac & Linux)
Go to the CodeIgniter repo
Fork it
Clone your CodeIgniter repo: git@github.com:<your-name>/CodeIgniter.git
- Checkout the “develop” branch At this point you are ready to start making changes. Fix existing bugs on the Issue tracker after taking a look to see nobody else is working on them.
+ Checkout the “develop” branch At this point you are ready to start making changes.
+ Fix existing bugs on the Issue tracker after taking a look to see nobody else is working on them.
Commit the files
Push your develop branch to your fork
Send a pull request http://help.github.com/send-pull-requests/
@@ -78,10 +76,8 @@ Unlike systems like Subversion, Git can have multiple remotes. A remote is the n
If you are using command-line you can do the following:
git remote add codeigniter git://github.com/EllisLab/CodeIgniter.git
-
- git pull codeigniter develop
-
- git push origin develop
+ git pull codeigniter develop
+ git push origin develop
Now your fork is up to date. This should be done regularly, or before you send a pull request at least.