0
votes
1answer
51 views

Commit or discard the changes and try again

I got a problem when I wanted to push source code to remote control. But xcuserstate file was always changed, and Git announce "Commit or discard the changes and try again". So I tried to ignore ...
2
votes
3answers
60 views

How to except a file/folder from versioning, but keep it in the repository in Git?

With git rm <file> a file can be deleted locally, removed from the versioning, and deleted on the repository. git rm --cached <file> does nearly the same, but keeps the file in the local ...
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)?
3
votes
1answer
203 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 ...
4
votes
2answers
83 views

how to deal with local/dev only code using git

if i have some local debug code or a development web services ip in my sources that i want to keep medium to long term locally, but don't want it in my git repo, what is the best way to accomplish ...
0
votes
4answers
387 views

Ignore a directory in SVN

We use SVN for a giant server of design assets at my job. I like to keep the root of our server checked out, so I can get organizational updates to the directory hierarchy as they're made. But their ...
1
vote
2answers
2k views

Subversion svn:ignore after a commit - files are not iggnore

I've been trying to ignore particular files and directories in order to prevent local modifications being submitted to repository. The problem I am having is that once a file has been committed to a ...
3
votes
4answers
2k views

Problem with TortoiseSVN Global Ignore pattern for a Visual Studio project

I'm running.... TortoiseSVN 1.6.11, Build 20210 - 64 Bit Windows 7 64 Bit Visual Studio 2008 I've created a repository, done an SVN Checkout, and created a new VS solution with a new project. ...
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 ...
12
votes
2answers
2k views

How do I configure BeyondCompare to ignore SCM replaced text in comments?

I do have some text sequences that are replaced by the SCM (Perforce in my case). I do want to configure BeyondCompare to consider these sequences as unimportant differences in order to be able to ...
36
votes
12answers
21k views

SVN: Ignore some directories recursively

I don't want any directory named build or dist to go into my SVN no matter how deep in the tree it is. Is this possible? In git I just put build dist in my .gitignore at the root and it ...
2
votes
3answers
573 views

Subversion: Ignore a Directory in the Repo on Commit

I have all the boost header files in this repository and when I do a check in it takes a really long time to scan all those files that will never change. Because I want users that checkout the project ...
5
votes
4answers
6k views

ClearCase and Eclipse: How to hide/ignore files?

I'm working with Eclipse and ClearCase and we're facing the problem that there's no "ignore"-feature in ClearCase and we're having regularly checked-in files that shouldn't have been checked in. In ...
5
votes
5answers
4k views

Ignore client generated files in Perforce workspace view

Is there a way to have Perforce ignore new files in a client workspace in the workspace view? I have 120 java files that generate over 700 class files, so managing these files in a single folder ...
5
votes
1answer
314 views

Get Emacs to ignore *.orig files

I end up having a bunch of *.orig files sitting around, from hg reverts. It's annoying when I find myself editing foo.c.orig instead of foo.c by mistake. (I use ido-mode and the first match is not ...
28
votes
6answers
15k views

git, don't show me *.pyc in the list of untracked files!

When doing: >git status It shows a big list of .pyc files under "untracked files". I don't want it to show these, as it adds noise. In other words, how do I make git ignore .pyc files all the ...
291
votes
15answers
49k views

Should I add the Visual Studio .suo and .user files to source control

Visual Studio solutions contain two types of hidden user files. One is the solution .suo file which is a binary file. The other is the project .user file which is a text file. Does anyone know ...
60
votes
11answers
19k views

Can you “ignore” a file in Perforce?

I sometimes use the feature 'Reconcile Offline Work...' found in Perforce's P4V IDE to sync up any files that I have been working on while disconnected from the P4 depot. It launches another window ...
9
votes
4answers
4k views

Ignore SVN ignore… possible?

So I have some files I want to ignore in a subversion repository, but I don't want my ignore patterns for this to be propagated to the repository. In other words, I added some private files in my ...