push existing code to new repo github code example

Example 1: push code to github command line

git add .
git commit -m "message for the commit"
git remote add origin https://url-of-github-repo
git push origin master

Example 2: create new repository on the command line

git init
git add README.MD
git commit -m "commit message"
git remote add origin git url_of_github_repo
git push origin master

Example 3: git push existing code to new repository

git remote add origin <remote repository URL>

Example 4: push a project to an existing repoin github using git

$ git init -b main

Tags:

Misc Example