Subject: | [PATCH] Update gitignore to ignore several output files |
Date: | Mon, 10 Nov 2014 16:09:21 -0500 |
To: | bind9-bugs@isc.org |
From: | Robert Edmonds <edmonds@fsi.io> |
After building BIND from git, several untracked files are present in the
working tree:
Untracked files:
(use "git add <file>..." to include in what will be committed)
bin/tests/system/builtin/gethostname
doc/xsl/isc-notes-latex.xsl
nothing added to commit but untracked files present (use "git add" to track)
This commit ignores bin/tests/system/builtin/gethostname (it is a
compiled, executable binary) and doc/xsl/isc-notes-latex.xsl (it is
automatically generated by configure from
doc/xsl-isc-notes-latex.xsl.in).
---
bin/tests/system/builtin/.gitignore | 1 +
doc/xsl/.gitignore | 1 +
2 files changed, 2 insertions(+)
create mode 100644 bin/tests/system/builtin/.gitignore
diff --git a/bin/tests/system/builtin/.gitignore b/bin/tests/system/builtin/.gitignore
new file mode 100644
index 0000000..322e0a6
--- /dev/null
+++ b/bin/tests/system/builtin/.gitignore
@@ -0,0 +1 @@
+gethostname
diff --git a/doc/xsl/.gitignore b/doc/xsl/.gitignore
index d5e85fc..36fe975 100644
--- a/doc/xsl/.gitignore
+++ b/doc/xsl/.gitignore
@@ -2,3 +2,4 @@ isc-docbook-chunk.xsl
isc-docbook-html.xsl
isc-docbook-latex.xsl
isc-manpage.xsl
+isc-notes-latex.xsl
--
2.1.1