博客
关于我
强烈建议你试试无所不能的chatGPT,快点击我
redmine 整合版本库
阅读量:6181 次
发布时间:2019-06-21

本文共 1380 字,大约阅读时间需要 4 分钟。

  hot3.png

通知redmine 有新的changeset

apache

LoadModule wsgi_module modules/mod_wsgi.soWSGIScriptAlias /hgrepos "F:/hg_repos/hgweb/hgweb.wsgi"

hgweb.wsgi

# An example WSGI for use with mod_wsgi, edit as necessary# See http://mercurial.selenic.com/wiki/modwsgi for more information# Path to repo or hgweb config to serve (see 'hg help hgweb')config = "F:/hg_repos/hgweb/hgweb.config"# Uncomment and adjust if Mercurial is not installed system-wide# (consult "installed modules" path from 'hg debuginstall'):#import sys; sys.path.insert(0, "D:/Test/hglib")# Uncomment to send python tracebacks to the browser if an error occurs:import cgitb; cgitb.enable()# enable demandloading to reduce startup timefrom mercurial import demandimport; demandimport.enable()from mercurial.hgweb import hgwebapplication = hgweb(config)

hgweb.config

[paths] project = F:\hg_repos\project\*test = F:\hg_repos\test\*[web]allow_push = * push_ssl = falseencoding = UTF-8[hooks]changegroup.redmine = F:/hg_repos/hgweb/sync-redmine.batcommit.redmine = F:/hg_repos/hgweb/sync-redmine.bat

sync-redmine.bat

rem sync redmine reposity and ticket wgethttp://127.0.0.1:3000/sys/fetch_changesets?key=3eYuhBHOh5efg1NNeXkd

​or put hgrc into each repo

[hooks]changegroup.redmine = F:/hg_repos/hgweb/sync-redmine.batcommit.redmine = F:/hg_repos/hgweb/sync-redmine.bat

转载于:https://my.oschina.net/lxbzj/blog/152860

你可能感兴趣的文章
malloc分配的内存空间是连续的吗
查看>>
分享20个吸引眼球的高品质免费PSD网站模板
查看>>
利用memcached构建高性能的Web应用程序(转载)
查看>>
表设计避免使用保留字
查看>>
编程算法 - 翻转单词顺序 代码(C)
查看>>
SpiderMonkey-让你的C++程序支持JavaScript脚本
查看>>
2013 华为校招机试题
查看>>
Clr编写Insert Triggr
查看>>
泛型(一)
查看>>
sql读取xml
查看>>
CSDN博客的一些问题(友好的吐槽)--后记,有一点点改进
查看>>
激光推送
查看>>
Python 2.7 学习笔记 访问mysql数据库
查看>>
Windows 同一时候开启核心显卡与独立显卡(不接显示器启动核芯显卡)
查看>>
微信公众平台开放改名了 附修改公众号名称方法
查看>>
iOS10 UI设计基础教程
查看>>
JAVA分词包
查看>>
c#委托是什么?事件是不是一种委托?
查看>>
pojWindow Pains(拓扑排序)
查看>>
TongWeb
查看>>