File: .gitignore

package info (click to toggle)
nifticlib 3.0.1-9.1
  • links: PTS, VCS
  • area: main
  • in suites: sid, trixie
  • size: 2,640 kB
  • sloc: ansic: 31,214; sh: 941; makefile: 460; csh: 138; python: 88; tcl: 42
file content (43 lines) | stat: -rw-r--r-- 629 bytes parent folder | download | duplicates (3)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
# Do not add ExternalData module staging files
.ExternalData*

# back-up files
*~
*.bak
# vim swp files
*.swp
## Ignore files that are used for auto_completion with clang
*.clang_complete
## YouCompleteMe vim plugin configuration file
.ycm_extra_conf.py

# compiled python files
*.pyc

# Binary directory
BUILD*
build*

# qtcreator
CMakeLists.txt.user*

# kdevelop
*.kdev*
.kdev*

# back-up files when conflicts occur
*.orig

# Clion editor internal project information
.idea

# Mac System File
.DS_Store

# A common file writen from vim by accident
:w

# Files when cmake builds in the source tree
CMakeCache.txt 
CMakeFiles/*