Added some .gitignore example lines (#7072)

* Added some .gitignore example lines

* ✏️ Added also .log file extensions
This commit is contained in:
Klaas Schoute 2018-10-25 09:31:59 +02:00 committed by Fabian Affolter
parent 6ffb6a47c8
commit af509b9444

View File

@ -57,10 +57,17 @@ Creating a `.gitignore` file in your repository will tell Git which files NOT to
Here is an example that will ignore everything but your YAML configuration. Here is an example that will ignore everything but your YAML configuration.
```bash ```bash
# Example .gitignore file for your config dir # Example .gitignore file for your config dir. Lines with ! will not be ignored.
* *
!*.yaml !*.yaml
!.gitignore !.gitignore
*.conf
*.txt
*.log
.storage
.cloud
.google.token
ip_bans.yaml
secrets.yaml secrets.yaml
known_devices.yaml known_devices.yaml
``` ```