> For the complete documentation index, see [llms.txt](https://docs.arkannis.net/llms.txt). Markdown versions of documentation pages are available by appending `.md` to page URLs; this page is available as [Markdown](https://docs.arkannis.net/devops/github/set-up-git-ignore-file.md).

# Set up git ignore file

* Create a file named <mark style="color:orange;">`.gitignore`</mark> in your project's directory. Ignore directories by entering the directory name into the file (with a slash appended):

```bash
<repo_name>/<folder_name>/*
```

Example:&#x20;

```bash
python_fastapi/freecodecamp-course/__pycache__/*
python_fastapi/freecodecamp-course/venv/*
```
