Tagged Questions
110
votes
7answers
12k views
Mercurial .hgignore for Visual Studio 2008 projects
What is a good setup for .hgignore file when working with Visual Studio 2008?
I mostly develop on my own, only occasionly I clone the repository for somebody else to work on it.
I'm thinking about ...
49
votes
2answers
4k views
Mercurial .hgignore for Visual Studio 2010 projects
Not to be confused with Mercurial .hgignore for Visual Studio 2008 projects
I was asking whether if that same file can be reused for Visual Studio 2010, or some other extensions, etc should be added ...
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 ...
43
votes
3answers
16k views
Mercurial ignore file
I'm trying to get Mercurial to ignore a configuration file, but I'm failing to get it working.
I have created a repository on my server with hg init and cloned that repository to my computer. I then ...
21
votes
5answers
2k views
How to list all files in a repository in Mercurial (hg)?
Is there a command in mercurial that will list all files currently under source control?
I can do a dir /s to list all files in my folder and subfolders, but I have no idea which have been added to ...
19
votes
5answers
3k views
Is there an ignore-on-commit option in mercurial?
Is there any way to ignore changes to some files on a commit with mercurial?
I've got a specific situation where we have a default oracle tnsnames.ora file that points to 127.0.0.1, but some ...
17
votes
3answers
7k views
ignoring folders in mercurial
Caveat:
I try all the posibilities listed here: http://stackoverflow.com/questions/254002/how-can-i-ignore-everything-under-a-folder-in-mercurial.
None works as I hope.
I want to ignore every thing ...
15
votes
2answers
3k views
hgignore: help ignoring all files but certain ones
I need an .hgdontignore file :-) to include certain files and exclude everything else in a directory. Basically I want to include only the .jar files in a particular directory and nothing else. How ...
11
votes
7answers
830 views
Mercurial: How to ignore changes to a tracked file
I have a file with database settings in my project which I have set to some defaults. The file is tracked by mercurial and checked in. Since this file will be edited with different values various ...
10
votes
2answers
3k views
.hgignore syntax for ignoring only files, not directories?
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:
My .hgignore file:
syntax: regexp
^[^\\/]+$
...
9
votes
5answers
312 views
.hgignore not being parsed for a certain user
I have a project under version control, say, in /project, and .hgignore located at /project/.hgignore. Its syntax seems correct, but the problem is this file is completely ignored for certain users ...
9
votes
1answer
1k views
How to make mercurial ignore all hidden files?
I hate seeing nearly every directory in my repository list each file twice, once with a dot in front of it and once without. I tried adding .* to my .hgignore file, but it has no effect. Is this the ...
8
votes
3answers
2k views
Mercurial ignore-file for Eclipse and Android development
I have seen samples for Mercurial ignore files for Visual Studio, amongst others.
I've just started playing around with Android development, and I also use this time to experimenting with Mercurial. ...
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 ...
8
votes
2answers
1k views
how to allow files starting with period and no extension in windows 2003 server? [closed]
How can I create this file in a directory in windows 2003 SP2:
.hgignore
I get error: You must type a file name.
7
votes
3answers
801 views
Ignore files in Mercurial using Glob syntax
I'm using Mercurial and I have a following structure:
files
test
demo.jpg
video.flv
video.doc
sport
demo2.jpg
picture.jpg
text.txt
demo3.jpg
...
7
votes
2answers
2k views
.hgignore whole directory tree excepting one specific file
Can anyone tell me the .hgignore pattern to track one specific file in a directory and to ignore everything else?
I have a "media" directory which contains a "default.png", for obvious purposes, and ...
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 ...
6
votes
1answer
186 views
Mercurial: Globally Ignore Files
I know about .hgignore and how I can ignore files on a project-by-project basis. I want to ignore stuff for all mercurial repos.
Is there something I can stick in .hgrc? or put a .hgignore in my ...
5
votes
4answers
298 views
Conditional Mercurial Ignore File
I have a file in mercurial that I want dev machines to pull the file, but I want the deployment server to NOT pull the file (it has special mods to it that the dev machines don't have). Is this ...
5
votes
3answers
289 views
Mercurial .hgignore regular expresion
Using Mercurial, I need to ignore all files and directories except directories "tests" and "languages" and files in those directories. That all must be done with regex and .hgignoere
Files:
...
5
votes
2answers
2k views
.hgignore not working for mercurial
I use mercurial for php projects and my .hgignore file is not working. It's supposed to be placed in the .hg/ folder, isn't it?
.hgignore
/.hg/.hgignore file
# Allow *. syntax
syntax:glob
# Ignore ...
5
votes
1answer
375 views
Mercurial .hgignore Negative Lookahead
Using Mercurial, I need to ignore all files except for those in a certain directory called "keepers".
On the face of things, this seemed easy using Regex and Negative Lookahead; however, although I ...
5
votes
7answers
1k views
Is the Mercurial .hgignore my only option for handling hundreds of temp files generated when compiling?
I've been all over google and SO looking for someone who has asked this question, but am coming up completely empty. I'll apologize in advance for the lengthy round-about way of asking the question. ...
4
votes
1answer
54 views
hg - Ignore directory at root only
In my project's .hgignore, I want to exclude /static/ (i.e., the static folder at the root of the directory), but not /templates/static/. How would I configure .hgignore to allow this?
4
votes
1answer
209 views
How to hgignore all subfolders but not the file in a folder?
I am looking to use nuget without committing the packages. I want to ignore in mercurial all packages subfolder that are located in the /packages/ folder, but I do not want to exclude the ...
4
votes
2answers
215 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?
4
votes
7answers
506 views
Mercurial hg status displaying ignored files
Can anyone tell me why mercurial is displaying ignored files for the 'hg status' command?
Here's the confirmation that mercurial is indeed ignoring the files:
$ hg addremove
$ hg commit
nothing ...
4
votes
2answers
288 views
How can I get the equivalent of .hgignore's regular expressions ^var/(?!\log|.dummy) and ^var/log/(?!\.dummy) in .gitignore?
I am converting my Mercurial repository to Git. Part of the file system looks like this:
|-- .gitignore
|-- .hgignore
`-- var
|-- .dummy
|-- asdf
`-- log
|-- .dummy
`-- ...
4
votes
1answer
833 views
Mercurial: a few questions all related to .hgignore
I've been working for a long time with a .hgignore file that was fine and recently added one new type of files to ignore. When running "hg status", I noticed this:
M .hgignore
So Mercurial ...
4
votes
1answer
2k views
mercurial .hgignore - won't ignore files
I'm trying to ignore a file in my project with .hgignore, and just can't figure it out. The file is located in app/views/patterns/_changes.erb (relative to the root of the project, where .hgignore ...
3
votes
2answers
82 views
hgignore multi line regex
I googled a bit, but didn't find any suggestions on that topic. Is multi line regex possible in .hgignore?
I'm writing a magento module, and wan't to include only my module code in repository, so I ...
3
votes
1answer
288 views
What are good default items to add to .hgignore when using Eclipse?
I'm new to using Eclipse (CDT for C++ use) and would like any hints or pointers to a good default set of items to add to my ignore list (e.g. in MS Visual Studio I typically add *.suo, *.ncb, etc.).
3
votes
2answers
579 views
Mercurial .hgignore: Some questions on how to ignore a single file
There's a particular file in my repository, libraries/database.php, that I need ignored. However, I can't get the syntax to recognize the file - I've tried **/libraries/**/database.php and ...
3
votes
1answer
1k views
How to ignore the .classpath for Eclipse projects using Mercurial?
I'm trying to share a repository between my Mac (laptop) and PC (desktop). There are some external dependencies for the project that are stored on different places on each machine, and noted in the ...
3
votes
3answers
619 views
Regex negative look-behind in hgignore file
I'm looking for a way to modify my .hgignore file to ignore all "Properties/AssemblyInfo.cs" files except those in either the "Test/" or the "Tests/" subfolders.
I tried using the negative ...
3
votes
1answer
241 views
.hgignore for VB.Net (Express)?
I didn't see a question on this subject in the archives, so here goes: For those of you experienced Mercurial users, is this a correct .hgignore file to tell VB.Net Express to ignore files/sub-dirs ...
3
votes
3answers
794 views
.hgignore for a CakePHP application?
We're using CakePHP for a new application, and we use Mercurial as the source control tool. (Mercurial uses one .hgignore file in the root directory, unlike (for example) CVS that uses .cvsignore in ...
2
votes
2answers
62 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
1answer
142 views
Global hgignore usage
In my mercurial.ini file, I call a global hgignore file like this:
[ui]
ignore = ~/hgignore.ini
This refers to a hgignore.ini file which is in the same directory as the mercurial.ini file.
Does ...
2
votes
1answer
142 views
Ignore all files except one or more files from a specific file type in Mercurial?
Identical question to gitignore: Ignore all files in folder hierachy except one specific filetype, but for Mercurial.
I want .hgignore to ignore all files except one or more files from a specific ...
2
votes
1answer
75 views
How to ignore .bak files in Mercurial .hgignore
How can I adjust my current .hgingore
syntax: glob
oes
images
*.bak
So that it ignores all .bak files? This isn't working, when I open the commit dialog it still shows a bunch of .php.bak files.
...
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
1answer
84 views
Make .hgignore in a Mercurial repository available to all subrepos?
I have a Mercurial repository with several subrepos. Is there a possibility to only define a general .hgignore-File (e.g. to ignore object-files) both in the main repository and, optionally a ...
2
votes
4answers
115 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
3answers
128 views
How to exclude only the binary files using .hgignore?
I have a directory data-files-dir containing files with the following extensions:
# binary types
.dat
.dat.gz
.csv
# script files
.bat
.yaml
I want to exclude the binary files which contain ...
2
votes
1answer
130 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
1answer
101 views
Mercurial not ignoring files
I've tried multiple ways to block a folder of logs from Mercurial but it continues to be seen by hg status. I have other ignore commands that are being obeyed, but this folder for some reason won't ...
2
votes
1answer
82 views
Mercurial, ignore only object files for which the source is there
I have quite a few objects (.o) files in my (future) Mercurial repository. I have the source for most of them, but some were downloaded / provided by collaborators and I don't have the sources. Of ...
2
votes
2answers
962 views
abort: untracked file in working directory differs from file in requested revision: '.hgignore'
I am trying to pull some files and directories and I am having the following messages:
When I look in my repository I can see that the files have been downloaded but all contains _ as prefix, and ...