Skip to content

Commit 4cbf73d

Browse files
committed
update .gitignore and .dockerignore
1 parent b304510 commit 4cbf73d

File tree

2 files changed

+38
-5
lines changed

2 files changed

+38
-5
lines changed

.dockerignore

Lines changed: 36 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,39 @@
1-
.git/
2-
*.pyc
3-
*.egg-info
1+
# python cache
2+
__pycache__/**/*
43
__pycache__
4+
*.pyc
5+
6+
# python distribution
7+
build/**/*
8+
build
9+
dist/**/*
10+
dist
11+
nipype.egg-info/**/*
12+
nipype.egg-info
13+
.eggs/**/*
14+
.eggs
15+
src/**/*
16+
src/
517
docker/nipype_*
618
docker/test-*
7-
.coverage
19+
20+
# releasing
21+
Makefile
22+
23+
# git
24+
.gitignore
25+
.git/**/*
26+
.git
27+
28+
# other
29+
docs/**/*
30+
docs/
31+
.coverage
32+
.coveragerc
33+
codecov.yml
34+
rtd_requirements.txt
35+
circle.yml
36+
Vagrantfile
37+
.travis.yml
38+
.noserc
39+

.gitignore

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -13,6 +13,7 @@
1313
.project
1414
.settings
1515
.pydevproject
16+
.eggs
1617
.idea/
1718
/documentation.zip
1819
.DS_Store
@@ -24,4 +25,4 @@ htmlcov/
2425
__pycache__/
2526
*~
2627
.ipynb_checkpoints/
27-
.ruby-version
28+
.ruby-version

0 commit comments

Comments
 (0)