diff options
author | Steven Vascellaro <S.Vascellaro@gmail.com> | 2016-11-15 17:32:41 -0500 |
---|---|---|
committer | GitHub <noreply@github.com> | 2016-11-15 17:32:41 -0500 |
commit | 7b7cc2f532674219a9f274c9bf524e7e65bba8aa (patch) | |
tree | 129910392ffbf33ef2bedcb414580a37a95cc831 | |
parent | 1a92ca87b787b6a0c68eb10371ebd0bfd823db9b (diff) | |
download | gitignore-7b7cc2f532674219a9f274c9bf524e7e65bba8aa.tar.gz gitignore-7b7cc2f532674219a9f274c9bf524e7e65bba8aa.zip |
Add rule to ignore *.ctxt to Java.gitignore
.ctxt files are generated automatically each time a project is compiled in BlueJ.
-rw-r--r-- | Java.gitignore | 3 |
1 files changed, 3 insertions, 0 deletions
diff --git a/Java.gitignore b/Java.gitignore index 32858aad..e44e0860 100644 --- a/Java.gitignore +++ b/Java.gitignore @@ -1,5 +1,8 @@ *.class +# BlueJ files +*.ctxt + # Mobile Tools for Java (J2ME) .mtj.tmp/ |