Initial commit: README.org, .gitignore, .gitattributes

This commit is contained in:
kai 2022-11-24 02:46:00 +01:00 committed by Kai Tetzlaff (moka)
commit 531ee60fcf
3 changed files with 73 additions and 0 deletions

36
.gitattributes vendored Normal file
View File

@ -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

34
.gitignore vendored Normal file
View File

@ -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

3
README.org Normal file
View File

@ -0,0 +1,3 @@
#+title: oss-build-scripts
Collection of scripts which help building OSS (Open Source Software) projects.