gitignore: allow gitignore to ignore most dot file

Nowadays, most of the editor use files or directories begin with dot to
store some settings. So let git ignore these files and directories to
reduce potential mistakes.

Add dot match to ignore any editor file and there are two exceptions:
- .gitignore
- .clang-format

Signed-off-by: Inochi Amaoto <inochiama@outlook.com>
Reviewed-by: Bin Meng <bmeng.cn@gmail.com>
Reviewed-by: Anup Patel <anup@brainfault.org>
This commit is contained in:
Inochi Amaoto 2023-08-01 19:41:19 +08:00 committed by Anup Patel
parent c2e602707d
commit f536e0b02e
1 changed files with 7 additions and 1 deletions

8
.gitignore vendored
View File

@ -1,3 +1,10 @@
# ignore anything begin with dot
.*
# exceptions we need even begin with dot
!.clang-format
!.gitignore
# Object files
*.o
*.a
@ -10,4 +17,3 @@ install/
# Development friendly files
tags
cscope*
*.swp