Using Git to work with subversion: Ignoring modifications to tracked files

Posted by Chris Nicola on Stack Overflow See other posts from Stack Overflow or by Chris Nicola
Published on 2010-04-01T18:04:21Z Indexed on 2010/04/01 18:13 UTC
Read the original article Hit count: 333

Filed under:
|
|
|

I am currently working with a subversion repository but I am using git to work locally on my machine. It makes work much easier, but it also makes some of the bad behavior going on in the subversion repo quite glaring and that creates problems for me.

There is a somewhat complex local build process after pulling down the code and it creates (and unfortunately modifies) a number of files. Obviously these changes are not meant to be committed back to the repository. Unfortunately the build process is actually modifying some tracked files (yes, most likely because someone mistakenly committed these build artifacts at some point to the subversion repository). Since these are modifications adding them to my ignore file does nothing for me.

I can avoid checking these changes back it, I simple don't stage or commit them, but having unstaged local changes means I can't rebase without first cleaning them up.

What I would like to know is if there any way to ignore future changes to a set of tracked files? Alternatively, is there another way to handle the problem I am having, or will I just have to tell whoever checked in these files to clean them up?

© Stack Overflow or respective owner

Related posts about git

Related posts about git-svn