From: Philippe Gerum <rpm@xenomai.org>
To: Niklaus Giger <niklaus.giger@domain.hid>
Cc: xenomai-core <xenomai@xenomai.org>
Subject: Re: [Xenomai-core] [PATCH] Adding some .gitignore
Date: Fri, 26 Sep 2008 10:38:42 +0200 [thread overview]
Message-ID: <48DC9F92.2050401@domain.hid> (raw)
In-Reply-To: <200809222151.46401.niklaus.giger@domain.hid>
Niklaus Giger wrote:
> After a ./configure in my git clone, git status cluttered my screen withe a lot
> of uninteresting files. In order to get rid of them I created the attached
> .gitignore files.
>
Merged, thanks.
> Signed-off-by: Niklaus Giger <niklaus.giger@domain.hid>
>
> ---
> .gitignore | 47
> ++++++++++++++++++++++++++++++++++++++++++
> base/.gitignore | 8 +++++++
> config/.gitignore | 9 ++++++++
> include/.gitignore | 8 +++++++
> include/psos/.gitignore | 8 +++++++
> include/vxworks/.gitignore | 8 +++++++
> include/xenomai/.gitignore | 8 +++++++
> psos/.gitignore | 8 +++++++
> scripts/.gitignore | 9 ++++++++
> vxworks/.gitignore | 8 +++++++
> vxworks/testsuite/.gitignore | 10 +++++++++
> 11 files changed, 131 insertions(+), 0 deletions(-)
> create mode 100644 .gitignore
> create mode 100644 base/.gitignore
> create mode 100644 config/.gitignore
> create mode 100644 include/.gitignore
> create mode 100644 include/psos/.gitignore
> create mode 100644 include/vxworks/.gitignore
> create mode 100644 include/xenomai/.gitignore
> create mode 100644 psos/.gitignore
> create mode 100644 scripts/.gitignore
> create mode 100644 vxworks/.gitignore
> create mode 100644 vxworks/testsuite/.gitignore
>
> diff --git a/.gitignore b/.gitignore
> new file mode 100644
> index 0000000..af911eb
> --- /dev/null
> +++ b/.gitignore
> @@ -0,0 +1,47 @@
> +#
> +# NOTE! Don't add files that are generated in specific
> +# subdirectories here. Add them in the ".gitignore" file
> +# in that subdirectory instead.
> +#
> +# Normal rules
> +#
> +
> +*.rej
> +*.orig
> +*.a
> +*.o
> +*~
> +*.la
> +*.lo
> +
> +#
> +# Top-level generic files
> +#
> +
> +#
> +# Generated files
> +#
> +/conf2*
> +*.depend
> +.deps
> +.libs
> +*.lineno
> +libtool
> +config.log
> +/Makefile
> +stamp-h1
> +xeno_config.h
> +config.status
> +
> +# for output of format-patch
> +00*
> +
> +# stgit generated dirs
> +patches-*
> +
> +# quilt's files
> +patches
> +series
> +
> +# cscope files
> +cscope.*
> diff --git a/base/.gitignore b/base/.gitignore
> new file mode 100644
> index 0000000..13daaa8
> --- /dev/null
> +++ b/base/.gitignore
> @@ -0,0 +1,8 @@
> +#
> +# NOTE! Don't add files that are generated in specific
> +# subdirectories here. Add them in the ".gitignore" file
> +# in that subdirectory instead.
> +#
> +# Generated files
> +#
> +/Makefile
> diff --git a/config/.gitignore b/config/.gitignore
> new file mode 100644
> index 0000000..e96352c
> --- /dev/null
> +++ b/config/.gitignore
> @@ -0,0 +1,9 @@
> +#
> +# NOTE! Don't add files that are generated in specific
> +# subdirectories here. Add them in the ".gitignore" file
> +# in that subdirectory instead.
> +#
> +# Generated files
> +#
> +/Makefile
> +*.lineno
> diff --git a/include/.gitignore b/include/.gitignore
> new file mode 100644
> index 0000000..13daaa8
> --- /dev/null
> +++ b/include/.gitignore
> @@ -0,0 +1,8 @@
> +#
> +# NOTE! Don't add files that are generated in specific
> +# subdirectories here. Add them in the ".gitignore" file
> +# in that subdirectory instead.
> +#
> +# Generated files
> +#
> +/Makefile
> diff --git a/include/psos/.gitignore b/include/psos/.gitignore
> new file mode 100644
> index 0000000..13daaa8
> --- /dev/null
> +++ b/include/psos/.gitignore
> @@ -0,0 +1,8 @@
> +#
> +# NOTE! Don't add files that are generated in specific
> +# subdirectories here. Add them in the ".gitignore" file
> +# in that subdirectory instead.
> +#
> +# Generated files
> +#
> +/Makefile
> diff --git a/include/vxworks/.gitignore b/include/vxworks/.gitignore
> new file mode 100644
> index 0000000..13daaa8
> --- /dev/null
> +++ b/include/vxworks/.gitignore
> @@ -0,0 +1,8 @@
> +#
> +# NOTE! Don't add files that are generated in specific
> +# subdirectories here. Add them in the ".gitignore" file
> +# in that subdirectory instead.
> +#
> +# Generated files
> +#
> +/Makefile
> diff --git a/include/xenomai/.gitignore b/include/xenomai/.gitignore
> new file mode 100644
> index 0000000..13daaa8
> --- /dev/null
> +++ b/include/xenomai/.gitignore
> @@ -0,0 +1,8 @@
> +#
> +# NOTE! Don't add files that are generated in specific
> +# subdirectories here. Add them in the ".gitignore" file
> +# in that subdirectory instead.
> +#
> +# Generated files
> +#
> +/Makefile
> diff --git a/psos/.gitignore b/psos/.gitignore
> new file mode 100644
> index 0000000..13daaa8
> --- /dev/null
> +++ b/psos/.gitignore
> @@ -0,0 +1,8 @@
> +#
> +# NOTE! Don't add files that are generated in specific
> +# subdirectories here. Add them in the ".gitignore" file
> +# in that subdirectory instead.
> +#
> +# Generated files
> +#
> +/Makefile
> diff --git a/scripts/.gitignore b/scripts/.gitignore
> new file mode 100644
> index 0000000..d618ccb
> --- /dev/null
> +++ b/scripts/.gitignore
> @@ -0,0 +1,9 @@
> +#
> +# NOTE! Don't add files that are generated in specific
> +# subdirectories here. Add them in the ".gitignore" file
> +# in that subdirectory instead.
> +#
> +# Generated files
> +#
> +/Makefile
> +xeno-config
> diff --git a/vxworks/.gitignore b/vxworks/.gitignore
> new file mode 100644
> index 0000000..13daaa8
> --- /dev/null
> +++ b/vxworks/.gitignore
> @@ -0,0 +1,8 @@
> +#
> +# NOTE! Don't add files that are generated in specific
> +# subdirectories here. Add them in the ".gitignore" file
> +# in that subdirectory instead.
> +#
> +# Generated files
> +#
> +/Makefile
> diff --git a/vxworks/testsuite/.gitignore b/vxworks/testsuite/.gitignore
> new file mode 100644
> index 0000000..089bf31
> --- /dev/null
> +++ b/vxworks/testsuite/.gitignore
> @@ -0,0 +1,10 @@
> +msgQ-1
> +msgQ-2
> +msgQ-3
> +sem-1
> +sem-2
> +sem-3
> +task-1
> +task-2
> +wd-1
> +
--
Philippe.
prev parent reply other threads:[~2008-09-26 8:38 UTC|newest]
Thread overview: 2+ messages / expand[flat|nested] mbox.gz Atom feed top
2008-09-22 19:51 [Xenomai-core] [PATCH] Adding some .gitignore Niklaus Giger
2008-09-26 8:38 ` Philippe Gerum [this message]
Reply instructions:
You may reply publicly to this message via plain-text email
using any one of the following methods:
* Save the following mbox file, import it into your mail client,
and reply-to-all from there: mbox
Avoid top-posting and favor interleaved quoting:
https://en.wikipedia.org/wiki/Posting_style#Interleaved_style
* Reply using the --to, --cc, and --in-reply-to
switches of git-send-email(1):
git send-email \
--in-reply-to=48DC9F92.2050401@domain.hid \
--to=rpm@xenomai.org \
--cc=niklaus.giger@domain.hid \
--cc=xenomai@xenomai.org \
/path/to/YOUR_REPLY
https://kernel.org/pub/software/scm/git/docs/git-send-email.html
* If your mail client supports setting the In-Reply-To header
via mailto: links, try the mailto: link
Be sure your reply has a Subject: header at the top and a blank line
before the message body.
This is an external index of several public inboxes,
see mirroring instructions on how to clone and mirror
all data and code used by this external index.