Skip to content
This repository was archived by the owner on Jun 21, 2023. It is now read-only.

Commit 9575950

Browse files
authored
Merge pull request #953 from github/fixes/952-image-descriptions
Add descriptions to documentation images
2 parents db3a26b + fdfafa8 commit 9575950

15 files changed

+37
-35
lines changed

README.md

Lines changed: 3 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -9,6 +9,9 @@ Official builds of this extension are available at [the official website](https:
99

1010
[![Join the chat at freenode:github-vs](https://img.shields.io/badge/irc-freenode:%20%23github--vs-blue.svg)](http://webchat.freenode.net/?channels=%23github-vs) [![Join the chat at https://gitter.im/github/VisualStudio](https://badges.gitter.im/Join%20Chat.svg)](https://gitter.im/github/VisualStudio?utm_source=badge&utm_medium=badge&utm_campaign=pr-badge&utm_content=badge)
1111

12+
## Documentation
13+
Visit the [documentation](https://github.com/github/VisualStudio/tree/master/docs) for details on how to use the features in the GitHub Extension for Visual Studio.
14+
1215
## Installing beta versions
1316

1417
Older and pre-release/beta/untested versions are available at [the releases page](https://github.com/github/VisualStudio/releases), and also via a custom gallery feed for Visual Studio.
@@ -83,7 +86,6 @@ build.cmd
8386
Note, attempting to install `IsExperimental=false` builds of the VSIX is not recommended.
8487

8588
## More information
86-
8789
- Andreia Gaita's [presentation](https://www.youtube.com/watch?v=hz2hCO8e_8w) at Codemania 2016 about this extension.
8890

8991
## Contributing

docs/contributing/cloning-a-repository-to-visual-studio.md

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -5,15 +5,15 @@ After you provide your GitHub or GitHub Enterprise credentials to GitHub for Vis
55
1. Open **Team Explorer** by clicking on its tab next to *Solution Explorer*, or via the *View* menu.
66
2. Click the **Manage Connections** toolbar button.
77

8-
![image](images/manage-connections.png)
8+
![Location of the manage connections toolbar button in Team Explorer](images/manage-connections.png)
99

1010
3. Next to the account you want to clone from, click **Clone**.
1111

12-
![image](images/clone-link.png)
12+
![Clone button in the GitHub section of Team Explorer](images/clone-link.png)
1313

1414
4. In the list of repositories, click the repository you'd like to clone.
1515

16-
![image](images/clone-dialog.png)
16+
![List of GitHub repositories that can be cloned inside a dialog](images/clone-dialog.png)
1717

1818
5. If desired, change the local path where the repository will be cloned into, or leave the default as-is. Click **Clone**.
1919
6. In Team Explorer, under the list of repositories, locate the repository and double-click to open the project in Visual Studio.

docs/contributing/creating-a-pull-request.md

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -2,9 +2,9 @@
22

33
1. Open a solution in a GitHub repository.
44
2. Open **Team Explorer** and click the **Pull Requests** button to open the **GitHub** pane.
5-
![Pull Requests](images/pull-requests-button2.png)
5+
![Location of the pull requests button in the Team Explorer pane](images/pull-requests-button2.png)
66
3. Click the **Create New** link above the list of pull requests for the repository.
77
4. Select the target branch by clicking the link. If the current repository is a fork, then there will be two sets of branches in the dropdown - to submit a pull request upstream then select a branch with the `owner:` prefix of the upstream repository.
8-
![](images/pr-create.png)
8+
![The pull request creation form in the GitHub pane](images/pr-create.png)
99
5. Enter a pull request title and an optional description.
1010
6. Click the **Create Pull Request** button.

docs/contributing/creating-an-empty-repository-from-visual-studio.md

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -6,15 +6,15 @@
66

77
3. Click the **Manage Connections** toolbar button.
88

9-
![image](images/manage-connections.png)
9+
![The manage connections toolbar button in Team Explorer](images/manage-connections.png)
1010

1111
4. Click the **Create** link next to the account you want to create the repository in.
1212

13-
![image](images/create-link.png)
13+
![The create link in the Team Explorer pane](images/create-link.png)
1414

1515
5. In the **Create a GitHub Repository** dialog, enter a name, description and local path for the repository.
1616

17-
![image](images/create-dialog.png)
17+
![The create a GitHub repository dialog](images/create-dialog.png)
1818

1919
6. Select a license for the repository.
2020

@@ -24,4 +24,4 @@
2424

2525
9. When the repository is created, click the **Create a new Project or Solution** link in Team Explorer to create a project or solution in the repository.
2626

27-
![image](images/successful-creation-message.png)
27+
![Successful repository creation message at the top of the Team Explorer pane](images/successful-creation-message.png)

docs/contributing/creating-gists.md

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -10,11 +10,11 @@ GitHub for Visual Studio enables easy creation of gists directly from the Visual
1010

1111
4. Right click and select **Create a GitHub Gist** from the **GitHub** submenu.
1212

13-
![image](images/create-gist-menu.png)
13+
![Location of Create A GitHub Gist in the GitHub submenu](images/create-gist-menu.png)
1414

1515
5. In the **Create a GitHub Gist** dialog, check that the filename is correct and optionally add a description.
1616

17-
![image](images/create-gist-dialog.png)
17+
![GitHub Gist creation dialog window](images/create-gist-dialog.png)
1818

1919
6. If you want the gist to be private, check the **Private Gist** checkbox.
2020

docs/contributing/making-changes-to-a-pull-request.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -6,7 +6,7 @@ When a topic branch is [checked out](review-a-pull-request-in-visual-studio.md),
66

77
If a Pull Request is checked out and the author adds new commits to the branch, then the option will be given to pull the changes locally. This works both for pull requests from the same repository and from a fork.
88

9-
![](images/pr-pull-changes.png)
9+
![Pulling changes by clicking the pull link button](images/pr-pull-changes.png)
1010

1111
## Pushing changes
1212

docs/contributing/publishing-an-existing-project-to-github.md

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -2,13 +2,13 @@
22

33
1. Open a solution in Visual Studio.
44
2. If solution is not already initialized as a Git repository, select **Add to Source Control** from the **File** menu.
5-
![Add to Source Control](images/add-to-source-control.png)
5+
![Location of Add to Source Control option in the file menu](images/add-to-source-control.png)
66
3. Open **Team Explorer**.
7-
![Open Team Explorer](images/open-team-explorer.png)
7+
![Location of Team Explorer option in the view menu](images/open-team-explorer.png)
88
4. In Team Explorer, click **Sync**.
9-
![Sync](images/team-explorer-sync.png)
9+
![Location of the sync button in the Team Explorer pane](images/team-explorer-sync.png)
1010
5. Click the **Publish to GitHub** button.
11-
![Publish to GitHub](images/publish-to-github.png)
11+
![Location of the Publish to GitHub button in the Team Explorer pane](images/publish-to-github.png)
1212
6. Enter a name and description for the repository on GitHub.
1313
7. Check the **Private Repository** box if you want to upload the repository as a private repository on GitHub. You must have a [Developer, Team or Business account](https://github.com/pricing) to create private repositories.
1414
8. Click the **Publish** button.

docs/contributing/reviewing-a-pull-request-in-visual-studio.md

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -6,21 +6,21 @@ GitHub for Visual Studio provides facilities for reviewing a pull request direct
66

77
2. Open **Team Explorer** and click the **Pull Requests** button to open the **GitHub** pane.
88

9-
![image](images/pull-requests-button.png)
9+
![Pull Requests button in the Team Explorer pane](images/pull-requests-button.png)
1010

1111
3. Click the title of the pull request to be reviewed.
1212

1313
## Viewing a pull request
1414

1515
The Pull Request Details view shows the current state of the pull request, including information about who created the pull request, the source and target branch, and the files changed.
1616

17-
![image](images/pr-details.png)
17+
![The details of a single pull request in the GitHub pane](images/pr-details.png)
1818

1919
## Checking out a pull request
2020

2121
To check out the pull request branch, click the **Checkout [branch]** link where [branch] is the name of the branch that will be checked out.
2222

23-
![image](images/pr-details-checkout-link.png)
23+
![Location of the checkout link in the GitHub pull request details page](images/pr-details-checkout-link.png)
2424

2525
If the pull request is from a fork then a remote will be added to the forked repository and the branch checked out locally. This remote will automatically be cleaned up when the local branch is deleted.
2626

@@ -30,6 +30,6 @@ If the pull request is from a fork then a remote will be added to the forked rep
3030

3131
To compare the contents of a file in the pull request with its content on the target branch, double click a file in the **Changed Files** tree. This will open the Visual Studio diff viewer. If the pull request has been checked out, the right hand pane will be editable.
3232

33-
![image](images/pr-diff-files.png)
33+
![Diff of two files in the Visual Studio diff viewer](images/pr-diff-files.png)
3434

3535
If the pull request is checked out, right clicking on a file on the **Changed Files** tree and selecting **Open File** will open the file for editing in Visual Studio.

docs/contributing/using-the-github-toolbar.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,7 @@
22

33
The GitHub pane toolbar provides a way to navigate between views, refresh views, and open the current view on GitHub.
44

5-
![Toolbar](images/github-pane-toolbar.png)
5+
![The GitHub pane toolbar](images/github-pane-toolbar.png)
66

77
1. Open a solution in a GitHub repository.
88
2. Open **Team Explorer** and click the **Pull Requests** button to open the **GitHub** pane.

docs/contributing/viewing-code-on-github.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -9,7 +9,7 @@ GitHub for Visual Studio enables easy navigation to code that exists on GitHub d
99

1010
## Viewing the selected code on GitHub
1111
1. Right click and select **Open on GitHub** from the **GitHub** submenu.
12-
![Open on GitHub](images/open-on-github.png)
12+
![Open on GitHub selection in the GitHub context submenu](images/open-on-github.png)
1313
2. Your browser will open and navigate to the code on GitHub.
1414

1515
## Copying the URL of the selected code's location on GitHub

0 commit comments

Comments
 (0)