diff --git a/A-git-in-other-environments.asc b/A-git-in-other-environments.asc index 678b69a17..496af0a65 100644 --- a/A-git-in-other-environments.asc +++ b/A-git-in-other-environments.asc @@ -11,6 +11,8 @@ include::book/A-git-in-other-environments/sections/guis.asc[] include::book/A-git-in-other-environments/sections/visualstudio.asc[] +include::book/A-git-in-other-environments/sections/visualstudiocode.asc[] + include::book/A-git-in-other-environments/sections/eclipse.asc[] include::book/A-git-in-other-environments/sections/sublimetext.asc[] diff --git a/book/A-git-in-other-environments/sections/visualstudiocode.asc b/book/A-git-in-other-environments/sections/visualstudiocode.asc new file mode 100644 index 000000000..33730912e --- /dev/null +++ b/book/A-git-in-other-environments/sections/visualstudiocode.asc @@ -0,0 +1,20 @@ +=== Git in Visual Studio Code + +Visual Studio Code has git support built in. You will need to have git version 2.0.0 (or newer) installed. + +The main features are: + +* See the diff of the file you are editing in the gutter. +* The Git Status Bar (lower left) shows the current branch, dirty indicators, incoming and outgoing commits. +* You can do the most common git operations from within the editor: +** Initialize a repository. +** Clone a repository. +** Create branches and tags. +** Stage and commit changes. +** Push/pull/sync with a remote branch. +** Resolve merge conflicts. +** View diffs. +* With a extension, you can also handle GitHub Pull Requests: + https://marketplace.visualstudio.com/items?itemName=GitHub.vscode-pull-request-github[] + +The official documentation can be found here: https://code.visualstudio.com/Docs/editor/versioncontrol[] \ No newline at end of file