Codeblocks C++ 项目使用的基本 .gitignore 是什么? [已关闭]

问题描述 投票:0回答:2

这是我到目前为止所拥有的:

obj/
bin/

还有其他什么绝对应该列在这里的吗?

c++ git codeblocks gitignore
2个回答
7
投票

您可以使用这个:

*.layout
*.depend
bin/
obj/

参见: https://www.gitignore.io/api/codeblocks


3
投票

GitHub 有一些 gitignore 文件来启动项目。对于 C++ 项目,他们有以下

.gitignore
文件:(C++.gitignore)

# Prerequisites
*.d

# Compiled Object files
*.slo
*.lo
*.o
*.obj

# Precompiled Headers
*.gch
*.pch

# Compiled Dynamic libraries
*.so
*.dylib
*.dll

# Fortran module files
*.mod
*.smod

# Compiled Static libraries
*.lai
*.la
*.a
*.lib

# Executables
*.exe
*.out
*.app

您可以在这里找到包含许多其他语言的整个存储库:https://github.com/github/gitignore

© www.soinside.com 2019 - 2024. All rights reserved.