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

时间:2017-01-01 17:31:52

标签: tortoisegit team-explorer

我是源代码控制的新手。

我不记得在今天之前看到这些 TLOG 文件。以下是我的存储库现在在团队资源管理器

中的样子

Team Explorer

TortoiseGit

TortoiseGit

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

1 个答案:

答案 0 :(得分:2)

这是来自VisualC ++编译器的日志,它应该永远不是源代码控制的一部分。通过.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
*.vspscc
*.vssscc
.builds

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

# Visual Studio profiler
*.psess
*.vsp
*.vspx