unofficial mirror of guile-devel@gnu.org 
 help / color / mirror / Atom feed
* Stable-2.0 - patch - Do not track html dirs and files
@ 2016-06-25  2:08 David Pirotte
  2016-06-25  9:39 ` Andy Wingo
  0 siblings, 1 reply; 5+ messages in thread
From: David Pirotte @ 2016-06-25  2:08 UTC (permalink / raw)
  To: guile-devel


[-- Attachment #1.1: Type: text/plain, Size: 33 bytes --]

Hello,

	Attached...

David

[-- Warning: decoded text below may be mangled, UTF-8 assumed --]
[-- Attachment #1.2: 0001-Do-not-track-html-dirs-and-files.patch --]
[-- Type: text/x-patch, Size: 533 bytes --]

From af41a51504f548043824013aa532b6516970aee7 Mon Sep 17 00:00:00 2001
From: David Pirotte <david@altosw.be>
Date: Fri, 24 Jun 2016 23:02:33 -0300
Subject: [PATCH] Do not track html dirs and files

* .gitignore:  Do not track html files, nor directories.
---
 .gitignore | 1 +
 1 file changed, 1 insertion(+)

diff --git a/.gitignore b/.gitignore
index 3deeab2..bce9756 100644
--- a/.gitignore
+++ b/.gitignore
@@ -13,6 +13,7 @@ config.status
 config.log
 config.h
 *.doc
+*.html
 *.x
 *.lo
 *.la
-- 
2.8.1


[-- Attachment #2: OpenPGP digital signature --]
[-- Type: application/pgp-signature, Size: 473 bytes --]

^ permalink raw reply related	[flat|nested] 5+ messages in thread

* Re: Stable-2.0 - patch - Do not track html dirs and files
  2016-06-25  2:08 Stable-2.0 - patch - Do not track html dirs and files David Pirotte
@ 2016-06-25  9:39 ` Andy Wingo
  2016-06-25 20:35   ` David Pirotte
  0 siblings, 1 reply; 5+ messages in thread
From: Andy Wingo @ 2016-06-25  9:39 UTC (permalink / raw)
  To: David Pirotte; +Cc: guile-devel

On Sat 25 Jun 2016 04:08, David Pirotte <david@altosw.be> writes:

> diff --git a/.gitignore b/.gitignore
> index 3deeab2..bce9756 100644
> --- a/.gitignore
> +++ b/.gitignore
> @@ -13,6 +13,7 @@ config.status
>  config.log
>  config.h
>  *.doc
> +*.html
>  *.x
>  *.lo
>  *.la

Can you make it more specific please?  I.e. doc/ref/guile.html.

Thanks,

Andy



^ permalink raw reply	[flat|nested] 5+ messages in thread

* Re: Stable-2.0 - patch - Do not track html dirs and files
  2016-06-25  9:39 ` Andy Wingo
@ 2016-06-25 20:35   ` David Pirotte
  2016-06-27  7:34     ` Andy Wingo
  0 siblings, 1 reply; 5+ messages in thread
From: David Pirotte @ 2016-06-25 20:35 UTC (permalink / raw)
  To: Andy Wingo; +Cc: guile-devel


