Skip to content

Commit 67235a0

Browse files
committed
CONTRIBUTING.md cleanup
1 parent 11ae0f7 commit 67235a0

File tree

1 file changed

+9
-10
lines changed

1 file changed

+9
-10
lines changed

CONTRIBUTING.md

Lines changed: 9 additions & 10 deletions
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,4 @@
1-
Guidelines for Contributing
2-
====
1+
# Guidelines for Contributing
32
Contributions from the community are essential in keeping Hibernate (any Open Source
43
project really) strong and successful. While we try to keep requirements for
54
contributing to a minimum, there are a few guidelines we ask that you mind.
@@ -8,8 +7,8 @@ contributing to a minimum, there are a few guidelines we ask that you mind.
87
If you are just getting started with Git, GitHub and/or contributing to Hibernate via
98
GitHub there are a few pre-requisite steps.
109

11-
* Make sure you have signed a [Contributor License Aggrement](https://cla.jboss.org) (CLA) for the Hibernate project
12-
* Make sure you have a [Hibernate Jira account](https://hibernate.onjira.com)
10+
* Make sure you have signed a [Contributor License Agreement](https://cla.jboss.org) (CLA) for the Hibernate project
11+
* Make sure you have a [Hibernate JIRA account](https://hibernate.atlassian.net)
1312
* Make sure you have a [GitHub account](https://github.com/signup/free)
1413
* [Fork](http://help.github.com/fork-a-repo) the Hibernate repository. As discussed in
1514
the linked page, this also includes:
@@ -20,9 +19,9 @@ or [Eclipse](https://community.jboss.org/wiki/ContributingToHibernateUsingEclips
2019

2120
## Create the working (topic) branch
2221
Create a [topic branch](http://git-scm.com/book/en/Git-Branching-Branching-Workflows#Topic-Branches) on which you
23-
will work. The convention is to name the branch using the JIRA issue key. If there is not already a Jira issue
22+
will work. The convention is to name the branch using the JIRA issue key. If there is not already a JIRA issue
2423
covering the work you want to do, create one. Assuming you will be working from the master branch and working
25-
on the Jira HHH-123 : `git checkout -b HHH-123 master`
24+
on the JIRA HHH-123 : `git checkout -b HHH-123 master`
2625

2726

2827
## Code
@@ -31,18 +30,18 @@ Do yo thing!
3130
## Commit
3231

3332
* Make commits of logical units.
34-
* Be sure to use the JIRA issue key in the commit message. This is how Jira will pick
35-
up the related commits and display them on the Jira issue.
33+
* Be sure to use the JIRA issue key in the commit message. This is how JIRA will pick
34+
up the related commits and display them on the JIRA issue.
3635
* Make sure you have added the necessary tests for your changes.
3736
* Run _all_ the tests to assure nothing else was accidentally broken.
3837
* Make sure your source does not violate the checkstyles.
3938

40-
_Prior to commiting, if you want to pull in the latest upstream changes (highly
39+
_Prior to committing, if you want to pull in the latest upstream changes (highly
4140
appreciated btw), please use rebasing rather than merging. Merging creates
4241
"merge commits" that really muck up the project timeline._
4342

4443
## Submit
4544
* If you have not already, sign the [Contributor License Agreement](https://cla.jboss.org).
4645
* Push your changes to the topic branch in your fork of the repository.
4746
* Initiate a [pull request](http://help.github.com/send-pull-requests/)
48-
* Update the Jira issue, adding a comment inclusing a link to the created pull request
47+
* Update the JIRA issue, adding a comment including a link to the created pull request

0 commit comments

Comments
 (0)