# git push

`git push origin main`

Send your commits to a remote repository (GitHub, for example).

## What each part does

- `git` — command — track changes to your project and share them
- `push` — argument: a file, a folder, or text
- `origin` — argument: a file, a folder, or text
- `main` — argument: a file, a folder, or text

Source: https://zero2vibecode.com/explain/git-push
