Skip to content

Olmo's workflow

ibolmo edited this page Nov 29, 2011 · 4 revisions
  1. Find an issue.
  2. git fetch mootools to get any new changes to master
  3. git checkout -b [action]-[issue#]-[description-delimited-by-dash] e.g. git checkout -b fix-1000-ie-button-type-throws
  4. repeat 2-3 for any submodules
  5. if necessary, add specs to reproduce failure
  6. work on the fix^1
  7. run the specs^2 until all browsers pass
  8. git add [files] or git commit -a if modified already present files
  9. write a good commit message^3
  10. git push [your-git-repo] [action]-[issue#]-[description-delimited-by-dash] (tip: use tab completion for topic branch)
  11. go to your github repo page
  12. select your topic branch
  13. send pull request. optionally modify subject and description of pull request.
  14. done, or start over at 1.

^1: Working on the Fix

  1. Stick to what you need to fix. If you find something else that needs to be fixed or cleaned, create an issue or create another topic branch.

  2. If you're going to fix it with something controversial or something you're unsure of, then commit early and send a pull request with description and with @requests to notify developers.

^2: Running the specs 1.

^3: Write a good commit message

Clone this wiki locally