diff --git a/CHANGELOG.md b/CHANGELOG.md
index dd1364bb4832281284e5183f90a49866a33db1d4..8b4a2b38f4a252d8b2f2bfec5012c4497035f513 100644
--- a/CHANGELOG.md
+++ b/CHANGELOG.md
@@ -2,6 +2,7 @@ gitlab-mirrors v0.3.1
 
 * Added contributing guidelines
 * Added getting help to README.
+* Bazaar repository mirroring supported.
 
 ---
 ## gitlab-mirrors v0.3.0
diff --git a/add_mirror.sh b/add_mirror.sh
index 02e33eb6c16c1545943d4ac96d1a798ca1bd1d59..e0843a7aa3ab1ea5ba945cb5a768a6007e84e98d 100755
--- a/add_mirror.sh
+++ b/add_mirror.sh
@@ -52,6 +52,8 @@ DESCRIPTION:
                      An authors file to pass to git-svn for mapping
                      SVN users to git users.
 
+  --bzr              Mirror a Bazaar repository (must be explicitly set)
+
   -f,--force         Force add project even if it already exists.
                      Any program errors will automatically continue.
 
@@ -64,8 +66,6 @@ DESCRIPTION:
 
   --svn              Mirror a SVN repository (must be explicitly set)
 
-  --bzr              Mirror a Bazaar repository (must be explicitly set)
-
 EOF
 }
 #Short options are one letter.  If an argument follows a short opt then put a colon (:) after it
diff --git a/docs/prerequisites.md b/docs/prerequisites.md
index a2cfb482b46d4c74caaafe44868351ec0a017733..a4c0bb878335b54e4d07e4847f1a07809d95f512 100644
--- a/docs/prerequisites.md
+++ b/docs/prerequisites.md
@@ -39,6 +39,14 @@ You can find the source to git at the [git-core project][5].  For instructions o
 
 Your git should now be located in `/usr/local/bin/git`.  You should edit `/etc/profile` and place `/usr/local/bin` at the beginning of your `$PATH`.
 
+git-bzr-helper
+
+    sudo -i -u gitmirror
+    sudo apt-get install python-rope
+    mkdir ~/bin
+    wget https://raw.github.com/felipec/git/fc/master/git-remote-hg.py -O ~/bin/git-remote-bzr
+    chmod 755 ~bin/git-remote-bzr
+
 ---
 Next up is [Installation and Setup](installation.md).