Data Stream

  1. Push

git push

The push term refers to upload local repository content to a remote repository.

  • Push Data

git push origin master
  • Delete Remote Branch

git push origin --delete
  1. Pull

Pull the data from the server.

git pull or git pull origin master

Last updated