vscode publish to github organisation
create the repository on Github, clone the repo on your machine (git clone xx), copy the files, and push
vscode publish to github organisation
create the repository on Github, clone the repo on your machine (git clone xx), copy the files, and push
push code to github vscode
git init // start tracking current directory
git add -A // add all files in current directory to staging area, making them available for commit
git commit -m "commit message" // commit your changes
git remote add origin https://github.com/username/repo-name.git // add remote repository URL which contains the required details
git pull origin master // always pull from remote before pushing
git push -u origin master
Copyright © 2021 Codeinu
Forgot your account's password or having trouble logging into your Account? Don't worry, we'll help you to get back your account. Enter your email address and we'll send you a recovery link to reset your password. If you are experiencing problems resetting your password contact us