I posted this question on superuser.com but I wasn't sure if it was appropriate there..
Anyway:
Hi,
I'm coming from a TortoiseSVN background and decided to give TortoiseHg a try.. One thing I got really used to with TortoiseSVN was the SVN Repo-Explorer, which worked quite similarly to Windows Explorer.. However, when I tried to use T...
What does it mean when you try to push to a Mercurial repository on Bitbucket and it produces the response:
abort: HTTP Error 413: Request Entity Too Large
...
I have a large file in my Mercurial repository that is preventing my repository from being uploaded to Bitbucket. I get the error:
abort: HTTP Error 413: Request Entity Too Large
Fortunately the file extension for this file is different from everything else in my repository so it should be easy to create a rule to exclude it. However,...
I have a subversion repository, where each branch is a separate project. I would like to change this architecture, and to gradually move to mercurial. How can I convert a single branch of a subversion repo into an hg repository.
hg version : 1.01
...
I want to move a part, i.e. one subdirectory of an existing, private mercurial repository to a new, public repository on bitbucket. Is it possible to do this including the changesets or do I have to manually copy the directory to the new repository and commit it there (and lose the version history on the way)?
...
What is the best/easiest way (or is it even possible) to add an existing repository to another existing repository as a subrepo?
Situation is I have an existing (main) project where I want to include a library project so that i can edit the library project from the main project, and commit the changes to the library project when comitti...
I clone a repo to c:\mycopy
I create new files in my working dir
How can I tell hg update to delete any new files in my working dir? I don't want it to delete files that are in the ignored file patterns.
...
Suppose that:
I have a repo called MyRepo.
I have uncommitted changes in my working directory.
I do a pull from Repo1 and that creates a branch in MyRepo
I want to do a merge of what I already had in my repo with what I have just pulled.
As described here, the merge process changes the state of the working directory.
In my scenario,...
I am trying to do a terminal update and I keep getting this error, no matter what.
/Volumes/www/working/.hg/wlock.break
/Library/Python/2.6/site-packages/mercurial/dispatch.py:157: DeprecationWarning: use lock.release instead of del lock
return -1
Any ideas as to what this is?
Out of date versions?
I am running Snow Leopard 10.6.2 ...
I use this to remove a file from the repo:
hg remove <full file path>
What command can you use to do an hg remove on all files that have been deleted locally?
By deleted locally, I mean those showing up with an ! when you do hg status.
For adds, you can just do hg add to add all new files (those prefixed with ?).
...
Patch file is made with TopirtiseSVN -> Create Patch...
Attempting to import patch into the mercurial repository using hg import patchfile.
The problem I'm running into is that there seems to be problems with how hg looks for files referenced in the patch file:
unable to find 'gui/gui/RemoteFramework.cpp' for patching
2 out of 2 hunks...
Possible Duplicate:
Continuous Integration stack on Windows with Mercurial + Mercurial Queues?
If so, what does your build process look like?
I'm having a difficult time (mostly because of my lack of experience/understanding of all 3 tools) getting TeamCity to run my FinalBuilder scripts. Right now I have FinalBuilder managin...
Note: The scenario I describe here is not answered in Stack Overflow: Completely manual Mercurial merge.
I will explain my query with an example. Assume I start off a Mercurial repository to design a car:
C:\Car$ dir
Car.cpp
Car.h
I work on the design of Car for quite a while and the repository looks like:
r0-r1-...-r100-(default)
...
For those of you that use Mercurial with the MQ extension:
This is the second time I accidentally submit changes to the central repository (hg push) instead of applying a patch to my working directory (hg qpush).
I think this is very unfortunate, because it is a very simple error to make and has very severe consequences (the least havi...
I've installed the HgEclipse plugin, now I'm just wondering how I can create a dynamic web project out of the code I've pulled from the repository with HgEclipse?
...
Somewhere I did something silly.
I was deploying my Rails app via cloning the Mercurial repo down onto my Ubuntu server. It worked the first time, and then...well, I made a small change on my dev machine, pushed the changes to the repo, and then deleted the copy on the Ubuntu server and re-cloned from the repo.
The clone operation (the...
I've started development on a project (which used CVS) by downloading its sources, creating a fresh HG repository, and using that. However, the original project now has converted to using Mercurial as well.
Can I add its history before my initial commit into my repository?
Alternately, how can I push my repository to the remote one so...
Note: I asked this yesterday over at kiln.stackexchange.com, but haven't gotten an answer, and it's holding up my work. So I figured I'd give it a shot here.
My main mercurial repository has a bunch of subrepositories in it. During initial setup, I made a mistake in my .hgsub. Namely, I pointed two subrepositories to the same directory....
I have tried to host a Mercurial HG repository using a Scriptalias.
ScriptAlias /hg/ "htdocs/hgwebdir.cgi"
If I go to Chrome it display the contents of the cgi file. In IE it does render however images and links are not displayed. In either case the repository I want to display is not shown.
Has anyone managed to get this working with...
Hey Everyone,
Im trying to setup repository permissions with Mercurial/Tortoisehg. What I would like to do is have 1 person be the administrator and only that person is allowed to commit/push/pull to the repository. Everyone else would have to send that person a patch if they want to get their changes into the repository.
Thanks for an...