The .hgignore file is used to configure the Mercurial SCM to ignore specific files or file extensions, excluding them from a repository.
1
vote
2answers
37 views
hg: how to exclude “*.xll” file but not xll directory
In my .hgignore file, I am trying to ignore all generated xll files. I (unfortunately) have a directory called "xll" within the domain of the repository, and I do not want to ignore the directory ...
2
votes
2answers
65 views
How to hg ignore filename with no extension?
Mercurial can be configured to ignore files whose filename have a certain extension. For example, *.txt files can be ignored by adding this to ~/.hgignore:
syntax: glob
*.txt
How can I setup my ...
1
vote
1answer
42 views
mercurial ignore .zip files in whole repository
i am using Mercurial for version controlling. I am trying to ignore zip files in the repository, my hgignore file is in the root directory of project
i got the codes below from ...
1
vote
1answer
90 views
Mercurial hg ignore does not work properly
Situation
$ cat .hgignore
.hgignore
$ hg status
M file1
M file2
M src/project.xml
I don't want to track the project.xml so I run
echo "project.xml" >> .hgignore
and the result is
$ cat ...
0
votes
2answers
73 views
allow child folder in .hgignore
Does anyone know if it is possible to ignore a parent-folder in Mercurial and allow a child-folder to commit.
I have a folder structure like this
www.Project.com
01 – Consultancy
02 – Information ...
0
votes
1answer
48 views
Remove not-matching lines from hgignore
Is there an Mercurial extension that removes lines from .hgignore that aren't matching any files in the local repository.
1
vote
1answer
48 views
Why does TortoiseHg not add packages.config
I use NuGet for package management on my .NET projects and one thing that happens consistently is that the package.config files get ignored for commit unless I explicitly add them. With any other ...
1
vote
0answers
110 views
Why isn't “syntax glob” the default in hgignore? [closed]
Maybe I'm plain wrong but it itches me, in every hgignore I read the first line I see is "syntax: glob", with very, very few "syntax: regexp", is there a reason for this? The regexp syntax should be ...
0
votes
1answer
74 views
What's wrong with this user ignore file for Mercurial?
A little retrospective now that I've settled into Mercurial. Forget forget files combined with hg remove. It's crazy and bass-ackwards. You can use hg remove once you've established that something is ...
0
votes
1answer
39 views
.hgignore website refresh files
My ASP.NET website references refresh files that are being excluded because they reside in the ...\bin\ directory of projects.
What can I add to my .hgignore file to ensure just the ...\bin\*.refresh ...
0
votes
1answer
112 views
how to ignore all files with same extension in directory
I need to fix this part of my .hgignore
win/*.opensdf
win/*.sdf
win/*.suo
win/*.filters
win/*.user
win/*.db3
seems like it doesn't work as it wrote here.
win is at root. And even *.db3 doesn't ...
0
votes
1answer
74 views
.hgignore per branch in mercurial?
Is it possible to have a branch-specific ignore file in mercurial?
It would be handy to have dependencies included in a production branch, but not in a development branch.
0
votes
2answers
76 views
Mercurial [HG] - Get the list of .hgignore excluded files
I use this .hgignore file liberally in my projects, it has proven worthy so far.
However, every once in a while I'd like to do a reality check, to make sure it didn't eat up something valuable.
My ...
0
votes
1answer
124 views
Mercurial .hgignore exlude all files not '.txt' in all subfolders of specified folder
having directory structure
foo
-1.txt
-1.notxt
-bar
-2.txt
-3.notxt
-sub
-1.txt
-2.txt
another-folders-and-files
Want to exclude all non-'.txt' files in folder foo and its ...
4
votes
2answers
100 views
Mercurial selectively hgignore htaccess files
I am using Mercurial for version control, and have an .htaccess file in my web root with rewrite rules that differ depending on whether it's my localhost or my development server, etc. Therefore, I ...
0
votes
1answer
101 views
UDK and Mercurial - hgignore regex
I'm looking at using Mercurial for version control in a project, and was hoping you stackers could help me out with the regex, so that the .hgignore isn't a disgusting GLOB-by mess.
The big ignore ...
0
votes
2answers
54 views
Repository is changed after push on mercurial
When I create repository and push on server and when we clone the repository in local system the files are come with red signal means they are changed.
When we compare both repository I found that ...
3
votes
3answers
191 views
Which files and directories should I ignore when putting my Yii project under version control?
Using the Yii PHP framework with Mercurial as version control.
Which files and directories should I ignore when putting my Yii webapp project under version control (i.e. what to put in .hgignore)?
8
votes
2answers
1k views
Mercurial .hgignore for Visual Studio 2012 projects
I currently use the answer to a similar question for Visual Studio 2010 as my go to hgignore file. Are there any notable additions to include with VS2012?
Below is a compiled list from many ...
0
votes
2answers
234 views
Ignore Mercurial sub directories
I have a directory with my Maven projects in it. It looks like this:
.hg
.idea
parentProject
project1
.idea
docs
src
target
pom.xml
project2
.idea
docs
src
target
...
6
votes
4answers
161 views
How to check which files are being ignored because of .hgignore?
I'm quite often concerned that my hgignore file may be excluding important files. For example I just noticed that I was excluding all .exe files which excluded some little executable tools which ...
1
vote
3answers
131 views
Can't get hgignore to work
I'm trying to make mercurial ignore the "1.txt" file in win7, mercurial 2.3
Why is 1.txt still shown with the "hg status" command here?
\hgtest> dir
Directory: \hgtest
Mode ...
0
votes
0answers
58 views
hg ignore for VC6 projects
What is the best hgignore list for VC6 projects? it's kind of old and I can't google it.
I found there was a list for VS2010 and VS2008, but the project files are totally different.
1
vote
1answer
259 views
Visual Studio 2010, VisualHg, keeps adding bin, obj folders
Everything was working fine for 3 months, now suddenly when I open Visual Studio, it adds all untracked files in the root solution folder to Hg, i.e. bin and obj folders included.
Steps:
Close ...
1
vote
3answers
328 views
Mercurial .hgignore frustration
I have a RE checker that says this should work. What am I doing wrong?!?
Example of what I am trying to ignore:
apps/cms/templates/cms/test_bup_DEPRECATED/widgets/page_link.html
And my .hgignore ...
0
votes
1answer
53 views
AppEngine .hgignore for Mercurial
I'm new to AppEngine and I'm not sure what files are necessary and which are not. Does anyone have a solid .hgignore that works for AppEngine/GWT projects?
0
votes
0answers
45 views
How can I ignore all file except certain files using .hgignore in hg? [duplicate]
actually, in How to let Mercurial ignore every thing except *.cs file? , the method does not work!
Possible Duplicate:
How to let Mercurial ignore every thing except *.cs file?
I'd like ...
1
vote
1answer
227 views
Mercurial .ignore filter assistance [duplicate]
Possible Duplicate:
ignoring folders in mercurial
I'm trying to put together what I thought would be a simple ignore filter, but can't seem to get it working.
I have a /database ...
4
votes
2answers
128 views
Is it possible to use rooted glob patterns in .hgignore?
I prefer to use glob syntax in my .hgignore files, but now I need to create a rooted pattern. I want to ignore my /static directory, but not /assets/static. The line
static/
ignores both. Is ...
0
votes
1answer
107 views
Weird negative lookahead handling in hgignore
Out of a huge source tree, i want just one subfolder be tracked by Mercurial.
specific/component/subfolder
In any decent regex tool (Regex Coach, regexpal.com), the following is absolutely ...
2
votes
2answers
239 views
Prevent a directory from being pushed in mercurial
I created a new repository on my local computer, added files and committed giving me the following structure in my working copy:
-/a
-/b
I want to push my initial commit to a remote repository ...
1
vote
2answers
310 views
.hgignore doesn't work
I created .hgignore file, but before that I sent project structure to server. Now hgignore doesn't work for those files which was sent earlier. I read somewhere that I need to remove those files and ...
3
votes
1answer
204 views
Can't ignore a file in Mercurial Commit (TortoiseHG)
I've been using Mercurial for more than a year. Now, I added a new .Net project to it. I chose to ignore all the BIN / OBJ folders in the Solution folder and everything went well. I used masks to ...
2
votes
2answers
379 views
Mercurial ignore all files except specific file names
I have a large file system in which almost every folder has a file called content.txt
I want to track every file named content.txt and automatically ignore everything else. I want the repo to ...
0
votes
1answer
289 views
Mercurial .hgignore for Visual Studio 11/vNext Projects
Not to be confused with Mercurial .hgignore for Visual Studio 2008 projects and VS 2010 projects.
Visual Studio 11 ("vNext") includes many new features that should probably be excluded from a source ...
0
votes
3answers
79 views
mercurial ignores sites/all/modules in Drupal Multi-site
I'm not going to get into the discussion on how to set up mercurial for a Drupal multi-site installation, but I've run across something that's boggling my mind.
I have a drupal multi-site installation ...
1
vote
2answers
309 views
TortoiseHg won't ignore properly
I'm fairly new to Tortoise Hg, but it seems that what I want to do is possible. In my repository, I have 4 project folders, each of which contains a bin folder. To minimize the size of the push, I'd ...
1
vote
1answer
188 views
Mercurial .hgignore file: is it possible to hide extensions in some directories but not others?
We are using Mercurial for keeping track of a number of linguistic papers. We want to keep our source files in Mercurial. The source files are mostly in XML, but the output file is in PDF. ...
8
votes
1answer
775 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?
1
vote
2answers
404 views
Intellij 11.0.1 seems to be ignoring my .hgignore file
I have the following .hgignore file that should keep Intellij's constantly changing internal config files from polluting our source control.
syntax: glob
.idea/*
target/*
logs/*
out/*
myapp.iml
...
0
votes
1answer
126 views
Honing the .hgignore file using a negative lookahead
I've looked at a handful of the other Hg hgignore file questions, but I haven't been able to get my regex to work.
Imagine these files:
Projects/search.intrasearch/newUI/override/xslt/foo.xsl
...
2
votes
1answer
38 views
Ignore changes to files that are already in repository
Adding files to .hgignore will prevent them from being tracked. But we have some files that we want to be in the repository - we just don't want users to ever commit changes. Is there a way to ignore ...
0
votes
1answer
402 views
mercurial hgignore does not ignore directory
The same question has been asked before but the solutions don't work for me.
I want to instruct Mercurial to ignore a folder named .metadata, by adding it to the .hgignore file. Here is my .hgignore ...
1
vote
2answers
168 views
Mercurial doesn't ignore files in directory I specify
I have mercurial repository. There is .hgignore file:
λ ~/workspace/kompgrafika/nurbs/ cat .hgignore
syntax: regexp
^Makefile
^bin/.*$
CMakeFiles/.*$
^CMakeCache\.txt
^cmake_install\.cmake
There ...
3
votes
2answers
690 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, ...
7
votes
1answer
2k 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 ...
1
vote
2answers
412 views
.hgignore doesn't seem to be working
I have a .hgignore file in my project's root directory and it's not doing squat. When I do an hg add, every single file in my project directory is being added and tracked. I get the same result ...
2
votes
1answer
493 views
Mercurial and xcuserdata, .ds_store, and .git
Mercurial noob here. I'm having a lot of trouble working with mercurial and files like xcuserdata and .ds_store and .git. I'm at my wits end.
The current setup has a central repo that acts like a ...
5
votes
2answers
1k views
GWT .hgignore / .gitignore entries
What are the typical entries in your source control ignore files for a GWT App (developed in eclipse)?
2
votes
2answers
568 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?


