├── LICENSE.md ├── README.md ├── emaill2git.py ├── lines_data_prep ├── git_prep.py └── pw_prep.py ├── subject_data_gen ├── git │ └── commit_subject_generator.py └── patchwork │ └── pwSubjectFull.py ├── subject_matching.py ├── validation_tests └── read_test_output.py └── web └── matches_to_files.py /LICENSE.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alexcourouble/email2git/HEAD/LICENSE.md -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alexcourouble/email2git/HEAD/README.md -------------------------------------------------------------------------------- /emaill2git.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alexcourouble/email2git/HEAD/emaill2git.py -------------------------------------------------------------------------------- /lines_data_prep/git_prep.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alexcourouble/email2git/HEAD/lines_data_prep/git_prep.py -------------------------------------------------------------------------------- /lines_data_prep/pw_prep.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alexcourouble/email2git/HEAD/lines_data_prep/pw_prep.py -------------------------------------------------------------------------------- /subject_data_gen/git/commit_subject_generator.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alexcourouble/email2git/HEAD/subject_data_gen/git/commit_subject_generator.py -------------------------------------------------------------------------------- /subject_data_gen/patchwork/pwSubjectFull.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alexcourouble/email2git/HEAD/subject_data_gen/patchwork/pwSubjectFull.py -------------------------------------------------------------------------------- /subject_matching.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alexcourouble/email2git/HEAD/subject_matching.py -------------------------------------------------------------------------------- /validation_tests/read_test_output.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alexcourouble/email2git/HEAD/validation_tests/read_test_output.py -------------------------------------------------------------------------------- /web/matches_to_files.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alexcourouble/email2git/HEAD/web/matches_to_files.py --------------------------------------------------------------------------------