From 417ef037d1e2ffafd5af2b87629253b184f77406 Mon Sep 17 00:00:00 2001 From: Zach Butler Date: Fri, 23 Dec 2022 00:05:26 -0500 Subject: [PATCH 1/4] Copy AntelopeIO/cdt:v3.1.0/.gitignore and sort it --- .gitignore | 45 +++++++++++++++++++++++++++++++++++++++++++++ 1 file changed, 45 insertions(+) create mode 100644 .gitignore diff --git a/.gitignore b/.gitignore new file mode 100644 index 00000000..4a8b7441 --- /dev/null +++ b/.gitignore @@ -0,0 +1,45 @@ +# build artifacts +build +cmake-build-debug + +# compiled dynamic libraries +*.dll +*.dylib +*.so + +# compiled object files +*.lo +*.o +*.obj +*.slo + +# compiled static libraries +*.a +*.la +*.lai +*.lib + +# editor files +.ccls-cache +.idea +*.vim +.vscode + +# executables +*.app +*.exe +*.out + +# macOS +.DS_Store + +# precompiled headers +*.gch +*.pch + +# prerequisites +*.d + +# python +__pycache__ +.mypy_cache From 804839e846b2a14130fdc8fe72c9782f8ab0ad4d Mon Sep 17 00:00:00 2001 From: Zach Butler Date: Fri, 23 Dec 2022 00:05:44 -0500 Subject: [PATCH 2/4] Ignore common archive formats --- .gitignore | 7 +++++++ 1 file changed, 7 insertions(+) diff --git a/.gitignore b/.gitignore index 4a8b7441..95be7994 100644 --- a/.gitignore +++ b/.gitignore @@ -1,3 +1,10 @@ +# archives +*.7z +*.tar +*.tar.gz +*.tgz +*.zip + # build artifacts build cmake-build-debug From d3f5eaad81d196a427557f4d9bf83c685e52974f Mon Sep 17 00:00:00 2001 From: Zach Butler Date: Fri, 23 Dec 2022 00:10:33 -0500 Subject: [PATCH 3/4] Ignore log files --- .gitignore | 4 ++++ 1 file changed, 4 insertions(+) diff --git a/.gitignore b/.gitignore index 95be7994..85d14900 100644 --- a/.gitignore +++ b/.gitignore @@ -37,6 +37,10 @@ cmake-build-debug *.exe *.out +# logs +*.log +*.txt + # macOS .DS_Store From 42faf46f5a1ec83b5925e4560e74179c1b4de25c Mon Sep 17 00:00:00 2001 From: Zach Butler Date: Fri, 23 Dec 2022 00:15:34 -0500 Subject: [PATCH 4/4] Ignore common data file types (e.g. outputs of data mining tools, test results, reports, etc.) --- .gitignore | 10 ++++++++++ 1 file changed, 10 insertions(+) diff --git a/.gitignore b/.gitignore index 85d14900..0080cbc1 100644 --- a/.gitignore +++ b/.gitignore @@ -26,6 +26,16 @@ cmake-build-debug *.lai *.lib +# data +*.csv +*.html +*.json +*.tsv +*.xhtml +*.xls +*.xlsx +*.xml + # editor files .ccls-cache .idea