14

Currently if I specify a description in hgwebdir.config it shows up the same for each repository. I want to have a unique name for each repository. Where and how do I set this?

My hgwebdir.config looks like this at present:

[web]
style = Gitweb
contact = BrianLy
description =  Same description for all. I want a unique description.
allow_archive = gz, zip, bz2

[paths]
/ = /Users/brianly/sandbox/*
Martin Geisler
  • 72,968
  • 25
  • 171
  • 229
Brian Lyttle
  • 14,558
  • 15
  • 68
  • 104

1 Answers1

22

Inside each repository itself is (or can be) a .hg/hgrc file. Put the [web] section in there with a description entry. See the hgrc webpage for all the places that config entries can go.

ernie
  • 6,356
  • 23
  • 28
Ry4an Brase
  • 78,112
  • 7
  • 148
  • 169