ITK/Contribute: Difference between revisions
From KitwarePublic
< ITK
Jump to navigationJump to search
No edit summary |
|||
Line 3: | Line 3: | ||
== Bugs/Feature enhancements best practices guide == | == Bugs/Feature enhancements best practices guide == | ||
# Determine if the contribution is already listed in the bug tracker: | # Determine if the contribution is already listed in the bug tracker: http://issues.itk.org | ||
# Add proposed contribution (if necessary) and assign it to yourself (NOTE THE BUG ID link i.e. | # Add proposed contribution (if necessary) and assign it to yourself (NOTE THE BUG ID link i.e. 2287) | ||
# Create a new branch called " | # Create a new branch called "BUG2287" from the updated git ITK master branch | ||
# Make proposed changes on branch " | # Make proposed changes on branch "BUG2287", thoroughly test changes, submit dashboard indicating (NOTE THE DASHBOARD link ) | ||
# Merge | # Merge BUG2287 branch into master, commit changes with a comment that includes both the BUGID and link to dashboard indicating that the contribution introduces no new errors. | ||
# Close the | # Close the JIRA issue, and include the commit hash key as a comment when closing. | ||
=== Example === | === Example === | ||
Line 14: | Line 14: | ||
To update the ITK version number, the follow process could be followed: | To update the ITK version number, the follow process could be followed: | ||
Create a | Create a JIRA issue stating what you want to accomplish. | ||
Assign issue to yourself. | Assign issue to yourself. | ||
Line 31: | Line 31: | ||
</pre> | </pre> | ||
Close the | Close the JIRA issue with reference to the commit hash key. | ||
== Changing commit history == | == Changing commit history == |
Revision as of 22:11, 11 August 2011
Best practices process for contributing to ITK.
Bugs/Feature enhancements best practices guide
- Determine if the contribution is already listed in the bug tracker: http://issues.itk.org
- Add proposed contribution (if necessary) and assign it to yourself (NOTE THE BUG ID link i.e. 2287)
- Create a new branch called "BUG2287" from the updated git ITK master branch
- Make proposed changes on branch "BUG2287", thoroughly test changes, submit dashboard indicating (NOTE THE DASHBOARD link )
- Merge BUG2287 branch into master, commit changes with a comment that includes both the BUGID and link to dashboard indicating that the contribution introduces no new errors.
- Close the JIRA issue, and include the commit hash key as a comment when closing.
Example
To update the ITK version number, the follow process could be followed:
Create a JIRA issue stating what you want to accomplish. Assign issue to yourself.
git fetch origin git checkout master git branch BUG0011074 git checkout BUG0011074 vim CMakeLists.txt # Edit to change the version number git add CMakeLists.txt git commit git checkout master git merge BUG0011074 git push origin git branch -d BUG0011074
Close the JIRA issue with reference to the commit hash key.
Changing commit history
Git has some powerful tools to refactor the commit history. For example,
git commit --amend
can be used to change the content or commit message from the last commit.
git rebase -i
can be used to merge incremental commits into logical units.
These can be very convenient functions, but they should only be used on a local repository before the changes have been published to a public location.