From 722fa381d24393b30c8b4f72cbaa01334dd89cb3 Mon Sep 17 00:00:00 2001 From: "Lott, Christopher (cl778h)" Date: Wed, 6 Nov 2019 10:30:50 -0500 Subject: [PATCH 1/1] Add git metadata to ignore doc output files Signed-off-by: Lott, Christopher (cl778h) Change-Id: I7fe9f03e3e36d7d0177098cfc6c1d7e15a0c14e0 --- .gitattributes | 21 +++++++++++++++++++++ .gitignore | 9 +++++++++ 2 files changed, 30 insertions(+) create mode 100644 .gitattributes create mode 100644 .gitignore diff --git a/.gitattributes b/.gitattributes new file mode 100644 index 0000000..38b6a85 --- /dev/null +++ b/.gitattributes @@ -0,0 +1,21 @@ +# https://help.github.com/articles/dealing-with-line-endings/ + +# Set the default behavior, in case people don't have core.autocrlf set. +* text=auto + +# Explicitly declare text files you want to always be normalized +# and converted to native line endings on checkout. +*.css text +*.htm text diff=html +*.html text diff=html +*.java text diff=java +*.js text +*.jsp text +*.less text +*.properties text +*.sql text +*.xml text + +# Denote all files that are truly binary and should not be modified. +*.png binary +*.jpg binary diff --git a/.gitignore b/.gitignore new file mode 100644 index 0000000..60baa19 --- /dev/null +++ b/.gitignore @@ -0,0 +1,9 @@ +# See http://help.github.com/ignore-files/ for more about ignoring files. + +/logs +/rtp/ +/wrlinux-x/ + +# documentation +.tox +docs/_build/* -- 2.16.6