-
Notifications
You must be signed in to change notification settings - Fork 306
How to contribute to this repository
All current work on the YiiBooster happens in the branches which are named like N.N.N-wip
, where N
s are numbers. So, you should not normally contribute to master branch, but only to current *-wip
branch instead.
Common work process is as follows:
-
Fork YiiBooster to your Github account. Use button "Fork" in the Github webpage.
-
Clone your own copy of YiiBooster's repo to your workstation.
git clone git://github.com/clevertech/YiiBooster.git
-
Make a new branch named after the feature you're fixing/adding.
git checkout -b myfeature
-
Commit everything to this branch and not to master.
-
Push this branch to your Github fork.
git push origin myfeature
-
After this, go to clevertech/YiiBooster, hit "Pull Request" and choose your branch at your fork as a source and desired
*-wip
branch as a receiver of pull request.
Please, do not forget to reference the original issue as '#'+issue-number in the description of your pull request. It's very important, it'll help admins to quickly find what issues can be closed with this pull request.