From 531ee60fcfa2303b517d7e4922e694a189157dd0 Mon Sep 17 00:00:00 2001 From: kai Date: Thu, 24 Nov 2022 02:46:00 +0100 Subject: [PATCH] Initial commit: README.org, .gitignore, .gitattributes --- .gitattributes | 36 ++++++++++++++++++++++++++++++++++++ .gitignore | 34 ++++++++++++++++++++++++++++++++++ README.org | 3 +++ 3 files changed, 73 insertions(+) create mode 100644 .gitattributes create mode 100644 .gitignore create mode 100644 README.org diff --git a/.gitattributes b/.gitattributes new file mode 100644 index 0000000..420d9a2 --- /dev/null +++ b/.gitattributes @@ -0,0 +1,36 @@ +# .gitattributes +# See http://git-scm.com/book/en/v2/Customizing-Git-Git-Attributes + +# default EOL behavior: use LF in repo, normalize (convert to native) during +# checkout +* text=auto + +# text files that shall always have LF EOLs +*.sh text eol=lf +*.bash text eol=lf + +# text files that shall always have CRLF EOLs +*.bat text eol=crlf +*.cmd text eol=crlf +*.btm text eol=crlf +*.ps1 text eol=crlf + +# binary files +*.tar binary +*.zip binary +*.rar binary +*.gz binary +*.bz2 binary +*.xz binary + +*.deb binary +*.rpm binary +*.jar binary +*.whl binary + +*.png binary +*.jpg binary +*.jpeg binary + +# diff/merge helper for gpg files +*.gpg diff=gpg diff --git a/.gitignore b/.gitignore new file mode 100644 index 0000000..c98ece3 --- /dev/null +++ b/.gitignore @@ -0,0 +1,34 @@ +# ignore typical backup files +*~ +\#* +~$* +.#* +*.bak +*.orig + +# ignore MacOS generated files +.DS_Store + +# ignore log files and logs directories +*.log +logs/ + +# CLion ignores +/.idea/ +/.clion.source.upload.marker + +# ignore local pipenv virtualenv (mainly for CI with PIPENV_VENV_IN_PROJECT=1) +/.venv/ + +# ignore .cache dir (mainly for CI with PIP_CACHE_DIR=.cache/pip, +# PIPENV_CACHE_DIR=.cache/pipenv) +/.cache/ + +# ignore Python cache files +__pycache__/ +*.pyc + +# archives in repo root +/*.tar +/*.tar.* +/*.zip diff --git a/README.org b/README.org new file mode 100644 index 0000000..68b0b4e --- /dev/null +++ b/README.org @@ -0,0 +1,3 @@ +#+title: oss-build-scripts + +Collection of scripts which help building OSS (Open Source Software) projects.