On Wed, Oct 02, 2024 at 12:36:24PM +0200, Andrey Albershteyn wrote: > Building xfsprogs seems to produce many build artifacts which are > not tracked by git. Ignore them. > > Signed-off-by: Andrey Albershteyn <aalbersh@xxxxxxxxxx> > --- > > Notes: > Replace ./configure~ with wildcard ./*~ to remove all backup files > which autoconf (or any other tool) can create Seems fine to me... Reviewed-by: Darrick J. Wong <djwong@xxxxxxxxxx> --D > > .gitignore | 12 ++++++++---- > 1 file changed, 8 insertions(+), 4 deletions(-) > > diff --git a/.gitignore b/.gitignore > index fd131b6fde52..756867124a02 100644 > --- a/.gitignore > +++ b/.gitignore > @@ -33,6 +33,7 @@ > /config.status > /config.sub > /configure > +/*~ > > # libtool > /libtool > @@ -69,13 +70,16 @@ cscope.* > /rtcp/xfs_rtcp > /spaceman/xfs_spaceman > /scrub/xfs_scrub > -/scrub/xfs_scrub@.service > /scrub/xfs_scrub_all > -/scrub/xfs_scrub_all.cron > -/scrub/xfs_scrub_all.service > -/scrub/xfs_scrub_fail@.service > +/scrub/xfs_scrub_fail > +/scrub/*.cron > +/scrub/*.service > > # generated crc files > /libfrog/crc32selftest > /libfrog/crc32table.h > /libfrog/gen_crc32table > + > +# docs > +/man/man8/mkfs.xfs.8 > +/man/man8/xfs_scrub_all.8 > -- > 2.44.1 > >