diff --git a/04-DevelopmentEnvironment/01A-tutorial-VSCode.md b/04-DevelopmentEnvironment/01A-tutorial-VSCode.md
index 71eab3b1..e08e2096 100644
--- a/04-DevelopmentEnvironment/01A-tutorial-VSCode.md
+++ b/04-DevelopmentEnvironment/01A-tutorial-VSCode.md
@@ -91,12 +91,12 @@ 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 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.
+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.