Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 2 additions & 0 deletions A-git-in-other-environments.asc
Original file line number Diff line number Diff line change
Expand Up @@ -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[]
Expand Down
20 changes: 20 additions & 0 deletions book/A-git-in-other-environments/sections/visualstudiocode.asc
Original file line number Diff line number Diff line change
@@ -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[]