aboutsummaryrefslogtreecommitdiff
path: root/.gitignore
Commit message (Collapse)AuthorAgeFilesLines
* gitignore: Add .clangd and .ccls-cacheKa Ho Ng2021-06-041-0/+2
| | | | | | | | | | | | | Add residues of clangd and ccls to prevent them from being accidentally included in a commit. clangd and ccls are two C/C++ Language Server implementations listed in https://microsoft.github.io/language-server-protocol/implementors/servers/ . Sponsored by: The FreeBSD Foundation MFC after: 3 days Reviewed by: philip Differential Revision: https://reviews.freebsd.org/D26555
* gitignore: Add compile_commands.jsonKa Ho Ng2021-06-041-0/+1
| | | | | | | | | | | | The purpose of this change is to make sure no one would accidentally include their own workspace leftover into a commit. compile_commands.json is a generated file which contains build commands. The file is consumed by Language Servers such as clangd and ccls. Sponsored by: The FreeBSD Foundation Reviewed by: lwhsu Differential Revision: https://reviews.freebsd.org/D26514
* gitignore: expand list of ignored filesRoger Pau Monné2021-01-141-1/+9
| | | | | | | | | | | | | | Add the *.swp and *~ pattern for vim temporary files. Expand the cscope ones to include all files possibly generated by cscope and also add some known object formats. Also remove the leading '?' from cscope.out, or else it doesn't match the cscope.out file generated by default (as it expects an extra character in front). Reviewed by: gjb, uqs, lwhsu Sponsored by: Citrix Systems R&D Differential Revision: https://reviews.freebsd.org/D28095
* Stop ignoring makeLINT generated filesWarner Losh2020-10-091-16/+0
| | | | | | | | | | | | We're going to check these files in shortly since we don't need to generate them anymore. Generated files cause issues for different work flows anyway. Reviewed by: kevans Differential Revision: https://reviews.freebsd.org/D26540 Notes: svn path=/head/; revision=366556
* .gitignore: Add LINT kernel configurations generated into SRCDIRConrad Meyer2019-08-101-0/+16
| | | | Notes: svn path=/head/; revision=350843
* Ignore _.universe-toolchain file.Bryan Drewery2018-07-011-0/+1
| | | | | | | | MFC after: 3 weeks X-MFC-with: r335711 Notes: svn path=/head/; revision=335840
* .git*: add gitattributes and gitignoreEitan Adler2017-12-251-0/+18
For users of the git mirrors, lets provide useful git configuration files. Notes: svn path=/head/; revision=327183