From 444eb194a6cd1db470786f83038d1fce38908a31 Mon Sep 17 00:00:00 2001 From: Benjamin Drung Date: Mon, 16 May 2016 15:36:52 +0200 Subject: [PATCH] .gitignore: Do not ignore *.out files The sord library contains some test files named *.out, but they are ignored by the *.out rule. a.out is the default file name for executables on Linux if no output filename is specified. All executables that we build carry a name without extension. Thus no generated file carries an .out extension. Therefore just remove the *.out ignore rule. Note: You can list ignored files by running git ls-files -i --exclude-standard --- .gitignore | 1 - 1 file changed, 1 deletion(-) diff --git a/.gitignore b/.gitignore index 9f4dfe396..b6289a0f4 100644 --- a/.gitignore +++ b/.gitignore @@ -130,7 +130,6 @@ mac/tests/ # Executables *.exe -*.out *.app # Executable without extension