ruby-changes:62117
From: David <ko1@a...>
Date: Sat, 4 Jul 2020 13:41:37 +0900 (JST)
Subject: [ruby-changes:62117] 7a5da7d55d (master): Allow hidden files with a hyphen to be source controlled
https://git.ruby-lang.org/ruby.git/commit/?id=7a5da7d55d From 7a5da7d55d40e431e561ab2c891b7cab155e74db Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?David=20Rodr=C3=ADguez?= <deivid.rodriguez@r...> Date: Mon, 15 Jun 2020 16:48:33 +0200 Subject: 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. diff --git a/.gitignore b/.gitignore index 916c7aa..9ae079e 100644 --- a/.gitignore +++ b/.gitignore @@ -27,7 +27,6 @@ https://github.com/ruby/ruby/blob/trunk/.gitignore#L27 *.swp *.yarb *~ -.*-* .*.list .*.time .DS_Store @@ -60,6 +59,8 @@ lcov*.info https://github.com/ruby/ruby/blob/trunk/.gitignore#L59 /build*/ /COPYING.LIB /ChangeLog +/.downloaded-cache +/.top-enc.mk /Doxyfile /GNUmakefile /README.atheos @@ -191,6 +192,7 @@ lcov*.info https://github.com/ruby/ruby/blob/trunk/.gitignore#L192 # /ext/ripper/ /ext/ripper/eventids1.c +/ext/ripper/.eventids2-check /ext/ripper/eventids2table.c /ext/ripper/ripper.* /ext/ripper/ids1 -- cgit v0.10.2 -- ML: ruby-changes@q... Info: http://www.atdot.net/~ko1/quickml/