Changes between Version 4 and Version 5 of CollaborateOnGithub
- Timestamp:
- Jan 17, 2009, 7:32:08 AM (16 years ago)
Legend:
- Unmodified
- Added
- Removed
- Modified
-
CollaborateOnGithub
v4 v5 37 37 The process should be managed with the '''Dictator and Lieutenants Workflow''', described at http://whygitisbetterthanx.com/#any-workflow. 38 38 * ''Dictators'' are core Django developers, who eventually merge the `git` branches back to Django trunk. 39 * ''Lieutenants'' are developers, who take the responsibility to steer and coordinatethe work on a large feature (e.g. aggregates).39 * ''Lieutenants'' are developers, who take the responsibility of steering and coordinating the work on a large feature (e.g. aggregates). 40 40 * ''Contributors'' are developers who contribute -- under lieutenant's guidance -- to the development of the feature. 41 41 … … 54 54 git fetch upstream 55 55 }}} 56 1. Work on code, commit locally as needed: 57 {{{ 58 git commit -a -m "Implemented foo." 59 }}} 60 1. Publish changes to your public repository: 61 {{{ 62 git push 63 }}} 64 1. When the upstream Django SVN mirror is updated, pull the updates from it (fetching and merging in one step): 65 {{{ 66 git pull upstream master 67 }}} 56 68 57 69 === Contributor ===