Skip to content

Commit

Permalink
Merge gitignore for IDE and OS generated files
Browse files Browse the repository at this point in the history
This PR adds .gitignore entries for some additional IDEs and OS files.

Related PR: #840
  • Loading branch information
upsj committed Jul 24, 2021
2 parents 242e34b + a3e0f8a commit ac6b2e9
Showing 1 changed file with 29 additions and 3 deletions.
32 changes: 29 additions & 3 deletions .gitignore
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
# Created by https://www.gitignore.io/api/

###CMake
### CMake
CMakeCache.txt
CMakeFiles
CMakeScripts
Expand All @@ -12,10 +12,21 @@ compile_commands.json
CTestTestfile.cmake
build

### IDE
# Clion
.idea

# Eclipse
.cproject
.project

# Visual studio code
.vscode

### Generated header file
include/config.hpp

###C++
### C++
# Prerequisites
*.d

Expand Down Expand Up @@ -49,10 +60,25 @@ include/config.hpp
*.out
*.app

#other
# Others
diff.patch
GRTAGS
GSYMS
GTAGS
GPATH
.gitignore

### OS
# temporary and backup files
*~
*#
*.swp

# MacOS self-generated files
.DS_Store
.DS_Store?
._*
.Spotlight-V100
.Trashes
ehthumbs.db
Thumbs.db

0 comments on commit ac6b2e9

Please sign in to comment.