1

Bugzilla システムをしばらく稼働させており、最近 TortoiseHG を使い始めました。Bugzilla 拡張機能を使用してコメントを更新したいと考えています。

Mercurial のサイトHereに従って設定しました が、バグには投稿されません。

これは私が使用している Mercurial.ini のコピーです

# Generated by TortoiseHg settings dialog
[tortoisehg]
ui.language = en_GB
[ui]
merge = kdiff3
[extensions]
hgext.bugzilla = 
zeroconf = 

[hooks]
# run bugzilla hook on every change pulled or pushed in here
incoming.bugzilla = python:hgext.bugzilla.hook

[bugzilla]
# REQUIRED ITEMS:
host = http://192.168.10.33/bugtracker/ # mysql server where bugzilla database lives 
password = xxxxx   # user's password
version = 2.22.2  # version of bugzilla installed

# OPTIONAL ITEMS:
bzuser = peter.francis@xxx.com    # fallback bugzilla user name to record comments with
#   db = bugs       # database to connect to
#   notify = ...    # command to run to get bugzilla to send mail
regexp = [Bb]ug (\d+)   # regexp to match bug ids (must contain one "()" group)
#   strip = 0       # number of slashes to strip for url paths
#   style = ...     # style file to use when formatting comments
#   template = ...  # template to use when formatting comments
#   timeout = 5     # database connection timeout (seconds)
#   user = bugs     # user to connect to database as
#   [web]
#   baseurl = http://hgserver/... # root of hg web site for browsing commits

他の誰かがこれを行い、アドバイスを提供できますか?

4

1 に答える 1

0

hgrcではなく、作業しているリポジトリのファイルでこの拡張機能を構成するべきではありませんmercurial.iniか?

于 2012-08-05T03:15:38.870 に答える