I like clean and simple files/code. So, I am using a global .gitignore depending on the machine settings ( IDE &|| OS Specific...). excerpt:

# exclude OSX Files
.DS_Store
# exclude Logfiles
*.log
# exclude Netbeans project files
/nbproject

Netbeans git support is improving and that's ok, but since 7.0 NB it is driving me crazy.

Every time I modify code in my project NB modifies the projects .gitignore as well and adding:

/nbproject

to the gitignore.

How do I stop Netbeans doing this, without deactivating the git support?

link|improve this question
1  
Is this related to code.google.com/p/nbgit/issues/…? – VonC Jul 20 '11 at 11:48
Just a sidenote: The .gitignore is usually versioned and with this line you avoid, that others may commit their workspace files (as long as they use netbeans). I would put /nbproject into .gitignore, but thats not part of this question :) – KingCrunch Jul 20 '11 at 12:30
1  
I don't use Netbeans, but can you just add .gitignore to the .gitignore file? Or do you want the .gitignore to be in the repo because there are project-specific things you want to ignore? – MatrixFrog Jul 21 '11 at 7:53
Sadly, there is no solution (yet). I need a project-specific ignore and dont want to add /nbproject to the repo.. maybe someone will fix that in the future? – dgAlien Jul 21 '11 at 10:07
3  
Don't know much about how apps write to a file but could removing all write perms to the file possibly get the job done? – mohit6up Aug 20 '11 at 1:28
show 1 more comment
feedback

1 Answer

As VonC said, this is an issue with the git module, not with anything you can do (except write a patch)

I recommend you star this issue: http://code.google.com/p/nbgit/issues/detail?id=74

And await a response.

Also, I am not too familiar with the source code, but you could do an inefficient workaround while you wait for a fix:

    private PathPatternList getRepoPatternList() {
        File gitInfoExclude = new File(new File(repo.getDirectory(), "info"), "exclude");
        return getPatternList(gitInfoExclude, "");
    }

Just edit the above with an if(gitInfoExclude==) and then put in the directory exception you want to add.

link|improve this answer
feedback

Your Answer

 
or
required, but never shown

Not the answer you're looking for? Browse other questions tagged or ask your own question.