Created
April 12, 2011 19:18
-
-
Save niclashoyer/916194 to your computer and use it in GitHub Desktop.
gitignore for netbeans project that ignores generic configuration files that are generated by netbeans
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
#ant specific | |
dist/ | |
build/ | |
#netbeans specific | |
core | |
nbproject/* | |
!nbproject/project.properties | |
!nbproject/project.xml | |
#java specific | |
*.class | |
#general swap/backup files | |
*.so | |
*.log | |
*.out | |
*~ | |
*.swp | |
*.DS_Store | |
*.lock |
! means not, so those files will show up. That is necessary so that all files in nbproject are ignored except project.properties and project.xml
Donde entraste para configurar esosergiokml
Tools->Options->Team->Versioning
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
Question: Why do you do the following?
!nbproject/project.properties
!nbproject/project.xml
These files are showing up in my repository, but they shouldn't be necessary should they? Yet if I removed them from tracking, Netbeans won't recognize the project even though they are still there. I guess Netbeans only sees what git sees? Very confused n00b here.