You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
- Adds `Open Branches in Remote` command (`gitlens.openBranchesInRemote`) - opens the branches in the supported remote service
61
68
- Adds `Stash Changes` command (`gitlens.stashSave`) to the source control group context menu -- can now stash a group of files
62
69
- Adds `Stash Changes` command (`gitlens.stashSave`) to the source control resource context menu -- can now stash individual files (works with multi-select too!)
@@ -87,6 +94,8 @@ The format is based on [Keep a Changelog](http://keepachangelog.com/) and this p
87
94
### Fixed
88
95
- Fixes an issue where remote branches couldn't be opened properly in their remote service
89
96
- Fixes [#130](https://github.com/eamodio/vscode-gitlens/issues/130) - First-run "Thank you for choosing GitLens! [...]" info message shown on every start up
97
+
- Fixes [#120](https://github.com/eamodio/vscode-gitlens/issues/120) - Feature Request: "Open in Remote" support for custom repositories
98
+
- Fixes an issue where sometimes diffs (via branch name) wouldn't open properly
90
99
91
100
## [4.4.3] - 2017-08-30
92
101
## Fixed
@@ -158,7 +167,7 @@ The format is based on [Keep a Changelog](http://keepachangelog.com/) and this p
158
167
159
168
## [4.2.0] - 2017-06-27
160
169
## Added
161
-
- Adds `Compare File with Revision...` command (`gitlens.diffWithRevision`) - compare the active file with the selected revision of the same file
170
+
- Adds `Compare File with Revision...` command (`gitlens.diffWithRevision`) - compares the active file with the selected revision of the same file
162
171
- Adds `Open Changed Files` command (`gitlens.openChangedFiles`) to the source control group context menu
163
172
- Adds `Close Unchanged Files` command (`gitlens.closeUnchangedFiles`) to the source control group context menu
164
173
- Adds `Open File in Remote` command (`gitlens.openFileInRemote`) to the source control resource context menu
- Contains the author, date, and message of the line's most recent commit, by [default](#line-blame-annotation-settings)
23
23
- Adds a `details` hover annotation to the current line annotation, which provides more commit details ([optional](#line-blame-annotation-settings), on by default)
24
+
- Clicking the commit id will run the `Show Commit Details` command (`gitlens.showQuickCommitDetails`)
24
25
- Adds a `changes` (diff) hover annotation to the current line annotation, which provides **instant** access to the line's previous version ([optional](#line-blame-annotation-settings), on by default)
26
+
- Clicking on `Changes` will run the `Compare File Revisions` command (`gitlens.diffWith`)
27
+
- Clicking the current and previous commit ids will run the `Show Commit Details` command (`gitlens.showQuickCommitDetails`)
@@ -31,6 +34,7 @@ GitLens provides an unobtrusive blame annotation at the end of the current line,
31
34
- Choose between `gutter` (default) and `hover`[annotation styles](#file-blame-annotation-settings)
32
35
- Contains the commit message and date, by [default](#file-blame-annotation-settings)
33
36
- Adds a `details` hover annotation to the line's annotation, which provides more commit details ([optional](#file-blame-annotation-settings), on by default)
37
+
- Clicking the commit id will run the `Show Commit Details` command (`gitlens.showQuickCommitDetails`)
34
38
- Adds a `heatmap` (age) indicator to the gutter annotations (on right edge by [default](#file-blame-annotation-settings)), which provides an easy, at-a-glance way to tell the age of a line ([optional](#file-blame-annotation-settings), on by default)
35
39
- Indicator ranges from bright yellow (newer) to dark brown (older)
36
40
- Press `Escape` to quickly toggle the annotations off
@@ -61,7 +65,10 @@ GitLens provides an unobtrusive blame annotation at the end of the current line,
61
65
- Adds on-demand, [customizable](#file-recent-changes-annotation-settings) and [themeable](#theme-settings), **recent changes annotations** of the whole file
62
66
- Highlights all of lines changed in the most recent commit
63
67
- Adds a `details` hover annotation to each line, which provides more commit details ([optional](#file-blame-annotation-settings), on by default)
68
+
- Clicking the commit id will run the `Show Commit Details` command (`gitlens.showQuickCommitDetails`)
64
69
- Adds a `changes` (diff) hover annotation to each line, which provides **instant** access to the line's previous version ([optional](#file-recent-changes-annotation-settings), on by default)
70
+
- Clicking on `Changes` will run the `Compare File Revisions` command (`gitlens.diffWith`)
71
+
- Clicking the current and previous commit ids will run the `Show Commit Details` command (`gitlens.showQuickCommitDetails`)
65
72
- Press `Escape` to quickly toggle the annotations off
66
73
67
74
- Adds `Toggle Recent File Changes Annotations` command (`gitlens.toggleFileRecentChanges`) to toggle the recent changes annotations on and off
@@ -343,6 +350,12 @@ GitLens is highly customizable and provides many configuration settings to allow
343
350
|`gitlens.gitExplorer.stashFormat`|Specifies the format of stashed changes in the `GitLens` custom view<br />Available tokens<br /> ${id} - commit id<br /> ${author} - commit author<br /> ${message} - commit message<br /> ${ago} - relative commit date (e.g. 1 day ago)<br /> ${date} - formatted commit date (format specified by `gitlens.statusBar.dateFormat`)<br /> ${authorAgo} - commit author, relative commit date<br />See https://github.com/eamodio/vscode-gitlens/wiki/Advanced-Formatting for advanced formatting
344
351
|`gitlens.gitExplorer.stashFileFormat`|Specifies the format of a stashed file in the `GitLens` custom view<br />Available tokens<br /> ${file} - file name<br /> ${filePath} - file name and path<br /> ${path} - file path
345
352
353
+
### GitLens Custom Remotes Settings
354
+
355
+
|Name | Description
356
+
|-----|------------
357
+
|`gitlens.remotes`|Specifies the custom remote services (code-hosting)"
0 commit comments