triz-docs/docs/git-operations/command-line/push-pull.md
Othmane Ataallah 6010b96146
All checks were successful
Deploy triz-docs to civital server / build-and-deploy (push) Successful in 1h8m30s
add git-operations-in-the-command-line
2026-04-29 09:46:33 +01:00

38 lines
561 B
Markdown

---
sidebar_position: 3
title: "Push & Pull Changes"
---
# Push & Pull Changes
---
# Push Changes
## Objective
Send committed changes from the local repository to the remote repository.
## Steps
1. Ensure at least one commit exists locally.
2. Execute the push command: `git push`
![Git Push](img/7.png)
---
# Pull Changes
## Objective
Retrieve updates from the remote repository and merge them into the local repository.
## Steps
1. Execute the pull command: `git pull`
![Git Pull](img/8.png)
2. Review the output for updates or merge results.