- Open Cursor Settings (
Ctrl+Shift+J) - Click on
Features - Scroll to the
Codebase indexingarea - Click on
Show settings
In the Ignore files section it says:
Configure the files that Cursor will ignore when indexing your repository (in addition to your
.gitignore)
There is then a text link Configured ignored files.
Clicking on that text link creates a file in current folder named .cursorignore.
My question is:
-
My current
.gitignorefile does not contain entries for.git/or.github/ -
(I believe
.gitis prevented from being pushed to GitHub by default?) -
My
.githubfolder contains aworkflowsfolder that contains aymlfile for a GitHub Action that was created automatically by Azure when linking the repo to the Azure Web App -
Should I manually add
.git/and.github/to the.cursorignorefile so that those folders are not included in the codebase indexing?
