From the course: Git Essential Training

Unlock this course with a free trial

Join today to access over 24,700 courses taught by industry experts.

Make use of the GUI of Visual Studio Code

Make use of the GUI of Visual Studio Code

From the course: Git Essential Training

Make use of the GUI of Visual Studio Code

- [Instructor] Keeping track of files and changes can get confusing, especially when you're working with multiple files. That is why I want to show you how Visual Studio Code can help with this process. VS Code can visualize what is happening, allowing you to even use Git without a command line. This can be especially helpful if you're still getting comfortable with Git. Let me show you how it works. I've started by adding a line to gitStatusDemo.md. And I will also remove a line from NewName.md. So we have something to work with. Now, you may have already noticed the icon in the sidebar that now shows a number. This is the source control, which is where Visual Studio Code helps you manage Git. If we click it, we can see the files that have been modified. When I click on NewName,md. Visual Studio Code opens a side-by-side view. On the left, it shows the original file, and on the right, it highlights the changes. Any new lines appearing green, making it easier to see exactly what was…

Contents