.gitignore contains two categories of entries: (1) files and directories which are created during configure / make
(2) files which might be created by users, editors and other tools The 1st category of files is needed by any developer who runs make in the source tree. There was once a suggestion to remove support for in-tree builds. Out-of-tree builds would not need any entry in .gitignore. So maintenance could be made easier, although I don't recommend this. The 2nd category is virtually endless because there are so many different editors, IDEs, debuggers and other tools which create different files. The entries here are nothing which is typical of qemu. These entries are typical for the user: Do I use ctags? Does my editor write *.bak or *~ files? Do I want a .gdbinit? ... Therefore I think that all entries of the 2nd category should be configured by the user in his/her personal git ignore list (see git config setting core.excludesfile). Regards, Stefan Weil