how to git push remote code example

Example 1: git push origin

git branch -M main

then

git push -u origin main

or 

git push -f origin main

or 

git push origin master --force

Example 2: git push new repo to remote

$ git remote add origin <remote repository URL>
# Sets the new remote

# Push the changes in your local repository to GitHub.
$ git push -u origin master
# Pushes the changes in your local repository up to the remote repository you specified as the origin

Example 3: git remote push

git push  <REMOTENAME> <BRANCHNAME>

Example 4: push local branch changes to remote branch

git push -u origin localBranch:remoteBranchToBeCreated