[-- Attachment #1.1: Type: text/plain, Size: 411 bytes --]

Hello Andy,

> > diff --git a/.gitignore b/.gitignore
> > index 3deeab2..bce9756 100644
> > --- a/.gitignore
> > +++ b/.gitignore
> > @@ -13,6 +13,7 @@ config.status
> >  config.log
> >  config.h
> >  *.doc
> > +*.html
> >  *.x
> >  *.lo
> >  *.la  

> Can you make it more specific please?  I.e. doc/ref/guile.html

Is this what you meant ? If so it can be applied to master as well

David

[-- Warning: decoded text below may be mangled, UTF-8 assumed --]
[-- Attachment #1.2: 0001-Do-not-track-r5rs-doc-html-files.patch --]
[-- Type: text/x-patch, Size: 576 bytes --]

From f816389b7164596d448605a3289c6894117e120b Mon Sep 17 00:00:00 2001
From: David Pirotte <david@altosw.be>
Date: Sat, 25 Jun 2016 17:27:36 -0300
Subject: [PATCH] Do not track r5rs doc html files

* doc/r5rs/.gitignore: New file.  We don't track documentation html
  files.
---
 doc/r5rs/.gitignore | 1 +
 1 file changed, 1 insertion(+)
 create mode 100644 doc/r5rs/.gitignore

diff --git a/doc/r5rs/.gitignore b/doc/r5rs/.gitignore
new file mode 100644
index 0000000..3a6b095
--- /dev/null
+++ b/doc/r5rs/.gitignore
@@ -0,0 +1 @@
+r5rs.html
-- 
2.8.1


[-- Attachment #2: OpenPGP digital signature --]
[-- Type: application/pgp-signature, Size: 473 bytes --]

^ permalink raw reply related	[flat|nested] 5+ messages in thread

* Re: Stable-2.0 - patch - Do not track html dirs and files
  2016-06-25 20:35   ` David Pirotte
@ 2016-06-27  7:34     ` Andy Wingo
  2016-06-28  2:16       ` David Pirotte
  0 siblings, 1 reply; 5+ messages in thread
From: Andy Wingo @ 2016-06-27  7:34 UTC (permalink / raw)
  To: David Pirotte; +Cc: guile-devel

On Sat 25 Jun 2016 22:35, David Pirotte <david@altosw.be> writes:

> Hello Andy,
>
>> > diff --git a/.gitignore b/.gitignore
>> > index 3deeab2..bce9756 100644
>> > --- a/.gitignore
>> > +++ b/.gitignore
>> > @@ -13,6 +13,7 @@ config.status
>> >  config.log
>> >  config.h
>> >  *.doc
>> > +*.html
>> >  *.x
>> >  *.lo
>> >  *.la  
>
>> Can you make it more specific please?  I.e. doc/ref/guile.html
>
> Is this what you meant ? If so it can be applied to master as well

No, like /doc/ref/guile.html in the root .gitignore please; see other
similar lines in the root gitignore.

Andy



^ permalink raw reply	[flat|nested] 5+ messages in thread

* Re: Stable-2.0 - patch - Do not track html dirs and files
  2016-06-27  7:34     ` Andy Wingo
@ 2016-06-28  2:16       ` David Pirotte
  0 siblings, 0 replies; 5+ messages in thread
From: David Pirotte @ 2016-06-28  2:16 UTC (permalink / raw)
  To: Andy Wingo; +Cc: guile-devel

[-- Attachment #1: Type: text/plain, Size: 978 bytes --]

Hi Andy,

> >> > diff --git a/.gitignore b/.gitignore
> >> > index 3deeab2..bce9756 100644
> >> > --- a/.gitignore
> >> > +++ b/.gitignore
> >> > @@ -13,6 +13,7 @@ config.status
> >> >  config.log
> >> >  config.h
> >> >  *.doc
> >> > +*.html
> >> >  *.x
> >> >  *.lo
> >> >  *.la    

> >> Can you make it more specific please?  I.e. doc/ref/guile.html  

> > Is this what you meant ? If so it can be applied to master as well  

> No, like /doc/ref/guile.html in the root .gitignore please; see other
> similar lines in the root gitignore.

I'm sorry for so many email for such a tiny patch, but there is no html related entry
in the top level .gitignore :), but instead, a doc/ref/.gitignore ... [which
explains my first and second patch 'offer'].

I can of course move its content to the top level [updating for respective path of
course], remove this file and add an entry for r5rs html doc

Please confirm and I'll do that.

Cheers,
David

[-- Attachment #2: OpenPGP digital signature --]
[-- Type: application/pgp-signature, Size: 473 bytes --]

^ permalink raw reply	[flat|nested] 5+ messages in thread

end of thread, other threads:[~2016-06-28  2:16 UTC | newest]

Thread overview: 5+ messages (download: mbox.gz follow: Atom feed
-- links below jump to the message on this page --
2016-06-25  2:08 Stable-2.0 - patch - Do not track html dirs and files David Pirotte
2016-06-25  9:39 ` Andy Wingo
2016-06-25 20:35   ` David Pirotte
2016-06-27  7:34     ` Andy Wingo
2016-06-28  2:16       ` David Pirotte

This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox;
as well as URLs for read-only IMAP folder(s) and NNTP newsgroup(s).