Pushing and Pulling Changes to and from Remote Repositories
git add .
git commit -m "Commit message"git fetch origingit push origin <branch-name>git push --set-upstream origin <branch-name>Pulling Changes from a Remote Repository
git pull origin <branch-name>Best Practices for Working with Remote Repositories
PreviousCloning a Repository from RemoteNextCollaborative Workflows - Forking, Branching, and Pull Requests
Last updated