From: Jan Kiszka <[email protected]> A project's .gitignore should be about project-specific rules, shared by everyone compiling it. So, instead of adding more and more rules for user-specific editors or tools, remove them completely and no longer accept new ones. Users can easily define local rules, see gitignore man page.
Signed-off-by: Jan Kiszka <[email protected]> --- .gitignore | 8 +------- 1 file changed, 1 insertion(+), 7 deletions(-) diff --git a/.gitignore b/.gitignore index 4dff22b..3cfcf5c 100644 --- a/.gitignore +++ b/.gitignore @@ -1,4 +1,4 @@ -# Built outputs +# Build outputs - only! *.[oa] *.mod.[co] *.cmd @@ -17,9 +17,3 @@ hypervisor/include/generated *.s ci/out ci/*.tar.xz - -# Tools outputs -*~ -*.sw[pon] -cscope.* -ncscope.* -- You received this message because you are subscribed to the Google Groups "Jailhouse" group. To unsubscribe from this group and stop receiving emails from it, send an email to [email protected]. For more options, visit https://groups.google.com/d/optout.
