> For the complete documentation index, see [llms.txt](https://docs.tomatophp.com/llms.txt). Markdown versions of documentation pages are available by appending `.md` to page URLs; this page is available as [Markdown](https://docs.tomatophp.com/learn/use-github.md).

# Use Github

it's time to add your project to GitHub, so after you finish every edit, please go on this step.

first, create a branch with your name.

```bash
git checkout -b YOUR_NAME
```

add new updates

```bash
git add .
git commit -m "YOUR TASK"
git push origin YOUR_NAME
```

after you are ready to merge the task to the main use

```bash
git checkout main
git merge YOUR_NAME
```
