keycloak-aplcache
Changes
misc/HackingOnKeycloak.md 18(+9 -9)
Details
misc/HackingOnKeycloak.md 18(+9 -9)
diff --git a/misc/HackingOnKeycloak.md b/misc/HackingOnKeycloak.md
index a97e717..437b8b4 100644
--- a/misc/HackingOnKeycloak.md
+++ b/misc/HackingOnKeycloak.md
@@ -16,25 +16,25 @@ GitHub Repository
git clone https://github.com/<your username>/keycloak.git
cd keycloak
-
+
### Add a remote ref to upstream for pulling future updates
-
+
git remote add upstream https://github.com/keycloak/keycloak.git
-
+
### Pull later updates from upstream
git fetch upstream
git rebase upstream/master
-
-
+
+
Discuss changes
---------------
-Before starting work on a new feature or anything besides a minor bug fix join the [Keycloak Dev mailing list](https://lists.jboss.org/mailman/listinfo/keycloak-dev)
+Before starting work on a new feature or anything besides a minor bug fix join the [Keycloak Dev mailing list](https://lists.jboss.org/mailman/listinfo/keycloak-dev)
and send a mail about your proposed changes. This is vital as otherwise you may waste days implementing a feature that is later rejected.
-Once you have received feedback from the mailing list if there's not one already create a (JIRA issue)[https://issues.jboss.org/browse/KEYCLOAK].
-
+Once you have received feedback from the mailing list if there's not one already create a [JIRA issue](https://issues.jboss.org/browse/KEYCLOAK).
+
Implement changes
-----------------
@@ -45,7 +45,7 @@ If your changes requires updates to the database read [Updating Database Schema]
To try your changes out manually you can quickly start Keycloak from within your IDEA or Maven, to find out how to do this
read [Testsuite](Testsuite.md). It's also important that you add tests to the testsuite for your changes.
-
+
Get your changes merged into upstream
-------------------------------------