diff options
author | Jeff Hostetler <jeffhost@microsoft.com> | 2019-06-25 07:49:42 -0700 |
---|---|---|
committer | Junio C Hamano <gitster@pobox.com> | 2019-06-25 10:46:58 -0700 |
commit | 54b6110a9b2e11847e62d36f64ef80fd38009772 (patch) | |
tree | 8c9ca334cbe5d7d1c740f942bb00329923e43d54 /.gitignore | |
parent | msvc: avoid debug assertion windows in Debug Mode (diff) | |
download | tgif-54b6110a9b2e11847e62d36f64ef80fd38009772.tar.xz |
msvc: ignore .dll and incremental compile output
Ignore .dll files copied into the top-level directory.
Ignore MSVC incremental compiler output files.
Signed-off-by: Jeff Hostetler <jeffhost@microsoft.com>
Signed-off-by: Johannes Schindelin <johannes.schindelin@gmx.de>
Signed-off-by: Junio C Hamano <gitster@pobox.com>
Diffstat (limited to '.gitignore')
-rw-r--r-- | .gitignore | 5 |
1 files changed, 5 insertions, 0 deletions
diff --git a/.gitignore b/.gitignore index 4470d7cfc0..30536f04d6 100644 --- a/.gitignore +++ b/.gitignore @@ -223,6 +223,11 @@ *.user *.idb *.pdb +*.ilk +*.iobj +*.ipdb +*.dll +.vs/ /Debug/ /Release/ *.dSYM |