Sometimes, the file .gitignore shows up as changed. It seems that Git wants to keep it in alphabetical order.
Have a nice day, Berny >From 0cfd5b04b7d7e4eccdb0cab13cf499f6772359f8 Mon Sep 17 00:00:00 2001 From: Bernhard Voelker <[email protected]> Date: Wed, 2 Jan 2013 11:35:25 +0100 Subject: [PATCH] maint: fix alphabetical order in .gitignore Since commit v8.20-67-g0f525b6, .gitignore sometimes showed up as changed because the entries "*.gcda" and "*.gcno" had not been in alphabetical order. * .gitignore: Exchange the entries "*.gcda" and "*.gcno". --- .gitignore | 2 +- 1 files changed, 1 insertions(+), 1 deletions(-) diff --git a/.gitignore b/.gitignore index 67f428c..f0d6d87 100644 --- a/.gitignore +++ b/.gitignore @@ -1,8 +1,8 @@ *.I[12] *.[EIOX] *.bak -*.gcno *.gcda +*.gcno *.o */.deps/ *~ -- 1.7.7
