> For the complete documentation index, see [llms.txt](https://soundarya.gitbook.io/featurepreneur/llms.txt). Markdown versions of documentation pages are available by appending `.md` to page URLs; this page is available as [Markdown](https://soundarya.gitbook.io/featurepreneur/git-commands.md).

# Git commands

### git commit : <a href="#git-commit" id="git-commit"></a>

Go back to your terminal and enter the following Git commands one after another:

1. Check the status of your repository to see the changes:

   Copy

   ```
   git status
   ```
2. Add all the changes to the staging area:

   Copy

   ```
   git add .
   ```
3. Commit the changes with a descriptive message:

   Copy

   ```
   git commit -m "Added my_page.html to the repository"
   ```
4. Push the changes to the remote repository:

   Copy

   ```
   git push
   ```

***
