mirror of
https://github.com/ruby/ruby.git
synced 2022-11-09 12:17:21 -05:00
Allow hidden files with a hyphen to be source controlled
Latest bundler includes a file named `.gitlab-ci.yml.tt`. Because of this too specific .gitignore entry, it was failing to be properly imported.
This commit is contained in:
parent
24fa37d87a
commit
7a5da7d55d
Notes:
git
2020-07-04 13:41:43 +09:00
1 changed files with 3 additions and 1 deletions
4
.gitignore
vendored
4
.gitignore
vendored
|
@ -27,7 +27,6 @@
|
|||
*.swp
|
||||
*.yarb
|
||||
*~
|
||||
.*-*
|
||||
.*.list
|
||||
.*.time
|
||||
.DS_Store
|
||||
|
@ -60,6 +59,8 @@ lcov*.info
|
|||
/build*/
|
||||
/COPYING.LIB
|
||||
/ChangeLog
|
||||
/.downloaded-cache
|
||||
/.top-enc.mk
|
||||
/Doxyfile
|
||||
/GNUmakefile
|
||||
/README.atheos
|
||||
|
@ -191,6 +192,7 @@ lcov*.info
|
|||
|
||||
# /ext/ripper/
|
||||
/ext/ripper/eventids1.c
|
||||
/ext/ripper/.eventids2-check
|
||||
/ext/ripper/eventids2table.c
|
||||
/ext/ripper/ripper.*
|
||||
/ext/ripper/ids1
|
||||
|
|
Loading…
Reference in a new issue