mirror of
https://github.com/home-assistant/home-assistant.io.git
synced 2025-07-23 17:27:19 +00:00
Added some .gitignore example lines (#7072)
* Added some .gitignore example lines
* ✏️ Added also .log file extensions
This commit is contained in:
parent
6ffb6a47c8
commit
af509b9444
@ -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
|
||||||
```
|
```
|
||||||
|
Loading…
x
Reference in New Issue
Block a user