Skip to content

Commit

Permalink
Limit some .gitignore patterns
Browse files Browse the repository at this point in the history
Summary:
These patterns are just meant to ignore stuff in the root directory of
redex, but they weren't properly anchored, so we were ignoring everything under
"tools/redex-all", since "redex-all" was listed as a pattern.  This manifested
hilariously for me as wasting a good 30 minutes wondering why my fancy
.gitignore-aware grep wasn't finding stuff it should have.

Reviewed By: int3

Differential Revision: D3582618

fbshipit-source-id: 534a4b366026d2804342e4658ff06af602dd1d48
  • Loading branch information
bertmaher authored and Facebook Github Bot committed Jul 19, 2016
1 parent a9e74c3 commit 8011742
Showing 1 changed file with 22 additions and 22 deletions.
44 changes: 22 additions & 22 deletions .gitignore
Original file line number Diff line number Diff line change
Expand Up @@ -6,25 +6,25 @@
**/Makefile
**/Makefile.in

.libs
aclocal.m4
autom4te.cache
cmd.txt
compile
config.*
configure
depcomp
install-sh
libredex.la
libtool
ltmain.sh
m4/libtool.m4
m4/ltoptions.m4
m4/ltsugar.m4
m4/ltversion.m4
m4/lt~obsolete.m4
missing
redex
redex-all
stamp-h1
test-driver
/.libs
/aclocal.m4
/autom4te.cache
/cmd.txt
/compile
/config.*
/configure
/depcomp
/install-sh
/libredex.la
/libtool
/ltmain.sh
/m4/libtool.m4
/m4/ltoptions.m4
/m4/ltsugar.m4
/m4/ltversion.m4
/m4/lt~obsolete.m4
/missing
/redex
/redex-all
/stamp-h1
/test-driver

0 comments on commit 8011742

Please sign in to comment.