Git Push
Learn how to use the Git Push command with remote repositories
Push changes
git push
for a specific branch
example:main branch
git push origin main
This command pushes the local changes to the remote repository. It updates the 'remote' repository with the changes you made locally.