这些 TLOG 文件是什么?这些应该是我的源代码控制的一部分吗?
What are these TLOG files? Should these be part of my source control?
我是源代码管理的新手。
我不记得今天之前看过这些 TLOG 文件。这是我的存储库现在在 Team Explorer:
中的样子
和TortoiseGit:
我需要这些作为我的存储库跟踪的一部分吗?
这是来自 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
我是源代码管理的新手。
我不记得今天之前看过这些 TLOG 文件。这是我的存储库现在在 Team Explorer:
中的样子和TortoiseGit:
我需要这些作为我的存储库跟踪的一部分吗?
这是来自 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