[PATCH] gitignore: add .version as this is generated during a make

2014-07-10 Thread Jacob Keller
Signed-off-by: Jacob Keller jacob.e.kel...@intel.com
---
 .gitignore | 1 +
 1 file changed, 1 insertion(+)

diff --git a/.gitignore b/.gitignore
index e0710ad5b294..098dcdfe1ea7 100644
--- a/.gitignore
+++ b/.gitignore
@@ -1,5 +1,6 @@
 /*.d
 /*.o
+/.version
 /hwstamp_ctl
 /phc2sys
 /pmc
-- 
2.0.1.475.g9b8d714

--
To unsubscribe from this list: send the line unsubscribe git in
the body of a message to majord...@vger.kernel.org
More majordomo info at  http://vger.kernel.org/majordomo-info.html


Re: [PATCH] gitignore: add .version as this is generated during a make

2014-07-10 Thread Jonathan Nieder
Hi,

Jacob Keller wrote:

 Subject: gitignore: add .version as this is generated during a make

What program generates that file?  When I build on a Debian machine, I
get

$ make
[...]
SUBDIR templates
$ ls -la .version
ls: cannot access .version: No such file or directory

Curious,
Jonathan
--
To unsubscribe from this list: send the line unsubscribe git in
the body of a message to majord...@vger.kernel.org
More majordomo info at  http://vger.kernel.org/majordomo-info.html


Re: [PATCH] gitignore: add .version as this is generated during a make

2014-07-10 Thread Junio C Hamano
Jonathan Nieder jrnie...@gmail.com writes:

 Jacob Keller wrote:

 Subject: gitignore: add .version as this is generated during a make

 What program generates that file?  When I build on a Debian machine, I
 get

   $ make
   [...]
   SUBDIR templates
   $ ls -la .version
   ls: cannot access .version: No such file or directory

 Curious,
 Jonathan

We add one for supporting a build from tarball, but I do not recall
writing nor paying attention to a dot-version.
--
To unsubscribe from this list: send the line unsubscribe git in
the body of a message to majord...@vger.kernel.org
More majordomo info at  http://vger.kernel.org/majordomo-info.html


Re: [PATCH] gitignore: add .version as this is generated during a make

2014-07-10 Thread Keller, Jacob E
On Thu, 2014-07-10 at 16:13 -0700, Jonathan Nieder wrote:
 Hi,
 
 Jacob Keller wrote:
 
  Subject: gitignore: add .version as this is generated during a make
 
 What program generates that file?  When I build on a Debian machine, I
 get
 
   $ make
   [...]
   SUBDIR templates
   $ ls -la .version
   ls: cannot access .version: No such file or directory
 
 Curious,
 Jonathan

Sorry I accidentally set these two to the wrong mailing list. These were
meant for the LinuxPTP project. OOPS

Thanks,
Jake