mercurial

Mercurial integration into Visual Studio 2005?

本秂侑毒 提交于 2019-12-21 07:53:11
问题 Is there a way of integrating Mercurial into Visual Studio 2005? We'd like to be able to do checkin's, see history, etc. directly from the IDE. 回答1: A hyperlink is worth a thousand words ;-) http://www.newsupaplex.pp.ru/hgscc_news_eng.html 回答2: VisualHG which in turn needs TortoiseHG 来源: https://stackoverflow.com/questions/962055/mercurial-integration-into-visual-studio-2005

Mercurial integration into Visual Studio 2005?

走远了吗. 提交于 2019-12-21 07:52:12
问题 Is there a way of integrating Mercurial into Visual Studio 2005? We'd like to be able to do checkin's, see history, etc. directly from the IDE. 回答1: A hyperlink is worth a thousand words ;-) http://www.newsupaplex.pp.ru/hgscc_news_eng.html 回答2: VisualHG which in turn needs TortoiseHG 来源: https://stackoverflow.com/questions/962055/mercurial-integration-into-visual-studio-2005

Distributed version control for HUGE projects - is it feasible?

不羁岁月 提交于 2019-12-21 07:51:01
问题 We're pretty happy with SVN right now, but Joel's tutorial intrigued me. So I was wondering - would it be feasible in our situation too? The thing is - our SVN repository is HUGE. The software itself has a 15 years old legacy and has survived several different source control systems already. There are over 68,000 revisions (changesets), the source itself takes up over 100MB and I cant even begin to guess how many GB the whole repository consumes. The problem then is simple - a clone of the

Hosting Mercurial with IIS 6

守給你的承諾、 提交于 2019-12-21 07:31:17
问题 I'm trying to set up Mercurial repositories to be hosted by IIS under Windows Server 2003. Following this post I installed Python 2.5.4.4 and Mercurial 1.3, set up virtual dir, extracted library.zip and created hgwebdir.config. However, when I trying to open the http://hostname/hg/hgwebdir.cgi I got an error “The specified CGI application misbehaved by not returning a complete set of HTTP headers.” I did all by best: Checked IIS mappings to both .py and .cgi extensions. I even tried to use

Hosting Mercurial with IIS 6

这一生的挚爱 提交于 2019-12-21 07:30:06
问题 I'm trying to set up Mercurial repositories to be hosted by IIS under Windows Server 2003. Following this post I installed Python 2.5.4.4 and Mercurial 1.3, set up virtual dir, extracted library.zip and created hgwebdir.config. However, when I trying to open the http://hostname/hg/hgwebdir.cgi I got an error “The specified CGI application misbehaved by not returning a complete set of HTTP headers.” I did all by best: Checked IIS mappings to both .py and .cgi extensions. I even tried to use

mercurial: how to change name of a tag

久未见 提交于 2019-12-21 07:07:24
问题 Just as the title says: I have made a tag in mercurial. hg tag release_123 But later on I found out that the name was wrong, it should be release_124. Is it possible to simply rename the tag or do I have to create a new one? 回答1: I would do it by removing the tag and then adding a new tag with the new name The Mercurial tag wiki explains how to remove a tag: How do I remove a tag? Either by hg tag --remove tagname (this being the nearest equivalent to cvs tag -d) adding tagname

Best practices for using Hg with Grails?

梦想与她 提交于 2019-12-21 06:08:28
问题 What should I check in/not check in? Since many of the files are sometimes auto-generated I'm not entirely sure how to handle this using version control...does it have something to do with tags? For instance in ANT, I know not to check-in my target/bin directories...but Grails adds another level of confusion to this...since some of code is generated and some of it is not. (It may become clearer as I go...but it seems to be that there needs to be some way of being able to tell what was just

Source Control in Lotus Domino Designer

夙愿已清 提交于 2019-12-21 05:41:27
问题 We have been using Domino on a large project for years without any real source-control (other-than server backups). So, I was rather pleased when I noted the latest Designer 8.5.3 has potential integration with SVN. I was unable get SVN working just by following the original instructions for as already noted on Stackoverflow the update sites have moved. The solution posted on OpenNTF, only half worked, with Domino still croaking at GEF, Mylyn and some other missing plugins. After finding and

How to keep changesets in phase “draft” on hg push?

半世苍凉 提交于 2019-12-21 05:03:13
问题 How can I hinder mercurial from putting changesets to phase “public” on push operations? I want them to stay “draft”. I rebase and histedit a lot, and the repository I push to is for me only. And having to change the phase all the time is a nuisance. 回答1: What the documentation does not clearly reveal is: The phase-change on push is not a purely local decision. – After “uploading” the changesets, the client asks the server for updates regarding the phases of the commits, and the server is

Mercurial Hg-Git: Clone from a local directory?

孤街浪徒 提交于 2019-12-21 04:03:24
问题 I have a local Git repository on my computer that I am trying to clone with Hg-Git. It works fine for me when I'm cloning from a git:// type path, but not if I try to clone from local directories. Here is an example... hg clone "C:\Users\James\Documents\My Games\FalloutNV" destination directory: FalloutNV importing Hg objects into Git abort: The system cannot find the file specified The path does exist, and somehow it knows that it's a Git repo, but it has the direction backwards. It should