Tagged Questions

45
votes
5answers
11k views

How can I ignore everything under a folder in Mercurial

I am looking for an expression for the .hgignore file, to ignore all files beneath a specified folder. eg: I would like to ignore all files and folders beneath bin Actually any advice on how the ...
8
votes
2answers
779 views

hg local ignore

I could have sworn there was a way to keep a local ignore file in an hg repo, i.e. a file similar in function to .hgignore, but not checked into the repo. This could be used to ignore changes to an ...
7
votes
3answers
3k views

How to let Mercurial ignore every thing except *.cs file?

I started a project and added it to Mercurial. But I want to take *.cs file under version control only. So I have to add bin, obj, sln, suo, _resharper folder etc to ignore pattern. How to let Hg ...
4
votes
2answers
211 views

How do I ignore .hgignore in my local repository?

.hgignore itself is version controlled. I've added some object dirs i want to ignore but i do not want to commit these changes to .hgignore. What do i do?
2
votes
2answers
60 views

Mercurial gives “invalid pattern” error for simple GLOB syntax

I have the following in my .hgignore file: syntax: glob obj/* bin/* *.suo *.user *.ncb If I comment out the *. filters, the filtering works fine filtering out the files in the bin and obj folder, ...
2
votes
5answers
59 views

Mercurial Prevent file from changing [closed]

Possible Duplicate: Mercurial: How to ignore changes to a tracked file I work on a team that uses Mercurial and we have a config file that is checked in and is stable. Being that it's a ...
2
votes
4answers
114 views

Constantly Merging .hgignore in Mercurial

This is a process question, so there may be more than one right answer. I'll take anything over what I have now, though. My team has recently switched to using Mercurial (from Subversion) and for the ...
2
votes
1answer
129 views

hg branches and hg forget

In the early stages of one of my projects the person I was working with added their entire elipse workspace to our mercurial repository. After I updated the .hgignore file to prevent this from ...
2
votes
2answers
465 views

What grails project files should not be added to version control? (Grails 1.3.x)

(This question has been asked before, but a while back: Suggestions for Grails .gitignore; it was answered for grails 1.0.x) What files in a Grails 1.3.x project should not be included in version ...
1
vote
2answers
91 views

How to hg forget what .hgignore lists?

I've tracked files I no longer want to track. So I've updated .hgignore but that doesn't result in them being forgotten. Other than manually hg forget each do I have other options?
1
vote
1answer
337 views

Interconversion of gitignore and hgignore?

I'm just starting to use hg-git to push some mercurial repositories to github, and I'm realizing that if people check them out using git, they'll need a .gitignore file in the repository. Is there any ...