Answers for "how to link github"

0

how to link github

# Create local git repository and link to Github

git init -b main

git add *

git commit -m "init commit"

git remote add origin <REMOTE_REPO_URL>

git push -u origin main
Posted by: Guest on July-08-2021

Code answers related to "Shell/Bash"

Browse Popular Code Answers by Language