Skip to content

Commit ead26f9

Browse files
committedApr 23, 2016
Merge pull request timbrel#398 from stoivo/not_adding_to_gitignore
Enhancement: Don't add "# added by GitSavvy" to .gitignore files
2 parents 3d89aba + 6e1851a commit ead26f9

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed
 

‎core/git_mixins/ignore.py

+1-1
Original file line numberDiff line numberDiff line change
@@ -21,4 +21,4 @@ def add_ignore(self, path_or_pattern):
2121
linesep = os.linesep
2222

2323
with open(os.path.join(self.repo_path, ".gitignore"), "at") as ignore_file:
24-
ignore_file.write(linesep + "# added by GitSavvy" + linesep + path_or_pattern + linesep)
24+
ignore_file.write(linesep + path_or_pattern + linesep)

0 commit comments

Comments
 (0)
Please sign in to comment.