public inbox for linux-rt-users@vger.kernel.org
 help / color / mirror / Atom feed
* [PATCH rt-tests] gitignore: add librttest.a to git ignore
@ 2012-10-18 16:23 Josh Cartwright
  2012-10-18 16:32 ` John Kacur
  0 siblings, 1 reply; 3+ messages in thread
From: Josh Cartwright @ 2012-10-18 16:23 UTC (permalink / raw)
  To: Clark Williams; +Cc: John Kacur, linux-rt-users

Commit fb7ef61416b6b191a5186a715e51792847de883c introduced librttest.a
as a library, but did not add it to .gitignore.  Add it now.

Signed-off-by: Josh Cartwright <josh.cartwright@ni.com>
---
 .gitignore | 1 +
 1 file changed, 1 insertion(+)

diff --git a/.gitignore b/.gitignore
index 047925c..f7ba1d0 100644
--- a/.gitignore
+++ b/.gitignore
@@ -27,6 +27,7 @@ SRPMS
 /pip_stress
 /hackbench
 /pmqtest
+librttest.a
 
 rt-tests.spec
 tags
-- 
1.7.12.3

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

* Re: [PATCH rt-tests] gitignore: add librttest.a to git ignore
  2012-10-18 16:23 [PATCH rt-tests] gitignore: add librttest.a to git ignore Josh Cartwright
@ 2012-10-18 16:32 ` John Kacur
  2012-10-18 17:13   ` Josh Cartwright
  0 siblings, 1 reply; 3+ messages in thread
From: John Kacur @ 2012-10-18 16:32 UTC (permalink / raw)
  To: Josh Cartwright; +Cc: Clark Williams, John Kacur, linux-rt-users



On Thu, 18 Oct 2012, Josh Cartwright wrote:

> Commit fb7ef61416b6b191a5186a715e51792847de883c introduced librttest.a
> as a library, but did not add it to .gitignore.  Add it now.
> 
> Signed-off-by: Josh Cartwright <josh.cartwright@ni.com>
> ---
>  .gitignore | 1 +
>  1 file changed, 1 insertion(+)
> 
> diff --git a/.gitignore b/.gitignore
> index 047925c..f7ba1d0 100644
> --- a/.gitignore
> +++ b/.gitignore
> @@ -27,6 +27,7 @@ SRPMS
>  /pip_stress
>  /hackbench
>  /pmqtest
> +librttest.a
>  
>  rt-tests.spec
>  tags
> -- 
> 1.7.12.3
> --

Oh, thanks, but I already have the following queued up for the next 
release

commit d63f567c646e07da87d9ce3cce5e5add74c97e16
Author: John Kacur <jkacur@redhat.com>
Date:   Wed May 9 17:32:11 2012 +0200

    rt-tests / gitignore: Exclude patches and .a libs too.
    
    Minor fix to make working with git nicer.
    Now that we're building a lib, we need to exclude it from git status output.
    Do the same for patches we generate or apply.
    
    Signed-off-by: John Kacur <jkacur@redhat.com>

diff --git a/.gitignore b/.gitignore
index 047925c..1924e73 100644
--- a/.gitignore
+++ b/.gitignore
@@ -3,6 +3,8 @@
 *.o
 *.tar.gz
 *.d
+*.patch
+*.a
 tmp
 patches
 ChangeLog

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

* Re: [PATCH rt-tests] gitignore: add librttest.a to git ignore
  2012-10-18 16:32 ` John Kacur
@ 2012-10-18 17:13   ` Josh Cartwright
  0 siblings, 0 replies; 3+ messages in thread
From: Josh Cartwright @ 2012-10-18 17:13 UTC (permalink / raw)
  To: John Kacur; +Cc: Clark Williams, linux-rt-users

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

On Thu, Oct 18, 2012 at 12:32:19PM -0400, John Kacur wrote:
> On Thu, 18 Oct 2012, Josh Cartwright wrote:
> 
> > Commit fb7ef61416b6b191a5186a715e51792847de883c introduced librttest.a
> > as a library, but did not add it to .gitignore.  Add it now.
> > 
> > Signed-off-by: Josh Cartwright <josh.cartwright@ni.com>
> > ---
> >  .gitignore | 1 +
> >  1 file changed, 1 insertion(+)
> > 
> > diff --git a/.gitignore b/.gitignore
> > index 047925c..f7ba1d0 100644
> > --- a/.gitignore
> > +++ b/.gitignore
> > @@ -27,6 +27,7 @@ SRPMS
> >  /pip_stress
> >  /hackbench
> >  /pmqtest
> > +librttest.a
> >  
> >  rt-tests.spec
> >  tags
> > -- 
> > 1.7.12.3
> > --
> 
> Oh, thanks, but I already have the following queued up for the next 
> release
> 
> commit d63f567c646e07da87d9ce3cce5e5add74c97e16
> Author: John Kacur <jkacur@redhat.com>
> Date:   Wed May 9 17:32:11 2012 +0200
> 
>     rt-tests / gitignore: Exclude patches and .a libs too.
>     
>     Minor fix to make working with git nicer.
>     Now that we're building a lib, we need to exclude it from git status output.
>     Do the same for patches we generate or apply.
>     
>     Signed-off-by: John Kacur <jkacur@redhat.com>
> 
> diff --git a/.gitignore b/.gitignore
> index 047925c..1924e73 100644
> --- a/.gitignore
> +++ b/.gitignore
> @@ -3,6 +3,8 @@
>  *.o
>  *.tar.gz
>  *.d
> +*.patch
> +*.a

That works, too.  Thanks, John.

  Josh

[-- Attachment #2: Type: application/pgp-signature, Size: 836 bytes --]

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

end of thread, other threads:[~2012-10-18 17:26 UTC | newest]

Thread overview: 3+ messages (download: mbox.gz follow: Atom feed
-- links below jump to the message on this page --
2012-10-18 16:23 [PATCH rt-tests] gitignore: add librttest.a to git ignore Josh Cartwright
2012-10-18 16:32 ` John Kacur
2012-10-18 17:13   ` Josh Cartwright

This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox