-*- mode: org -*- #+TITLE: configuration git #+DESCRIPTION: documents - structuring, various output representations & search #+FILETAGS: :spine:hub: #+AUTHOR: Ralph Amissah #+EMAIL: [[mailto:ralph.amissah@gmail.com][ralph.amissah@gmail.com]] #+COPYRIGHT: Copyright (C) 2015 - 2024 Ralph Amissah #+LANGUAGE: en #+STARTUP: content hideblocks hidestars noindent entitiespretty #+PROPERTY: header-args :exports code #+PROPERTY: header-args+ :noweb yes #+PROPERTY: header-args+ :results no #+PROPERTY: header-args+ :cache no #+PROPERTY: header-args+ :padline no #+PROPERTY: header-args+ :mkdirp yes #+OPTIONS: H:3 num:nil toc:t \n:t ::t |:t ^:nil -:t f:t *:t * git - spine markup samples ** .gitignore :gitignore: #+HEADER: :tangle "../.gitignore" #+BEGIN_SRC sh # git ls-files --others --exclude-from=.git/info/exclude # git check-ignore -v flake.lock # git clean -ix # find . -name "*_" | xargs rm -rf # find . -name "*.o" | xargs rm -rf ,* !.gitignore !.gitattributes !nix/** !*.nix !flake.lock !nixDevEnv.sh !.envrc !.envrc-local !.envrc-nix !.envrc-git-init !.env !.env/** !README !README.md !COPYRIGHT !CHANGELOG !makefile !version.txt !configuration.txt !*.json !*.sdl !tangle !*.org !org !org/*.org !.dr !.dr/* !markup/ !markup/pod/ !markup/pod/*/ !markup/pod/*/pod.manifest !markup/pod/*/conf/ !markup/pod/*/conf/document_make !markup/pod/*/media/ !markup/pod/*/media/text/ !markup/pod/*/media/text/*/ !markup/pod/*/media/text/*/*.sst !markup/pod/*/media/text/*/*.ssm !markup/pod/*/media/text/*/*.ssi !markup/pod/*/media/image/ !markup/pod/*/media/image/*.png !markup/pod/*/media/image/*.jpg !markup/pod/*/media/image/*.PNG !markup/pod/*/media/image/*.JPG !markup/pod/*/tools/ !markup/pod/*/tools/po4a/ !markup/pod/*/tools/po4a/pot/ !markup/pod/*/tools/po4a/pot/*.sst.pot !markup/pod/*/tools/po4a/pot/*.ssm.pot !markup/pod/*/tools/po4a/pot/*.ssi.pot !markup/pod/*/tools/po4a/po/ !markup/pod/*/tools/po4a/po/*/ !markup/pod/*/tools/po4a/po/*/*.sst.po !markup/pod/*/tools/po4a/po/*/*.ssm.po !markup/pod/*/tools/po4a/po/*/*.ssi.po !markup/pod/.dr !markup/pod/.dr/* !markup/non-pod-samples/ !markup/non-pod-samples/*.sst !markup/non-pod-samples/image/ !markup/non-pod-samples/image/*.png !markup/non-pod-samples/image/*.jpg !markup/non-pod-samples/image/*.PNG !markup/non-pod-samples/image/*.JPG !markup/sisudoc-spine-bespoke-output/ !markup/sisudoc-spine-bespoke-output/** .dub/** ,**/.dub/** tmp/** ,*_.org ,*_.nix ,*_.d ,*_.txt ,*_ !.envrc-local_ ,*.swp ,*~ \#* ,*.\#* #!*/ #\#* #*.\#* #.reggae/** #+END_SRC ** markup/.gitignore (redundant) :gitignore: #+HEADER: :tangle "../markup/.gitignore" #+BEGIN_SRC sh # git ls-files --others --exclude-from=.git/info/exclude # git check-ignore -v flake.lock # git clean -ix # find . -name "*_" | xargs rm -rf # find . -name "*.o" | xargs rm -rf ,* !.gitignore !COPYRIGHT !README !README.md !shell.nix !packages.nix !version.txt !pod/ !pod/.dr/config_local_site # pod.manifest !pod/*/ !pod/*/pod.manifest # conf/document_make !pod/*/conf/ !pod/*/conf/document_make # media/text !pod/*/media/ !pod/*/media/text/ !pod/*/media/text/*/ !pod/*/media/text/*/*.sst !pod/*/media/text/*/*.ssm !pod/*/media/text/*/*.ssi !pod/*/media/text/*/index.html.in # media/image !pod/*/media/image/ !pod/*/media/image/*.png !pod/*/media/image/*.jpg !pod/*/media/image/*.PNG !pod/*/media/image/*.JPG # tools/po4a !pod/*/tools/ !pod/*/tools/Makefile !pod/*/tools/bin/ !pod/*/tools/bin/*.sh !pod/*/tools/po4a/ !pod/*/tools/po4a/pot/ !pod/*/tools/po4a/pot/*.sst.pot !pod/*/tools/po4a/pot/*.ssm.pot !pod/*/tools/po4a/pot/*.ssi.pot !pod/*/tools/po4a/pot/index.html.in.pot !pod/*/tools/po4a/po/ !pod/*/tools/po4a/po/*/ !pod/*/tools/po4a/po/*/*.sst.po !pod/*/tools/po4a/po/*/*.ssm.po !pod/*/tools/po4a/po/*/*.ssi.po !pod/*/tools/po4a/po/*/index.html.in.po !pod/.dr !pod/.dr/* # separate from media/text use tools !pod/*/media/text/Makefile !pod/*/media/text/bin/ !pod/*/media/text/bin/*.sh !pod/*/media/text/pot/ !pod/*/media/text/pot/*.sst.pot !pod/*/media/text/pot/*.ssm.pot !pod/*/media/text/pot/*.ssi.pot !pod/*/media/text/pot/index.html.in.pot !pod/*/media/text/po/ !pod/*/media/text/po/*/ !pod/*/media/text/po/*/*.sst.po !pod/*/media/text/po/*/*.ssm.po !pod/*/media/text/po/*/*.ssi.po !pod/*/media/text/po/*/index.html.in.po !non-pod-samples/ !non-pod-samples/*.sst !non-pod-samples/image/ !non-pod-samples/image/*.png !non-pod-samples/image/*.jpg !non-pod-samples/image/*.PNG !non-pod-samples/image/*.JPG !sisudoc-spine-bespoke-output/ !sisudoc-spine-bespoke-output/** # skip .dub/** tmp/** ,*_.org ,*_.d ,*_.txt ,*_ ,*~ \#* ,*.\#* #+END_SRC ** .gitattributes :gitattributes: #+HEADER: :tangle "../.gitattributes" #+BEGIN_SRC sh /org export-ignore .gitattributes export-ignore /.dub export-ignore /.direnv export-ignore /*_ export-ignore ,*_ export-ignore #.gitignore export-ignore tangle export-ignore flake.lock export-ignore #+END_SRC