Skip to content

Commit

Permalink
Update .gitignore
Browse files Browse the repository at this point in the history
* Ignore generated version file
* Add some comments
* Add missing training executable
* Remove two CR at line endings
* Remove googletest (part of the git repository, so cannot be ignored)
* Add test related files

Signed-off-by: Stefan Weil <[email protected]>
  • Loading branch information
stweil committed Apr 23, 2018
1 parent d3f6382 commit 4df706e
Showing 1 changed file with 31 additions and 16 deletions.
47 changes: 31 additions & 16 deletions .gitignore
Original file line number Diff line number Diff line change
@@ -39,18 +39,25 @@ config_auto.h
/doc/*.5
/doc/*.html
/doc/*.xml
api/tesseract
training/ambiguous_words
training/classifier_tester
training/cntraining
training/combine_tessdata
training/dawg2wordlist
training/mftraining
training/set_unicharset_properties
training/shapeclustering
training/text2image
training/unicharset_extractor
training/wordlist2dawg

# generated version file
/api/tess_version.h

# executables
/api/tesseract
/training/ambiguous_words
/training/classifier_tester
/training/cntraining
/training/combine_tessdata
/training/dawg2wordlist
/training/merge_unicharsets
/training/mftraining
/training/set_unicharset_properties
/training/shapeclustering
/training/text2image
/training/unicharset_extractor
/training/wordlist2dawg

*.patch

# files generated by libtool
@@ -86,9 +93,17 @@ kernel*.bin
/*.lib
/*.exe
/*.lnk
/win*
.vs*
/win*
.vs*
.s*

# GoogleTest
googletest
# files generated by "make check"
/tests/.dirstamp
/unittest/*.trs

# test programs
/unittest/apiexample_test
/unittest/intsimdmatrix_test
/unittest/matrix_test
/unittest/osd_test
/unittest/tesseracttests

0 comments on commit 4df706e

Please sign in to comment.