Add git metadata to ignore doc output files 85/1385/1
authorLott, Christopher (cl778h) <cl778h@att.com>
Wed, 6 Nov 2019 15:30:50 +0000 (10:30 -0500)
committerLott, Christopher (cl778h) <cl778h@att.com>
Wed, 6 Nov 2019 15:31:06 +0000 (10:31 -0500)
Signed-off-by: Lott, Christopher (cl778h) <cl778h@att.com>
Change-Id: I7fe9f03e3e36d7d0177098cfc6c1d7e15a0c14e0

.gitattributes [new file with mode: 0644]
.gitignore [new file with mode: 0644]

diff --git a/.gitattributes b/.gitattributes
new file mode 100644 (file)
index 0000000..38b6a85
--- /dev/null
@@ -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 (file)
index 0000000..60baa19
--- /dev/null
@@ -0,0 +1,9 @@
+# See http://help.github.com/ignore-files/ for more about ignoring files.
+
+/logs
+/rtp/
+/wrlinux-x/
+
+# documentation
+.tox
+docs/_build/*