git push remote origin 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 connect to remote repository
git init
git commit -m "[message]"
git remote add origin "github repository link"
git push -u origin master
Example 3: git remote push
git push <REMOTENAME> <BRANCHNAME>
Example 4: add remote origin git
$ git remote add origin https://github.com/user/repo.git
# Set a new remote
$ git remote -v
# Verify new remote
> origin https://github.com/user/repo.git (fetch)
> origin https://github.com/user/repo.git (push)
Example 5: git push remote
git push -u origin master