.gitignore pour Autotools
35 règles d’exclusion pour Autotools, prêtes à copier dans votre dépôt.
Système de construction GNU
Le .gitignore complet pour Autotools
# Generated by LFGitignore - https://lfgitignore.com
# Created: 2026-08-05 01:30:24 UTC
# Technologies: Autotools
### Autotools ###
Makefile.in
/ar-lib
/mdate-sh
/py-compile
/test-driver
/ylwrap
.deps/
.dirstamp
autom4te.cache
/autoscan.log
/autoscan-*.log
/aclocal.m4
/compile
/config.cache
/config.guess
/config.h.in
/config.log
/config.status
/config.sub
/configure
/configure.scan
/depcomp
/install-sh
/missing
/stamp-h1
/libtool
/ltmain.sh
.libs/
/texinfo.tex
m4/libtool.m4
m4/ltoptions.m4
m4/ltsugar.m4
m4/ltversion.m4
m4/lt~obsolete.m4
# Generated makefile
Makefile
Ce que ces règles Autotools ignorent vraiment
Chaque motif ci-dessous, et pourquoi il a sa place dans votre .gitignore.
General
| Motif | Ce qu’il ignore |
|---|---|
Makefile.in |
General |
/ar-lib |
General |
/mdate-sh |
General |
/py-compile |
General |
/test-driver |
General |
/ylwrap |
General |
.deps/ |
General |
.dirstamp |
General |
autom4te.cache |
General |
/autoscan.log |
General |
/autoscan-*.log |
General |
/aclocal.m4 |
General |
/compile |
General |
/config.cache |
General |
/config.guess |
General |
/config.h.in |
General |
/config.log |
General |
/config.status |
General |
/config.sub |
General |
/configure |
General |
/configure.scan |
General |
/depcomp |
General |
/install-sh |
General |
/missing |
General |
/stamp-h1 |
General |
/libtool |
General |
/ltmain.sh |
General |
.libs/ |
General |
/texinfo.tex |
General |
m4/libtool.m4 |
General |
m4/ltoptions.m4 |
General |
m4/ltsugar.m4 |
General |
m4/ltversion.m4 |
General |
m4/lt~obsolete.m4 |
General |
Makefile |
Generated makefile |
Comment utiliser ce .gitignore pour Autotools
- Copiez les règles Autotools ci-dessus, ou téléchargez directement le fichier.
- Créez un fichier nommé .gitignore à la racine de votre dépôt Git et collez-y les règles.
- Si certains de ces fichiers sont déjà suivis, lancez git rm -r --cached . puis recommitez — Git n’applique les règles d’exclusion qu’aux fichiers non suivis.
- Commitez le .gitignore pour que toute l’équipe partage les mêmes règles.