i2tutorials

Git – push

Git Push 

 

git push” is a command in the Git version control system that is used to upload local changes to a remote repository.

     git push <remote> <branch>
     git push origin master

The git push command in workflow of git comes after the git commit command. It runs as follows :

push

As shown above the git push origin master has pushed the changes made in the local repository to the remote repository.

 

Exit mobile version