diff options
Diffstat (limited to 'admin')
| -rw-r--r-- | admin/notes/bzr | 21 |
1 files changed, 21 insertions, 0 deletions
diff --git a/admin/notes/bzr b/admin/notes/bzr index 8720982e0aa..2fdbc2854f8 100644 --- a/admin/notes/bzr +++ b/admin/notes/bzr | |||
| @@ -179,3 +179,24 @@ where revision N+1 is the one where file was removed. | |||
| 179 | 179 | ||
| 180 | You could also try `bzr add --file-ids-from', if you have a copy of | 180 | You could also try `bzr add --file-ids-from', if you have a copy of |
| 181 | another branch where file still exists. | 181 | another branch where file still exists. |
| 182 | |||
| 183 | * Loggerhead | ||
| 184 | |||
| 185 | Loggerhead is the bzr tool for viewing a repository over http (similar | ||
| 186 | to ViewVC). The central version is at http://bzr.savannah.gnu.org/lh/emacs, | ||
| 187 | but if you just like the way this interface presents data, then if | ||
| 188 | you have your own copy of the repository, you can operate your own | ||
| 189 | Loggerhead server in stand-alone mode, and so help to reduce the load | ||
| 190 | on Savannah: | ||
| 191 | |||
| 192 | bzr branch lp:loggerhead ~/.bazaar/plugins/loggerhead | ||
| 193 | cd /path/to/emacs/bzr | ||
| 194 | bzr serve --http | ||
| 195 | |||
| 196 | You may need to install some Python dependencies to get this command to work. | ||
| 197 | For example, on RHEL6 I needed: | ||
| 198 | |||
| 199 | yum install python-paste python-simplejson | ||
| 200 | yum --enablerepo=epel install python-simpletal | ||
| 201 | |||
| 202 | Then point your web-browser to http://127.0.0.1:8080/ . | ||