Skip to content

Commit

Permalink
Updated gitignore and added dockerignore
Browse files Browse the repository at this point in the history
  • Loading branch information
volkm committed Jun 7, 2024
1 parent 3576715 commit df0eb98
Show file tree
Hide file tree
Showing 2 changed files with 100 additions and 11 deletions.
56 changes: 56 additions & 0 deletions .dockerignore
Original file line number Diff line number Diff line change
@@ -0,0 +1,56 @@
Dockerfile
#Git files
.git
.git-blame-ignore-revs
.github
.gitignore
#The remainder is based on .gitignore
**/config.h
**/CompileInfo.cpp
**/CMakeOptions.cpp
**/CMakeOptions.h
/src/carl/config.h
#Visual Studio files
*.[Oo]bj
*.user
*.aps
*.pch
*.vspscc
*.vssscc
*_i.c
*_p.c
*.ncb
*.suo
*.tlb
*.tlh
*.bak
*.[Cc]ache
*.ilk
*.log
*.lib
*.sbr
*.sdf
*.tlog
*.lastbuildstate
*.pdb
*.idb
*.opensdf
*.unsuccessfulbuild
ipch/
obj/
CMakeFiles/
CPackConfig.cmake
# The build Dir
/*build*/
build//CMakeLists.txt
/*.vcxproj
/*.filters
/*.sln
#Temp texteditor files
*.orig
*.*~
nbproject/
.DS_Store
.idea
.vscode
*.out
55 changes: 44 additions & 11 deletions .gitignore
Original file line number Diff line number Diff line change
@@ -1,16 +1,49 @@
**/*~
**/*.pyc
.idea
.DS_Store
.vscode
build/**
nbproject/
/resources/log4cplus-1.1.1/include/log4cplus/config/defines.hxx.cmake
/resources/log4cplus-1.1.1/include/log4cplus/config/defines.hxx
**/config.h
**/CompileInfo.cpp
**/CMakeOptions.cpp
**/CMakeOptions.h
/src/carl/config.h
/src/carl/thom/todos
/src/carl/thom/todo
#Visual Studio files
*.[Oo]bj
*.user
*.aps
*.pch
*.vspscc
*.vssscc
*_i.c
*_p.c
*.ncb
*.suo
*.tlb
*.tlh
*.bak
*.[Cc]ache
*.ilk
*.log
*.lib
*.sbr
*.sdf
*.tlog
*.lastbuildstate
*.pdb
*.idb
*.opensdf
*.unsuccessfulbuild
ipch/
obj/
CMakeFiles/
CPackConfig.cmake
# The build Dir
/*build*/
build//CMakeLists.txt
/*.vcxproj
/*.filters
/*.sln
#Temp texteditor files
*.orig
*.*~
nbproject/
.DS_Store
.idea
.vscode
*.out

0 comments on commit df0eb98

Please sign in to comment.