coreutils
[Top][All Lists]
Advanced

[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index]

[PATCH] maint: fix alphabetical order in .gitignore


From: Bernhard Voelker
Subject: [PATCH] maint: fix alphabetical order in .gitignore
Date: Wed, 02 Jan 2013 11:46:07 +0100
User-agent: Mozilla/5.0 (X11; Linux x86_64; rv:17.0) Gecko/17.0 Thunderbird/17.0

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 <address@hidden>
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




reply via email to

[Prev in Thread] Current Thread [Next in Thread]