How do you push your changes to a remote repository?
a)
git commitb)
git pushc)
git sendd)
git uploadAnswer:
b)
git pushExplanation:
The git push command is used to upload local repository changes to a remote repository. It transfers commits from your local branch to the corresponding branch on the remote server, making your changes available to other collaborators.
For example, git push origin main will push your local changes to the main branch on the remote repository named origin.
Understanding git push is crucial for sharing your work with others and collaborating on projects hosted on platforms like GitHub.