[Git] 11. Git Ignore

.gitignore

Ignore single file

xxx.log

Ignore ./Logs/xxx.log

Logs/xxx.log

Ignore all *.log in any folder named Logs

/Logs/*.log

Ignore all .log files

*.log
Table of contents
  1. 1. .gitignore
    1. 1.1. Ignore single file
    2. 1.2. Ignore ./Logs/xxx.log
    3. 1.3. Ignore all *.log in any folder named Logs
    4. 1.4. Ignore all .log files