Answers for "add vscode to github"

17

how to push code to github from 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                                          // publish changes to your remote repository
Posted by: Guest on August-14-2021
4

vscode in browser github

"Go to any GitHub repository and then press the dot/period key on your keyboard."
                      or
"Replace the URL from 'github.com/blah-blah' to 'github.dev/blah-blah'.         "

Visual Studio Code will appear in your browser. 
It will load your entire repository and you can open any file from it. 
You have your entire source code with syntax highlighting and coloring.
Posted by: Guest on March-16-2022
4

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
Posted by: Guest on August-17-2021

Code answers related to "Shell/Bash"

Browse Popular Code Answers by Language