From 41cb1cc5a17a3a035ea2b996b2895ac723cb2f6b Mon Sep 17 00:00:00 2001 From: Marian Buschsieweke Date: Thu, 23 Jan 2025 11:52:57 +0100 Subject: [PATCH] .gitignore: add .gdb_history When using gdb-dashboard, GDB by default writes the history in the folder where `make debug` was executed (e.g. the application folder). The GDB history will never be useful to upstream, so let's ignore it. --- .gitignore | 2 ++ 1 file changed, 2 insertions(+) diff --git a/.gitignore b/.gitignore index 2d1efe5ca06d..2dacfe540a5b 100644 --- a/.gitignore +++ b/.gitignore @@ -43,6 +43,8 @@ cachegrind.out* tags # GDB initialization scripts .gdbinit +# GDB history (when using gdb-dashboard) +.gdb_history # Eclipse symbol file (output from make eclipsesym) eclipsesym.xml