diff options
author | Junio C Hamano <gitster@pobox.com> | 2019-07-09 15:25:45 -0700 |
---|---|---|
committer | Junio C Hamano <gitster@pobox.com> | 2019-07-09 15:25:45 -0700 |
commit | 88b10757593ab47354a3c9d191d7c03d584a40cf (patch) | |
tree | 363afdfa16b666e9d81cd254a9466e9a2e571cfc /.gitignore | |
parent | Merge branch 'sg/rebase-progress' (diff) | |
parent | msvc: ignore .dll and incremental compile output (diff) | |
download | tgif-88b10757593ab47354a3c9d191d7c03d584a40cf.tar.xz |
Merge branch 'jh/msvc'
Support to build with MSVC has been updated.
* jh/msvc:
msvc: ignore .dll and incremental compile output
msvc: avoid debug assertion windows in Debug Mode
msvc: do not pretend to support all signals
msvc: add pragmas for common warnings
msvc: add a compile-time flag to allow detailed heap debugging
msvc: support building Git using MS Visual C++
msvc: update Makefile to allow for spaces in the compiler path
msvc: fix detect_msys_tty()
msvc: define ftello()
msvc: do not re-declare the timespec struct
msvc: mark a variable as non-const
msvc: define O_ACCMODE
msvc: include sigset_t definition
msvc: fix dependencies of compat/msvc.c
mingw: replace mingw_startup() hack
obstack: fix compiler warning
cache-tree/blame: avoid reusing the DEBUG constant
t0001 (mingw): do not expect a specific order of stdout/stderr
Mark .bat files as requiring CR/LF endings
mingw: fix a typo in the msysGit-specific section
Diffstat (limited to '.gitignore')
-rw-r--r-- | .gitignore | 5 |
1 files changed, 5 insertions, 0 deletions
diff --git a/.gitignore b/.gitignore index 40326140c7..e096e0a51c 100644 --- a/.gitignore +++ b/.gitignore @@ -225,6 +225,11 @@ *.user *.idb *.pdb +*.ilk +*.iobj +*.ipdb +*.dll +.vs/ /Debug/ /Release/ *.dSYM |