All checks were successful
Deploy triz-docs to civital server / build-and-deploy (push) Successful in 1h8m30s
38 lines
561 B
Markdown
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`
|
|
|
|

|
|
|
|
---
|
|
|
|
# Pull Changes
|
|
|
|
## Objective
|
|
|
|
Retrieve updates from the remote repository and merge them into the local repository.
|
|
|
|
## Steps
|
|
|
|
1. Execute the pull command: `git pull`
|
|
|
|

|
|
|
|
2. Review the output for updates or merge results.
|