Thanks to visit codestin.com
Credit goes to github.com

Skip to content

Commit 2b06549

Browse files
committed
BUG: Git treats any line in .gitignore containing # anywhere as a comment.
1 parent a32caf5 commit 2b06549

1 file changed

Lines changed: 10 additions & 5 deletions

File tree

.gitignore

Lines changed: 10 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -44,13 +44,18 @@
4444

4545
# Python files #
4646
################
47-
build # setup.py working directory
48-
_build # sphinx build directory
49-
dist # setup.py dist directory
47+
# setup.py working directory
48+
build
49+
# sphinx build directory
50+
_build
51+
# setup.py dist directory
52+
dist
5053
doc/build
5154
doc/cdoc/build
52-
*.egg-info # Egg metadata
53-
./.shelf # The shelf plugin uses this dir
55+
# Egg metadata
56+
*.egg-info
57+
# The shelf plugin uses this dir
58+
./.shelf
5459

5560
# Logs and databases #
5661
######################

0 commit comments

Comments
 (0)