From: Johannes Schindelin <johannes.schindelin@xxxxxx> When using CMake to generate the files required to build Git in Visual Studio, a bunch of files are generated. We will want to prevent them from being tracked in Git. Signed-off-by: Johannes Schindelin <johannes.schindelin@xxxxxx> --- Ignore files generated by CMake Published-As: https://github.com/gitgitgadget/git/releases/tag/pr-735%2Fdscho%2Fignore-generated-cmake-files-v1 Fetch-It-Via: git fetch https://github.com/gitgitgadget/git pr-735/dscho/ignore-generated-cmake-files-v1 Pull-Request: https://github.com/gitgitgadget/git/pull/735 .gitignore | 6 ++++++ 1 file changed, 6 insertions(+) diff --git a/.gitignore b/.gitignore index 9673e792db..36f5ac4138 100644 --- a/.gitignore +++ b/.gitignore @@ -239,3 +239,9 @@ Release/ /git.VC.VC.opendb /git.VC.db *.dSYM +*.vcxproj +*.vcxproj.filters +/CMakeCache.txt +/CMakeFiles/ +/*.cmake +/DartConfiguration.tcl base-commit: 54e85e7af1ac9e9a92888060d6811ae767fea1bc -- gitgitgadget