gitignore.io
gitignore.io是一个可以在线快速生成项目.gitignore
文件的网站。
github也维护了一个gitignore
文件的repo。
可以从上述网站很快得到想要的gitignore
文件。
当然如果你和我一样喜欢命令行,那么官方推荐的方法更值得拥有:
1 | #!/bin/bash $ echo "function gi() { curl -L -s https://www.gitignore.io/api/\$@ ;}" >> ~/.bashrc && source ~/.bashrc #!/bin/zsh $ echo "function gi() { curl -L -s https://www.gitignore.io/api/\$@ ;}" >> ~/.zshrc && source ~/.zshrc |
上述代码在用户环境变量文件中添加了一个函数gi
,以后我们就可以这样来添加gitignore
了:
1 | gi CMake > .gitignore gi C >> .gitignore |