SpecialistOff.NET / Вопросы / Статьи / Фрагменты кода / Резюме / Метки / Помощь / Файлы
НазадМетки: python
Note
Adapted from a posting by Yarko Tymciurak
This assumes that you have created a local branch on your private machine where you do work, and keep it merged with the trunk.
That is, you’ve done:
- Forked a branch of http://www.bitbucket.org/BruceEckel/python-3-patterns-idioms/ (the main trunk; this fork will provide a place for review and comment)
- cloned the trunk to your local machine: - hg clone https://my_login@bitbucket.org/BruceEckel/python-3-patterns-idioms/
- cloned your local copy of trunk to create a working directory: - hg clone python-3-patterns-idioms devel
Todo
This section still work in progress:
When you have a new function idea, or think you’ve found a bug, ask Bruce on the group.
- If you have a new feature, create a wiki page on BitBucket and describe what you’re going to do.
- If you have found a bug, make a bug report on BitBucket (later assign it to yourself, and link your branch to it);
- If you want to work on a project, look for an unassigned bug and try to work it out - then proceed as below...
When you are ready to share your work have others review, register a branch.
Note
You can re-use one branch for multiple bug fixes.