--- 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.