how to push code from vscode to github code example
Example 1: shortcut push github vscode
{
{
"key": "ctrl+alt+p",
"command": "git.push"
}
}
Example 2: VS github commit
// ready the changes for commit
git add .
// commit your changes with a message
git commit -m "Your message to refernce your commit"