diff --git a/web/support/kb/juju/Local-Charm-Repository.rst b/web/support/kb/juju/Local-Charm-Repository.rst
index b8e223e6f0d0819dde2f7ecba67d8567d4ac02d6..56c36e3fbc784a2a4e1f30cb7293d9513c4213c5 100644
--- a/web/support/kb/juju/Local-Charm-Repository.rst
+++ b/web/support/kb/juju/Local-Charm-Repository.rst
@@ -68,6 +68,13 @@ and also create a branch::
 Note: if the patch does not apply cleanly, you will need to manually
 resolve any conflicts to reapply the local customizations.
 
+If you made some changes to the master version that need to go into the stable branch::
+
+   $ git checkout stable/17.02
+   $ git merge master
+   $ git commit -a
+   $ git push
+
 Commit and push the new version of the charm.
 
 Releasing a new version of the charm
@@ -75,8 +82,12 @@ Releasing a new version of the charm
 To release a new version of the charm to the `Juju Charm Store`, do::
 
    $ cd CHARM_NAME
-   $ make REV=1 publish
-
-where REV is the new revision number, obtained from command::
+   
+Ensure that the code passes the tests::
 
-   $ charm push . cs:~csd-garr/CHARM_NAME
+   $ make
+   $ sudo make test
+   
+ If there are no errors, proceed to publish it::
+ 
+   $ make publish