diff --git a/04-DevelopmentEnvironment/01A-tutorial-VSCode.md b/04-DevelopmentEnvironment/01A-tutorial-VSCode.md
index 24dcd7ae..71eab3b1 100644
--- a/04-DevelopmentEnvironment/01A-tutorial-VSCode.md
+++ b/04-DevelopmentEnvironment/01A-tutorial-VSCode.md
@@ -91,7 +91,14 @@ VSCode has powerful tools to help you find and fix errors in your code. To start
## Version Control
-If you are not familiar with Git, check out these tutorials about Intro to Git ⤴ and Intro to GitHub ⤴. It is possible to work with Git repositories directly from the VSC editor. You can clone a repo, or initialize a repo for your project from the terminal. `Source Control` pane on the left is used to manage your Git repositories. You will need to log in to your GitHub account the first time you use Git. The common Git operations such as Pull, Push, Clone, Commit, and Create Branch can be performed from here. Check this page for a list of Git commands ⤴ on VSCode.
+If you are not familiar with Git, check out these tutorials about Intro to Git ⤴ and Intro to GitHub ⤴. It is possible to work with Git repositories directly from the VSC editor. You will need to log in to your GitHub account the first time you use Git. To log in, select `Remote Explorer` icon from left-hand taskbar.
+
+![githublogin](assets/images/vsc_github.png)
+
+Select `Sign in to GitHub` (you may need to let the page load a little before the sign in button appears). If your system asks *The extension `GitHub Codespaces` wants to sign in using GitHub.* then select allow. You will be directed to the GitHub login webpage. Select `Authorize Visual-Studio-Code` to connect your GitHub account to VSCode.
+
+
+You can clone a repo, or initialize a repo for your project from the terminal. `Source Control` pane on the left is used to manage your Git repositories. The common Git operations such as Pull, Push, Clone, Commit, and Create Branch can be performed from here. Check this page for a list of Git commands ⤴ on VSCode.
![VC](assets/images/VSC_sourcecontrol.png)
diff --git a/04-DevelopmentEnvironment/assets/images/vsc_github.png b/04-DevelopmentEnvironment/assets/images/vsc_github.png
new file mode 100644
index 00000000..4f1d8313
Binary files /dev/null and b/04-DevelopmentEnvironment/assets/images/vsc_github.png differ