Answers for "github sync local with remote"

1

github sync local with remote

// cd to your project folder
>git init
>git remote add origin https://github.com/YOUR_GITHUB_NAME/YOUR_REPO_NAME.git
>git add .
>git commit -m "init"
>git push --set-upstream origin master
Posted by: Guest on April-26-2021

Code answers related to "github sync local with remote"

Code answers related to "TypeScript"

Browse Popular Code Answers by Language