active questions tagged mercurial - Stack Overflow most recent 30 from stackoverflow.com 2009-11-29T02:26:12Z http://stackoverflow.com/feeds/tag/mercurial http://www.creativecommons.org/licenses/by-nc/2.5/rdf http://stackoverflow.com/questions/1813649/how-many-people-were-involved-in-a-project-based-on-revision-control-system 1 How many people were involved in a project? Based on Revision Control System Juanjo Conti 2009-11-28T20:11:18Z 2009-11-29T00:58:15Z <p>How do you know how many developers were involved in a project using a Revision Control System? A friend of mine found this way to look up the answer in git log: </p> <pre><code>git log | grep Author: | sort -u | cut –delimiter=” ” -f2 | sort -u | wc -l </code></pre> <p>Is there a straightforward way in git? How about other Revision Control System like Subversion, Bazaar or Mercurial?</p> http://stackoverflow.com/questions/1777226/does-visualhg-work-with-visual-studio-2010-beta-2 1 Does VisualHG work with Visual Studio 2010 beta 2? Jader Dias 2009-11-21T23:57:22Z 2009-11-28T21:59:04Z <p>Since I installed it on my Visual Studio 2010 beta 2 I couldn't make it work. I don't know if it is because it is incompatible or it is because I don't know how to use it.</p> http://stackoverflow.com/questions/1810997/which-merge-strategies-does-mercurial-use 2 Which merge strategies does mercurial use? J G 2009-11-27T23:31:50Z 2009-11-28T15:00:21Z <p>I work in an environment with large scale multi-parallel branching. Looking at GIT I see it has several merge strategies:</p> <pre><code>already up-to-date fast-forward octopus resolve recursive </code></pre> <p>Does Mercurial have the equivalent of each of these? (ie is the implementation of Mercurial's merge algorithm as good as recursive?</p> http://stackoverflow.com/questions/1653409/which-mercurial-plugin-should-i-use-for-intellij 1 Which Mercurial plugin should I use for IntelliJ Arthur Ulfeldt 2009-10-31T04:28:01Z 2009-11-27T21:14:53Z <p>Which of the hg plug-ins has:</p> <ul> <li>the least hassles</li> <li>causes the least trouble</li> <li>is prettiest</li> </ul> http://stackoverflow.com/questions/1807855/software-project-management-systems 2 Software Project Management systems cornjuliox 2009-11-27T10:11:42Z 2009-11-27T11:21:55Z <p>Ok, so I've only recently started getting serious about learning how to program, and I've started using Mercurial to manage my projects. I chose Mercurial over SVN because of it's ability to commit changes to a repo while not connected to the internet (these days I find myself in areas without internet access). I'm looking for a piece of software (preferably free, because I'm on a really tight budget :-P) that will allow me to manage a bug database and TODO list for each of my projects without requiring an internet connection. Is there anything out there that'll allow me to do exactly that (maybe more)? I'd prefer something that can work alongside Mercurial, because it'd be a pain to switch source control systems at this point.</p> http://stackoverflow.com/questions/1794733/moving-the-hg-folder 0 Moving the .hg folder Sid 2009-11-25T04:58:10Z 2009-11-25T21:24:22Z <p>Hey, I'm using Mercurial. I just found out that there is a .hg folder in my home directory. I presume it is keeping track of all mercurial repositories I have lying around in my home directory. Is this true?</p> <p>Also , I need to move the .hg folder to another directory. Can anyone guide me as to how to do this?</p> <p>Thanks</p> http://stackoverflow.com/questions/1792397/backing-up-a-mercurial-repository-while-preserving-timestamps 1 Backing up a mercurial repository while preserving timestamps Jim Hunziker 2009-11-24T19:31:57Z 2009-11-25T19:22:57Z <p>Is there a way to back up a mercurial repository while preserving the files' timestamps?</p> <p>Right now, I'm using <code>hg clone</code> to copy the repository to a staging directory, and the backup program picks up the files from there. I'm not pointing the backup program directly at the repository because I don't want it to be changing (from commits) while the backup is happening.</p> <p>The problem is that <code>hg clone</code> changes all the files' timestamps to the current time, so the backup program (which I cannot change) thinks everything has been modified.</p> http://stackoverflow.com/questions/1798792/mercurial-in-windows-doesnt-see-hgignore-why 0 Mercurial in Windows doesn't see .hgignore - why? AP257 2009-11-25T17:57:47Z 2009-11-25T18:06:06Z <p>Windows fails to pick up my .hgignore file. I'm running Mercurial from the command line, and "hg status" shows lots of files in the ignored directories.</p> <p>The .hgignore file looks like this (there's no whitespace at the start of the file, or at the start of each line). I've put it in the root directory of the repository.</p> <pre><code>\.pyc$ \.pyo$ \.DS_Store \.Python \.installed.cfg ^bin$ ^build$ ^develop-eggs$ ^eggs$ ^include$ ^lib$ ^parts$ ^pip-log.txt$ ^web/localsettings.py$ </code></pre> <p>I've tried saving the file in ANSI and UTF-8, and it doesn't seem to make a difference.</p> <p>I know the file is working OK on Linux, is there anything different about the paths in Windows?</p> http://stackoverflow.com/questions/539062/what-are-your-experiences-using-the-new-hg-rebase-command 5 What are your experiences using the new "hg rebase" command? joeforker 2009-02-11T22:08:16Z 2009-11-25T14:06:14Z <p>How has "hg rebase" treated you so far? Have you discovered any bugs or gotchas? In what situations does it replace or complement mq?</p> http://stackoverflow.com/questions/1789242/how-to-do-partial-clone-of-a-mercurial-repository 0 How to do partial clone of a mercurial repository [closed] praveen 2009-11-24T10:40:19Z 2009-11-24T16:33:35Z <blockquote> <p><strong>Possible Duplicate:</strong><br> <a href="http://stackoverflow.com/questions/1745000/can-i-clone-part-of-a-mercurial-repository">Can I clone part of a Mercurial repository?</a> </p> </blockquote> <p>I am having a mercurial repository with huge volumes, there are lots of folders on root level and every folders have 1000+ files.</p> <p>let say main repository i.e. </p> <blockquote> <p>MAIN Repo has folders (fol1, fol2, fol3 fol4, fol5,....... etc)</p> </blockquote> <p>Now I want to clone MAIN repository with only <strong>fol1 folder</strong>. How is it possible?</p> <p>Praveen</p> http://stackoverflow.com/questions/1785609/would-like-to-create-some-defaults-for-my-hgignore-files-in-tortoisehg-mercurial 0 Would like to create some defaults for my .hgignore files in TortoiseHG/Mercurial DanThMan 2009-11-23T20:07:22Z 2009-11-23T21:53:34Z <p>I'd like to make it so that every time I create a new repository, certain filters automatically get added to my .hgignore files by default.</p> <p>For example, for C# projects, I would like these to be added:</p> <pre><code>glob:bin/* glob:obj/* </code></pre> <p>Is this possible? How?</p> <p>If it can't be automated, is it at least safe to copy the .hgignore file from one repository to another?</p> <p>[I hope this isn't too terribly off topic for stackoverflow...I considered SuperUser but thought it was more of a question for programmers.]</p> http://stackoverflow.com/questions/1782095/does-hg-pull-only-operate-on-the-current-working-directory 1 Does hg pull only operate on the current working directory? Franz 2009-11-23T09:43:51Z 2009-11-23T09:49:02Z <p>I have multiple mercurial repositories and used <code>hg clone</code> to create backups of them on our file server. Now I want to write a batch file that updates them once a day by running <code>hg pull -u</code> on each subdirectory.</p> <p>I want to keep this backup script as generic as possible, so it should update all backup repositories stored in my H:\BACKUPS\REPOS folder. This is my hgbackup.bat that is stored in the same folder:</p> <p><code>for /f "delims=" %%i in ('dir /ad/b') do hg pull -u</code></p> <p>The problem: hg pull only seems to operate on the current working directory, there seems to be no switch to specify the target repository for the pull. As I hate Windows Batch Scripting, I want to keep my .bat as simple as possible and avoid cd'ing to the different directories.</p> <p>Any ideas how I can run <code>hg pull -u</code> on a different directory?</p> http://stackoverflow.com/questions/1780778/mercurial-branching-and-bookmarks 2 Mercurial branching and bookmarks viraptor 2009-11-23T02:09:21Z 2009-11-23T03:38:10Z <p>I read some information about named branches and working with bookmarks. Unfortunately I still don't see a difference between them. Is there any?</p> <p>Is there any difference between:</p> <pre><code>hg branch blah hg up blah </code></pre> <p>and</p> <pre><code>hg bookmark blah hg up blah </code></pre> <p>?</p> <p>Why would I use a bookmark and how is it different from a named branch?</p> http://stackoverflow.com/questions/1778602/mercurial-bookmarks-and-git-like-branching 1 Mercurial Bookmarks and 'Git like branching' buymeasoda 2009-11-22T12:40:04Z 2009-11-22T23:25:22Z <p>I am not having any luck using Bookmarks in Mercurial for Git like branching.</p> <p>From the article: <a href="http://mercurial.selenic.com/wiki/BookmarksExtension" rel="nofollow">http://mercurial.selenic.com/wiki/BookmarksExtension</a>, I've set "track.current" to true in my .hgrc file. </p> <p>Excerpt below:</p> <blockquote> <p>By default, when several bookmarks point to the same changeset, they will all move forward together. It is possible to obtain a more Git-like experience by adding the following configuration option to your .hgrc</p> <pre><code>[bookmarks] track.current = True </code></pre> </blockquote> <p>However, as soon as I start trying to do parallel / independent development on more than one bookmark, then switch back and forth between the bookmarks, I run into the following:</p> <pre><code>abort: crosses branches (use 'hg merge' or 'hg update -C') </code></pre> <p>Example to reproduce:</p> <pre><code># Make a new directory and Mercurial repository $ mkdir bookmark $ cd bookmark $ hg init # Create two bookmarks $ hg bookmark bk1 $ hg bookmark bk2 # Checkout bk1 $ hg update bk1 0 files updated, 0 files merged, 0 files removed, 0 files unresolved # Create and commit a file to bk1 $ touch bk1.txt $ hg add adding bk1.txt $ hg commit -m "bk1 file" # Checkout bk2 $ hg update bk2 0 files updated, 0 files merged, 1 files removed, 0 files unresolved # Create and commit a file to bk2 $ touch bk2.txt $ hg add adding bk2.txt $ hg commit -m "bk2 file" created new head # Checkout bk1 $ hg up bk1 abort: crosses branches (use 'hg merge' or 'hg update -C') </code></pre> <p>Is this normal behavior, for there to be "crosses branches" forcing a merge or file overwrite, when moving between bookmarks?</p> <p>For a 'Git-like experience' I would expect to be able to flick back and forth between bk1 and bk2, committing and developing on either, merging if and when I needed to.</p> http://stackoverflow.com/questions/1775925/version-control-integration-with-eclipse 3 Version control integration with eclipse drummer 2009-11-21T16:20:59Z 2009-11-22T12:27:00Z <p>I'm looking for a version control system just for me on my windows computer to integrate into eclipse. I was thinking to use Mercurial instead of Subversion, but I'm having doubts about the mercurial eclipse plugin. Any input on this that you can help me with?</p> <p>Is it worth it to have a version control system when you're working alone, how much is it going to complicate matters? I don't think I need a remote repository since it's just for me. And what is known to work well in eclipse?</p> http://stackoverflow.com/questions/1774802/unable-to-launch-java-application-in-eclipse-after-mercurial-clone 1 Unable to launch java application in eclipse after mercurial clone salcin 2009-11-21T07:12:14Z 2009-11-21T12:28:57Z <p>I guess this is a Eclipse question.</p> <p>I have a mercurial repository with a source folder (src/main/java/) and some source code. The repository also contains a build.xml. After cloning the project into Eclipse using the Mercurial plugin I'm unable to configure a launch configuration for my project. Eclipse is unable to identify the newly cloned project as a project when setting up the launch configuration. What am I missing?</p> <p>TIA</p> http://stackoverflow.com/questions/1774733/mercurial-clone-issue 1 Mercurial clone issue Brian Liang 2009-11-21T06:36:09Z 2009-11-21T10:45:39Z <p>I'm using Mercurial and I've cloned a repo locally and upon <code>hg push</code>, I'm getting this:</p> <pre><code>abort: cannot lock static-http repository </code></pre> <p>What does this mean? Why can't it lock the static-http repository? Permission issue on the folder?</p> http://stackoverflow.com/questions/1762860/which-vcs-should-i-use-with-google-code 4 Which VCS should I use with Google Code? Nikwin 2009-11-19T12:09:50Z 2009-11-20T13:33:55Z <p>I am about to start a project and was thinking of using Google Code to host it. It gives the option of using Mercurial or SVN for version control. I have never before used a VCS, and would like to know which one is easier to work with.</p> <p>The project involves two main programmers, but a few others may contribute small amounts. It is mostly in python and we use Emacs as the primary editor. We are both using the Windows operating system.</p> http://stackoverflow.com/questions/1750466/subversion-some-other-vcs-git-hg-etc-in-the-same-working-copy 1 Subversion + Some other VCS (Git, Hg, etc) in the same working copy Mr AJL 2009-11-17T17:31:13Z 2009-11-19T18:26:53Z <p>Here's the deal: I just started a new job, and source control here is basically useless. All of the devs (about 10 guys) test their code in the same dev site, and there's no way to test a change other than commiting the change to SVN, and then it automatically gets updated in the dev site. (Let's not even start talking about the headaches when someone else breaks something, and you have to figure why your stuff is now not working....)</p> <p>So instead of doing like Ctrl+S, and refreshing the browser to see my changes, you have to Ctrl+S, svn commit, refresh the page. Of course since everyone has to do this a million times every day, there's never any commit messages, so the svn history is useless.</p> <p>Anyhow, since I'm the new guy, for now, for my own sanity, I want to use some other source control system locally, so that I can commit projects atomically, and be able to roll back easily.</p> <p>Is it possible to use for example mercurial at the same time as svn? I would use svn basically to see my changes, and mercurial to keep track of my changes.</p> <p>Any alternative ideas are welcome too. Thanks!</p> <p>UPDATE-</p> <p>Thanks for all the answers. Unfortunately, none really suit me in this situation. Maybe I didn't explain it right. I don't want sync between repos. What I need is to be able to have like two different repository checkouts living in the same place. So if I do <code>svn status</code> I'm comparing against the regular company repo. But if I do <code>hg status</code> I'm comparing against my own personal repo to help me stay sane. Thx guys</p> http://stackoverflow.com/questions/1715679/mercurial-over-ssh-client-and-server-on-windows 1 Mercurial over ssh client and server on Windows Ben Von Handorf 2009-11-11T14:53:10Z 2009-11-19T14:44:34Z <p>I'm trying to configure Mercurial for use with both a windows server (freeSSHd) and client (both command line and TortoiseHG). I'm using the most recent versions of everything... all downloaded in the past few days. Using public key auth, I have been able to get connected to the server and I'm able to use plink to execute "hg version" and get a response, but when I try to clone a repository from the ssh server the command appears to hang. Running with -v yields:</p> <pre><code>hg -v clone ssh://&lt;username&gt;@&lt;server&gt;//hg/repositoryA testRepositoryA running "plink.exe -i "&lt;path to private key file&gt;" &lt;username&gt;@&lt;server&gt; "hg -R /hg/repositoryA serve --stdio"" </code></pre> <p>with nothing more forthcoming. Running the hg serve command directly on the server yields an apparently responsive Mercurial server, but the clients do not seem to make any further requests.</p> <p>Running "hg serve" in the repository directory and cloning over http works perfectly.</p> <p>What should I be looking for to help debug this? Is there something the clients (hg and TortoiseHG) aren't sending to continue the request stream? </p> <p>Additional Information: If I change to an invalid repository on the target machine, the appropriate error is displayed, so it does appear that the remote hg is running and correctly evaluating the path.</p> <p>Running with --debug and --traceback results in:</p> <pre><code>sending hello command sending between command </code></pre> <p>It hangs here, until I CTRL-C</p> <pre><code>Traceback (most recent call last): File "mercurial\dispatch.pyo", line 46, in _runcatch File "mercurial\dispatch.pyo", line 452, in _dispatch File "mercurial\dispatch.pyo", line 320, in runcommand File "mercurial\dispatch.pyo", line 504, in _runcommand File "mercurial\dispatch.pyo", line 457, in checkargs File "mercurial\dispatch.pyo", line 451, in &lt;lambda&gt; File "mercurial\util.pyo", line 402, in check File "mercurial\commands.pyo", line 636, in clone File "mercurial\hg.pyo", line 187, in clone File "mercurial\hg.pyo", line 63, in repository File "mercurial\sshrepo.pyo", line 51, in __init__ File "mercurial\sshrepo.pyo", line 73, in validate_repo KeyboardInterrupt interrupted! </code></pre> <p>Responding to Ryan: There does not appear to be any CPU usage or increasing memory usage on the server. It appears to be waiting for the client to send a request or something similar.</p> <p>11/19/2009 : More information: The problem is definitely in the freeSSHd/server side of the equation. Connecting to bitbucket over ssh with the same keyset works fine. Still working on this.</p> http://stackoverflow.com/questions/890723/mercurial-named-branches-vs-multiple-repositories 13 Mercurial: Named Branches vs Multiple Repositories James Emerton 2009-05-20T23:20:48Z 2009-11-19T13:17:37Z <p>We're currently using subversion on a relatively large codebase. Each release gets its own branch, and fixes are performed against the trunk and migrated into release branches using <code>svnmerge.py</code></p> <p>I believe the time has come to move on to better source control, and I've been toying with Mercurial for a while.</p> <p>There seems to be two schools of though on managing such a release structure using Mercurial. Either each release gets its own repo, and fixes are made against the release branch and pushed to the main branch (and any other newer release branches.) OR using named branches within a single repository (or multiple matching copies.)</p> <p>In either case it seems like I might be using something like transplant to cherrypick changes for inclusion in the release branches.</p> <p>I ask of you; what are the relative merits of each approach?</p> http://stackoverflow.com/questions/1289816/can-mercurial-be-made-to-preserve-file-permissions 4 Can Mercurial be made to preserve file permissions? Norman Ramsey 2009-08-17T19:05:38Z 2009-11-19T07:13:12Z <p>I've seen a number of blog posts, and have experienced for myself, that Mercurial does not preserve the permissions on files pushed from one repo to another. Does anyone know of a Mercurial extension that would preserve the permissions? (I'm assuming it can't be done wit a hook, because what does a hook know about permissions at the originating repo?)</p> <p>Requested elaboration:</p> <ul> <li><p>If the only change to a file is a change in permissions (e.g., <code>chmod o+r filename</code>), attempts to commit the file fail with a message saying that the file has not changed.</p></li> <li><p>If I commit a file with permissions 600 (rw-------), then clone the repo, the same file in the clone has permissions 664 (rw-rw-r--):</p> <pre><code>: nr@yorkie 6522 ; hg clone one two updating working directory 1 files updated, 0 files merged, 0 files removed, 0 files unresolved : nr@yorkie 6523 ; ls -l one two one: total 4 -rw------- 1 nr nr 8 Aug 18 21:50 foo two: total 4 -rw-rw-r-- 1 nr nr 8 Aug 18 21:51 foo </code></pre></li> </ul> <p>This examples shows that <code>hg clone</code> does not preserve permissions, but <code>hg push</code> does not preserve them either.</p> <p>In my application, one repo is on a publically accessible path, and it's of major importance that</p> <ul> <li><p>Multiple users have the right to change the repo</p></li> <li><p>Files in the public repo become readable only when explicitly made readable.</p></li> </ul> http://stackoverflow.com/questions/1751944/how-do-i-get-the-current-mercurial-revision-without-calling-hg 0 How do I get the current mercurial revision without calling hg? DavidM 2009-11-17T21:30:43Z 2009-11-17T21:58:52Z <p>In Git the current revision hash is stored in </p> <pre><code>.git/refs/heads/master </code></pre> <p>Is there an equivalent in Mercurial that doesn't require me making a call to hg log -l1? I know I can get the current branch in .hg/branch.</p> <p>This is to "display" the current hg hash on screen when browsing a web page.</p> http://stackoverflow.com/questions/1745000/can-i-clone-part-of-a-mercurial-repository 2 Can I clone part of a Mercurial repository? Nick 2009-11-16T21:34:33Z 2009-11-17T21:20:39Z <p>Is it possible to clone part of a Mercurial depot? Let's say the depot is quite large, or contains multiple projects, or multiple branches, can I only clone part of the repo?</p> <p>E.g. in Subversion, you might have <em>trunk</em> and <em>branches</em>. If I only want to get trunk (or one of the branches) I can just request <em>[project]/trunk</em>. If I clone the hg repo I'll get trunk and all of the branches. This might be a lot of information I don't want. Can I avoid getting this?</p> <p>Alternatively, if I want to have multiple projects in one hg repo, how should I do this? I.e. so that I might just get one of the projects and ignore the others.</p> http://stackoverflow.com/questions/1444077/bazaar-mercurial-or-other-for-single-user-version-control 6 Bazaar, Mercurial or other for single user version control? foosion 2009-09-18T11:52:57Z 2009-11-17T10:34:28Z <p>Which version control system would you recommend for:</p> <ul> <li>single user</li> <li>looking for simple, easy to use</li> <li>generally small simple projects</li> <li>working on windows</li> <li>usually coding python</li> <li>no server</li> </ul> <p>Use would be more finding old code than complicated branching situations.</p> <p>From other similar posts, Bazaar and Mercurial seem the best distributed version control systems for my needs. I'm somewhat leaning towards Bazaar as it seems simpler.</p> <p>The main complaint I read about Baazar was that it was slow, but speed was to be improved in version 2, to be released this summer. The new version has not yet been released, but there is a 2.0.0rc2.</p> <p>I'm wondering if anything has changed recently or if anyone has any strong feelings on the subject.</p> <p>EDIT: After reading the responses and browsing some alternatives, I'm going with Bazaar, at least for the moment. For my needs, the products mentioned seemed rather similar. Bazaar has documentation specifically aimed at a solo developer and seems rather easy to use. Others seem more aimed at groups or those with central servers. Other systems may be as good, but I thought starting to use something was more important than spending time trying to find the perfect program. </p> <p>Thanks, everyone!</p> <p>(Should I have written this as an edit, an answer or a comment?)</p> http://stackoverflow.com/questions/1746680/how-do-you-make-use-of-aclextension-and-mercurial-server-hg-ssh 0 how do you make use of AclExtension and mercurial-server/hg-ssh? bo 2009-11-17T04:55:04Z 2009-11-17T05:54:30Z <p>mercurial-server manages user database under keys folder. Users and groups are represented by files and folders. </p> <p>AclExtension relies on linux user group through ssh.</p> <p>they don't seem to match. or did I miss something?</p> <p>I have managed to make mercurial-server work. but just don't see how to integrate AclExtension with it so I may have finer grained access control.</p> http://stackoverflow.com/questions/1743876/how-are-git-branches-imported-into-mercurial-with-hg-convert 1 How are git branches imported into mercurial with hg convert? DavidM 2009-11-16T18:09:25Z 2009-11-16T21:48:38Z <p>I have a number of branches in a git repository:</p> <pre><code>david@Panama ~/app: git branch -r origin/HEAD -&gt; origin/master origin/master origin/newButtons origin/newFonts origin/serverView </code></pre> <p>If I try and import this git repo into mercurial:</p> <pre><code>david@Panama ~/: hg convert app ... david@Panama ~/app-hg: hg update 388 files updated, 0 files merged, 0 files removed, 0 files unresolved david@Panama ~/app-hg: hg branches default 1148:6d04af619607 </code></pre> <p>It seems that the branches have been "lost" (in terms of them no longer being separated) and indeed merged into the tip:</p> <pre><code>david@Panama ~/app-hg: hg log changeset: 1148:6d04af619607 tag: tip user: convert-repo date: Mon Nov 16 17:57:06 2009 +0000 summary: update tags changeset: 1147:742e7a01a6c9 parent: 1144:bff259181b22 user: user1 date: Sat Nov 14 17:47:09 2009 +0000 summary: Playing around with fonts to get a cleaner look changeset: 1146:162c1b0dd648 parent: 1144:bff259181b22 user: user1 date: Fri Nov 13 21:12:21 2009 +0000 summary: Playing with new server view changeset: 1145:aa06857832ab user: user1 date: Sat Nov 14 13:54:12 2009 +0000 summary: Updated buttons to something more fitting changeset: 1144:bff259181b22 user: David Mytton &lt;david@mytton.net&gt; date: Fri Nov 13 10:35:51 2009 +0000 summary: Example </code></pre> <p>Given that being the case:</p> <p>a) Am I doing something wrong to import the branches here?</p> <p>b) Can the branches actually be imported?</p> http://stackoverflow.com/questions/1048628/hgignore-syntax-for-ignoring-only-files-not-directories 4 .hgignore syntax for ignoring only files, not directories? Iulian Șerbănoiu 2009-06-26T11:30:40Z 2009-11-16T14:11:55Z <p>Hello,</p> <p>I have a problem which I can't seem to understand. I'm using TortoiseHg (version 0.7.5) on windows but on linux I have the same problem. Here it is:</p> <p>My .hgignore file:</p> <pre><code>syntax: regexp ^[^\\/]+$ </code></pre> <p>What I'm trying to achieve is to add to the ignore list the files which are in the root of the hg repository.</p> <p>For example if I have like this:</p> <pre><code>.hg +mydir1 +mydir2 -myfile1 -myfile2 -anotherfile1 -anotherfile2 .hgignore </code></pre> <p>I want myfile1(2) and anotherfile1(2) to be ignored (names are only for the purpose of this example - they don't have a simple rule that can be put in the hgignore file easily)</p> <p>Is there something I'm missing because I'm pretty sure that regexp is good (I even tested it)? Ideas?</p> <p>Is there a simpler way to achieve this? [to add to the ignore list files that are in the root of the mercurial repository]</p> <p>Thank you,</p> <p>Iulian</p> http://stackoverflow.com/questions/1740896/are-mercurials-bundled-extensions-considered-part-of-its-core-feature-set-and-a 2 Are Mercurial's bundled extensions considered part of it's core feature set and approach to version control? buymeasoda 2009-11-16T08:50:28Z 2009-11-16T09:23:02Z <p>I'm currently trying to evaluate Mercurial, to get a feel for the philosophy the system tries to promote - but one thing that's got me confused is the presence of the bundled 'extensions' and how they fit into the mix. </p> <p>In the core package, Mercurial ships with a bunch of functionality that is implemented as extensions but is disabled by default. (See: <a href="http://mercurial.selenic.com/wiki/UsingExtensions#Extensions%5FBundled%5Fwith%5FMercurial" rel="nofollow">http://mercurial.selenic.com/wiki/UsingExtensions#Extensions_Bundled_with_Mercurial</a>)</p> <p>Here's the thing I'm confused about: </p> <ul> <li><p>Are these extensions considered first class citizens by the Mercurial dev team and therefore part of the overall Mercurial approach to DVCS? </p></li> <li><p>Why are they implemented outside of the default features and disabled by default?</p></li> </ul> <p>I don't need info on how activate extensions, that's pretty straight forward - it's the logic behind the separation that I'm curious about.</p> <p>The reason I'm trying to get my head around this is because I don't really want to try and crowbar an opposing approach into Mercurial via extensions if it differs from the overall philosophy of the project.</p> http://stackoverflow.com/questions/1737407/sync-files-in-two-different-repos-using-hg 0 Sync files in Two Different Repos using HG Tower Joo 2009-11-15T12:19:44Z 2009-11-15T15:55:13Z <p>Hi All:</p> <p>I've got a problem when I try to sync files in two different repos. What I want to do is:</p> <p>I've got 2 repos A and B, and they share some common files, suppose they lie in <strong><em>A/docs/common/</em></strong> and <strong><em>B/docs/common</em></strong>. So when I write some new docs in A and I want to update it to B or vice versa. How can I do?</p> <p>I try this: I write a .hgignore in A to ignore the files I don't want to sync to B, and then try to <strong>hg push B's repo url</strong>. It doesn't work. </p> <p>So how can I do this?</p> <p>Thanks.</p>