How to move components changes from VS Code to GITHUB using GIT Commands to the repository?
1. Use the following command to include all untracked and changed files. git add * 2. Use the following command to Commit the changes. git commit -m "commit comment" 3. ....