Report information
The Basics
Id:
37773
Status:
resolved
Priority:
Medium/Medium
Queue:

People
BugTracker
Version Fixed:
9.11.0
Version Found:
(no value)
Versions Affected:
(no value)
Versions Planned:
(no value)
Priority:
(no value)
Severity:
(no value)
CVSS Score:
(no value)
CVE ID:
(no value)
Component:
(no value)
Area:
bug

Dates
Created:Mon, 10 Nov 2014 16:09:28 -0500
Updated:Wed, 16 Aug 2017 08:14:24 -0400
Closed:Tue, 11 Nov 2014 01:19:57 -0500



This bug tracker is no longer active.

Please go to our Gitlab to submit issues (both feature requests and bug reports) for active projects maintained by Internet Systems Consortium (ISC).

Due to security and confidentiality requirements, full access is limited to the primary maintainers.

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
Subject: Re: [ISC-Bugs #37773] [PATCH] Update gitignore to ignore several output files
Date: Tue, 11 Nov 2014 11:49:03 +0530
To: Robert Edmonds via RT <bind9-bugs@isc.org>
From: Mukund Sivaraman <muks@isc.org>
Hi Robert On Mon, Nov 10, 2014 at 09:09:29PM +0000, Robert Edmonds via RT wrote: > 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 Thank you for this report. I've now pushed a modified patch to the master branch that should take care of the above. Mukund