git push local repository to remote code example
Example 1: git push current project to master
git init
git add .
git commit -m 'First commit'
git remote add origin <remote repository URL>
git push origin master
Example 2: 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 3: 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 4: git push remote
git push -u origin master