Skip to content

Commit c3dd83c

Browse files
committed
Updates documention with remotes exanple
1 parent 77482f4 commit c3dd83c

File tree

3 files changed

+9
-9
lines changed

3 files changed

+9
-9
lines changed

CHANGELOG.md

Lines changed: 6 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -62,7 +62,7 @@ The format is based on [Keep a Changelog](http://keepachangelog.com/) and this p
6262
- Adds command-links to the `changes` hover annotation
6363
- Clicking on `Changes` will run the `Compare File Revisions` command (`gitlens.diffWith`)
6464
- Clicking the current and previous commit ids will run the `Show Commit Details` command (`gitlens.showQuickCommitDetails`)
65-
- Adds support for custom remote services - see [#120](https://github.com/eamodio/vscode-gitlens/issues/120)
65+
- Adds support for remote services with custom domains - see [#120](https://github.com/eamodio/vscode-gitlens/issues/120)
6666
- Adds support for the Bitbucket Server (previously called Stash) remote service - see [#120](https://github.com/eamodio/vscode-gitlens/issues/120)
6767
- Adds `Compare File Revisions` command (`gitlens.diffWith`) - compares the specified file revisions
6868
- Adds `Open Branches in Remote` command (`gitlens.openBranchesInRemote`) - opens the branches in the supported remote service
@@ -224,7 +224,7 @@ The format is based on [Keep a Changelog](http://keepachangelog.com/) and this p
224224

225225
### Fixed
226226
- Fixes excessive memory usage when parsing diffs
227-
- Fixes extra newline in multiline commit messages
227+
- Fixes extra newline in multi-line commit messages
228228
- Fixes (again) [#33](https://github.com/eamodio/vscode-gitlens/issues/33) - Commit messages can causes markdown formatting in hovers
229229

230230
## [4.0.1] - 2017-06-09
@@ -308,7 +308,7 @@ The format is based on [Keep a Changelog](http://keepachangelog.com/) and this p
308308
### Added
309309
- Improves performance
310310
- Reduces the number of git calls on known "untrackables"
311-
- Caches many more git commands to reduce git command roundtrips and parsing
311+
- Caches many more git commands to reduce git command round-trips and parsing
312312
- Increases the debounce (delay) on cursor movement to reduce lag when navigating around a file
313313
- Adds diff information (the line's previous version) into the active line hover when the current line is uncommitted
314314
- Adds `gitlens.statusBar.alignment` settings to control the alignment of the status bar -- thanks to [PR #72](https://github.com/eamodio/vscode-gitlens/pull/72) by Zack Schuster ([@zackschuster](https://github.com/zackschuster))!
@@ -499,7 +499,7 @@ The format is based on [Keep a Changelog](http://keepachangelog.com/) and this p
499499
### Fixed
500500
- Fixes issue with `gitlens.diffWithPrevious` command execution via code lens when the code lens was not at the document/file level
501501
- Fixes issue where full shas were displayed on the file/blame history explorers
502-
- Fixes [#30](https://github.com/eamodio/vscode-gitlens/issues/30) - Diff with Working Tree fails from repo/commit quickpick list if file was renamed (and the commit was before the rename)
502+
- Fixes [#30](https://github.com/eamodio/vscode-gitlens/issues/30) - Diff with Working Tree fails from repo/commit quick pick list if file was renamed (and the commit was before the rename)
503503
- Fixes various other quick pick menu command issues when a file was renamed
504504
- Fixes various issues when caching is disabled
505505
- Fixes issues with parsing commits history
@@ -602,7 +602,7 @@ The format is based on [Keep a Changelog](http://keepachangelog.com/) and this p
602602

603603
## [2.9.0]
604604
### Changed
605-
- To accomodate the realization that blame information is invalid when a file has unsaved changes, the following behavior changes have been made
605+
- To accommodate the realization that blame information is invalid when a file has unsaved changes, the following behavior changes have been made
606606
- Status bar blame information will hide
607607
- Code lens change to a `Cannot determine...` message and become unclickable
608608
- Many menu choices and commands will hide
@@ -640,7 +640,7 @@ The format is based on [Keep a Changelog](http://keepachangelog.com/) and this p
640640

641641
### Fixed
642642
- Fixes [#34](https://github.com/eamodio/vscode-gitlens/issues/34) - Open file should open the selected version of the file
643-
- Fixes some issue where some editors opened by the quickpick would not be opened in preview tabs
643+
- Fixes some issue where some editors opened by the quick pick would not be opened in preview tabs
644644
- Fixes issue where copy to clipboard commands would fail if there was no active editor
645645
- Fixes issue where active line annotations would show for opened versioned files
646646
- Fixes issue where code lens compare commands on opened versioned files would fail

README.md

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -173,7 +173,7 @@ GitLens provides an unobtrusive blame annotation at the end of the current line,
173173
- Adds a `Search Commits` command (`gitlens.showCommitSearch`) with a shortcut of `alt+/` to search for commits by message, author, file(s), or commit id
174174

175175
- Adds commands to open files, commits, branches, and the repository in the supported remote services, currently **BitBucket, GitHub, GitLab, and Visual Studio Team Services** — only available if a Git upstream service is configured in the repository
176-
- Also supports [custom](#custom-remote-settings) remote services, such as **BitBucket, Bitbucket Server (previously called Stash), GitHub, GitLab**
176+
- Also supports [remote services with custom domains](#custom-remotes-settings), such as **BitBucket, Bitbucket Server (previously called Stash), GitHub, GitHub Enterprise, GitLab**
177177
- `Open Branches in Remote` command (`gitlens.openBranchesInRemote`) — opens the branches in the supported remote service
178178
- `Open Branch in Remote` command (`gitlens.openBranchInRemote`) — opens the current branch commits in the supported remote service
179179
- `Open Commit in Remote` command (`gitlens.openCommitInRemote`) — opens the commit revision of the active line in the supported remote service
@@ -356,7 +356,7 @@ GitLens is highly customizable and provides many configuration settings to allow
356356

357357
|Name | Description
358358
|-----|------------
359-
|`gitlens.remotes`|Specifies the custom remote services (code-hosting)"
359+
|`gitlens.remotes`|Specifies any custom domains for remote (code-hosting) services<br />Example: ```"gitlens.remotes": [{ "domain": "git.corporate-url.com", "type": "GitHub" }]```
360360

361361
### Status Bar Settings
362362

package.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -474,7 +474,7 @@
474474
}
475475
},
476476
"uniqueItems": true,
477-
"description": "Specifies the custom remote services (code-hosting)"
477+
"description": "Specifies any custom domains for remote (code-hosting) services"
478478
},
479479
"gitlens.statusBar.enabled": {
480480
"type": "boolean",

0 commit comments

Comments
 (0)