Skip to content

Commit 3cc556c

Browse files
authored
Merge pull request #1213 from HonkingGoose/visual_studio_code
Visual Studio Code git integration documentation.
2 parents be8e9d1 + 67e187f commit 3cc556c

File tree

2 files changed

+22
-0
lines changed

2 files changed

+22
-0
lines changed

A-git-in-other-environments.asc

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -11,6 +11,8 @@ include::book/A-git-in-other-environments/sections/guis.asc[]
1111

1212
include::book/A-git-in-other-environments/sections/visualstudio.asc[]
1313

14+
include::book/A-git-in-other-environments/sections/visualstudiocode.asc[]
15+
1416
include::book/A-git-in-other-environments/sections/eclipse.asc[]
1517

1618
include::book/A-git-in-other-environments/sections/sublimetext.asc[]
Lines changed: 20 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,20 @@
1+
=== Git in Visual Studio Code
2+
3+
Visual Studio Code has git support built in. You will need to have git version 2.0.0 (or newer) installed.
4+
5+
The main features are:
6+
7+
* See the diff of the file you are editing in the gutter.
8+
* The Git Status Bar (lower left) shows the current branch, dirty indicators, incoming and outgoing commits.
9+
* You can do the most common git operations from within the editor:
10+
** Initialize a repository.
11+
** Clone a repository.
12+
** Create branches and tags.
13+
** Stage and commit changes.
14+
** Push/pull/sync with a remote branch.
15+
** Resolve merge conflicts.
16+
** View diffs.
17+
* With a extension, you can also handle GitHub Pull Requests:
18+
https://marketplace.visualstudio.com/items?itemName=GitHub.vscode-pull-request-github[]
19+
20+
The official documentation can be found here: https://code.visualstudio.com/Docs/editor/versioncontrol[]

0 commit comments

Comments
 (0)