这些 TLOG 文件是什么?这些应该成为我的源代码控制的一部分吗?

And*_*kle 4 tortoisegit team-explorer

我是源代码控制的新手。

我不记得今天之前见过这些TLOG文件。这是我的存储库现在在团队资源管理器中的样子:

团队探索者

TortoiseGit

乌龟Git

我需要这些作为我的存储库跟踪的一部分吗?

mag*_*981 5

这些是来自 Visual C++ 编译器的日志,绝不应该成为源代码管理的一部分。通过.gitignore在 git 中排除它们:

# Build Folders (you can keep bin if you'd like, to store dlls and pdbs)
[Bb]in/
[Oo]bj/

# mstest test results
TestResults

## Ignore Visual Studio temporary files, build results, and
## files generated by popular Visual Studio add-ons.

# User-specific files
*.suo
*.user
*.sln.docstates

# Build results
[Dd]ebug/
[Rr]elease/
x64/
*_i.c
*_p.c
*.ilk
*.meta
*.obj
*.pch
*.pdb
*.pgc
*.pgd
*.rsp
*.sbr
*.tlb
*.tli
*.tlh
*.tmp
*.log
*.tlog
*.vspscc
*.vssscc
.builds

# Visual C++ cache files
ipch/
*.aps
*.ncb
*.opensdf
*.sdf

# Visual Studio profiler
*.psess
*.vsp
*.vspx
Run Code Online (Sandbox Code Playgroud)