Tagged Questions
3
votes
3answers
185 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)?
0
votes
2answers
228 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
...
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
376 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 ...
1
vote
2answers
167 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 ...
4
votes
2answers
823 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 ...
5
votes
1answer
4k 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 ...
55
votes
3answers
26k 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 ...