27 lines
596 B
Plaintext
27 lines
596 B
Plaintext
# Ignora tutti i file di backup
|
|
*.backup
|
|
|
|
# Ignora tutti i file dentro "backups", ma non la cartella
|
|
backups/*
|
|
!backups/
|
|
|
|
# Ignora tutti i file dentro "hosts-available", ma non la cartella
|
|
hosts-available/*
|
|
!hosts-available/
|
|
|
|
# Ignora tutti i file dentro "hosts-enabled", ma non la cartella
|
|
hosts-enabled/*
|
|
!hosts-enabled/
|
|
|
|
# Ignora tutti i file dentro "hosts-main", ma non la cartella
|
|
hosts-main/*
|
|
!hosts-main/
|
|
|
|
# Ignora tutto dentro "localhost-aliases" tranne 0.lhost e la cartella
|
|
localhost-aliases/*
|
|
!localhost-aliases/0.lhost
|
|
!localhost-aliases/
|
|
|
|
# Incluti tutti i fir .gitkeep
|
|
!**/.gitkeep
|