From 2731b70f4f07cf30fbc62c3a6b67f0c935887df0 Mon Sep 17 00:00:00 2001 From: Mark Nicolini <36858276+marcusolini@users.noreply.github.com> Date: Thu, 6 Dec 2018 09:19:35 -0500 Subject: [PATCH] Ignore Generated Files Netbeans Linux and Windows Makefile-*.mk and Package-*.bash files in nbproject directories are automatically generated during compile. These files are continually updated, which can cause a long list of unnecessary files to add, commit, and push (or that are Untracked). This has been experienced for Linux and Windows C++ projects. Helpful supporting link: https://stackoverflow.com/questions/27490608/netbeans-c-and-git --- Global/NetBeans.gitignore | 2 ++ 1 file changed, 2 insertions(+) diff --git a/Global/NetBeans.gitignore b/Global/NetBeans.gitignore index 863bc7fa..45112875 100644 --- a/Global/NetBeans.gitignore +++ b/Global/NetBeans.gitignore @@ -1,4 +1,6 @@ **/nbproject/private/ +**/nbproject/Makefile-*.mk +**/nbproject/Package-*.bash build/ nbbuild/ dist/