Commit 993b59adf13c9830ae0c45f5a35358de9ce89e74

Authored by Herik dos Santos Lorenção
2 parents ec449e6a abdf3338
Exists in master

Merge branch 'master' of ssh://git.ci.ifes.edu.br:2222/20171SI010/2020-Herik-SRH

Showing 1 changed file with 39 additions and 0 deletions   Show diff stats
codigos/backend/.gitignore 0 → 100644
... ... @@ -0,0 +1,39 @@
  1 +# Created by https://www.gitignore.io/api/java,netbeans
  2 +# Edit at https://www.gitignore.io/?templates=java,netbeans
  3 +
  4 +### Java ###
  5 +# Compiled class file
  6 +*.class
  7 +
  8 +# Log file
  9 +*.log
  10 +
  11 +# BlueJ files
  12 +*.ctxt
  13 +
  14 +# Mobile Tools for Java (J2ME)
  15 +.mtj.tmp/
  16 +
  17 +# Package Files #
  18 +*.jar
  19 +*.war
  20 +*.nar
  21 +*.ear
  22 +*.zip
  23 +*.tar.gz
  24 +*.rar
  25 +
  26 +# virtual machine crash logs, see http://www.java.com/en/download/help/error_hotspot.xml
  27 +hs_err_pid*
  28 +
  29 +### NetBeans ###
  30 +**/nbproject/private/
  31 +**/nbproject/Makefile-*.mk
  32 +**/nbproject/Package-*.bash
  33 +build/
  34 +nbbuild/
  35 +dist/
  36 +nbdist/
  37 +.nb-gradle/
  38 +
  39 +# End of https://www.gitignore.io/api/java,netbeans
... ...