Skip to content

Commit

Permalink
.gitignore: Ignore all dot files and folders except the standard ones
Browse files Browse the repository at this point in the history
Improve the gitignore to handle dot files and dot folders that are
created by most of development tools, such as IDEs.

This patch allows OPTEE-OS developers to store their specific tool
configurations under dot files or folders and not be bothered by the output
of the git status command.

Signed-off-by: Clément Le Goffic <[email protected]>
Reviewed-by: Jerome Forissier <[email protected]>
Acked-by: Jens Wiklander <[email protected]>
Reviewed-by: Etienne Carriere <[email protected]>
  • Loading branch information
Upsylonbare committed Feb 28, 2024
1 parent 52672f0 commit 2f23b36
Showing 1 changed file with 8 additions and 2 deletions.
10 changes: 8 additions & 2 deletions .gitignore
Original file line number Diff line number Diff line change
@@ -1,8 +1,14 @@
/.cproject
/compile_commands.json
/cscope.*
/tags
/TAGS
/out
/.project
*.swp
# Ignore all dot files and folder
.*
# But not those
!.clang-format
!.checkpatch.conf
!.gitattributes
!.gitignore
!.github

0 comments on commit 2f23b36

Please sign in to comment.