Skip to content

Commit

Permalink
2.4.0
Browse files Browse the repository at this point in the history
  • Loading branch information
reduckted committed Mar 11, 2021
1 parent 1324c33 commit 7d22992
Show file tree
Hide file tree
Showing 5 changed files with 37 additions and 18 deletions.
1 change: 1 addition & 0 deletions .vscode/spellright.dict
Original file line number Diff line number Diff line change
@@ -0,0 +1 @@
Gitiles
6 changes: 6 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,3 +1,9 @@
# 2.4.0 (2021-03-11)

## New Features

- ⭐ Added support for Gitiles (thanks @csm10495).

# 2.3.0 (2021-02-07)

## New Features
Expand Down
44 changes: 28 additions & 16 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -7,6 +7,7 @@ Works with:
- Azure DevOps Cloud and Server
- Bitbucket Cloud and Server
- GitHub and GitHub Enterprise
- Gitiles (Gerrit)
- GitLab (SaaS, Community Edition and Enterprise Edition)
- Visual Studio Team Services

Expand Down Expand Up @@ -68,46 +69,57 @@ If you use an on-premise server, you will need to specify the URLs of those serv

Make sure you include any port numbers (if it's not port 80) and context paths.

### GitHub Enterprise
### Azure DevOps Server

```json
"gitweblinks.gitHubEnterprise": [
"gitweblinks.azureDevOpsServer": [
{
"http": "https://local-github",
"ssh": "git@local-github"
"http": "https://local-devops",
"ssh": "git@local-devops"
}
]
```

### GitLab Enterprise/Community Edition
### Bitbucket Server

```json
"gitweblinks.gitLabEnterprise": [
"gitweblinks.bitbucketServer": [
{
"http": "https://local-gitlab",
"ssh": "git@local-gitlab"
"http": "https://local-bitbucket:7990/context",
"ssh": "git@local-bitbucket:7999"
}
]
```

### Bitbucket Server
### GitHub Enterprise

```json
"gitweblinks.bitbucketServer": [
"gitweblinks.gitHubEnterprise": [
{
"http": "https://local-bitbucket:7990/context",
"ssh": "git@local-bitbucket:7999"
"http": "https://local-github",
"ssh": "git@local-github"
}
]
```

### Azure DevOps Server
### Gitiles

```json
"gitweblinks.azureDevOpsServer": [
"gitweblinks.gitiles": [
{
"http": "https://local-devops",
"ssh": "git@local-devops"
"http": "https://git.mygitiles.com:8080/plugins/gitiles",
"ssh": "ssh://git.mygitiles.com:29418"
}
]
```

### GitLab Enterprise/Community Edition

```json
"gitweblinks.gitLabEnterprise": [
{
"http": "https://local-gitlab",
"ssh": "git@local-gitlab"
}
]
```
Expand Down
2 changes: 1 addition & 1 deletion package-lock.json

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

2 changes: 1 addition & 1 deletion package.json
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@
"name": "vscode-gitweblinks",
"displayName": "Git Web Links for VS Code",
"description": "Copy links to files in their online Git repositories",
"version": "2.3.0",
"version": "2.4.0",
"publisher": "reduckted",
"homepage": "https://github.com/reduckted/vscode-gitweblinks",
"repository": {
Expand Down

0 comments on commit 7d22992

Please sign in to comment.