Skip to content

Commit 3835193

Browse files
committed
Updates images
1 parent d161084 commit 3835193

11 files changed

+18
-18
lines changed

CHANGELOG.md

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -10,7 +10,7 @@ The format is based on [Keep a Changelog](http://keepachangelog.com/) and this p
1010

1111
- `Repository View` - provides a full repository explorer
1212

13-
![GitLens Repository view](https://raw.githubusercontent.com/eamodio/vscode-gitlens/master/images/screenshot-git-custom-view-repository.png)
13+
![GitLens Repository view](https://raw.githubusercontent.com/eamodio/vscode-gitlens/develop/images/screenshot-git-custom-view-repository.png)
1414

1515
- `Repository Status` node — provides the status of the repository
1616
- Provides the name of the current branch, its upstream tracking branch (if available), and its upstream status (if available)
@@ -48,7 +48,7 @@ The format is based on [Keep a Changelog](http://keepachangelog.com/) and this p
4848

4949
- `History View` - provides the revision history of the active file
5050

51-
![GitLens History view](https://raw.githubusercontent.com/eamodio/vscode-gitlens/master/images/screenshot-git-custom-view-history.png)
51+
![GitLens History view](https://raw.githubusercontent.com/eamodio/vscode-gitlens/develop/images/screenshot-git-custom-view-history.png)
5252

5353
- Automatically updates to track the active editor
5454
- Provides a context menu with `Open File`, `Open File in Remote`, and `Refresh` commands
@@ -147,7 +147,7 @@ The format is based on [Keep a Changelog](http://keepachangelog.com/) and this p
147147
## Added
148148
- Adds `Git Stashes` custom view to the Explorer activity
149149

150-
![Git Stashes view](https://raw.githubusercontent.com/eamodio/vscode-gitlens/master/images/screenshot-git-stashes.png)
150+
![Git Stashes view](https://raw.githubusercontent.com/eamodio/vscode-gitlens/develop/images/screenshot-git-stashes.png)
151151

152152
- Shows all of the stashed changes in the repository
153153
- Provides toolbar buttons to `Stash Changes` and `Refresh`

README.md

Lines changed: 15 additions & 15 deletions
Original file line numberDiff line numberDiff line change
@@ -10,24 +10,24 @@ GitLens **supercharges** the built-in Visual Studio Code Git capabilities. It he
1010
GitLens provides an unobtrusive blame annotation at the end of the current line, a status bar item showing the commit information (author and date, by default) of the current line, code lens showing the most recent commit and # of authors of the file and/or code block, and many commands for exploring commits and histories, comparing and navigating revisions, stash access, repository status, and more. GitLens is also [highly customizable](#extension-settings) to meet your specific needs — find code lens intrusive or the current line blame annotation distracting — no problem, it is easy to [turn them off or change how they behave](#extension-settings).
1111

1212
### Preview — featuring blame annotations, code lens, status bar details, quick pick menus for navigation and exploration, compare with previous, and more
13-
![GitLens preview](https://raw.githubusercontent.com/eamodio/vscode-gitlens/master/images/gitlens-preview.gif)
13+
![GitLens preview](https://raw.githubusercontent.com/eamodio/vscode-gitlens/develop/images/gitlens-preview.gif)
1414

1515
## Features
1616

1717
### Git Blame Annotations
1818

1919
- Adds an unobtrusive, highly [customizable](#line-blame-annotation-settings) and [themeable](#theme-settings), **Git blame annotation** to the end of the current line ([optional](#line-blame-annotation-settings), on by default)
2020

21-
![Line Blame Annotation](https://raw.githubusercontent.com/eamodio/vscode-gitlens/master/images/screenshot-line-blame-annotation.png)
21+
![Line Blame Annotation](https://raw.githubusercontent.com/eamodio/vscode-gitlens/develop/images/screenshot-line-blame-annotation.png)
2222
- Contains the author, date, and message of the line's most recent commit, by [default](#line-blame-annotation-settings)
2323
- Adds a `details` hover annotation to the current line annotation, which provides more commit details ([optional](#line-blame-annotation-settings), on by default)
2424
- 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)
2525

26-
![Line Blame Annotations](https://raw.githubusercontent.com/eamodio/vscode-gitlens/master/images/screenshot-line-blame-annotations.png)
26+
![Line Blame Annotations](https://raw.githubusercontent.com/eamodio/vscode-gitlens/develop/images/screenshot-line-blame-annotations.png)
2727

2828
- Adds on-demand, beautiful, highly [customizable](#file-blame-annotation-settings) and [themeable](#theme-settings), **Git blame annotations** of the whole file
2929

30-
![File Blame Annotation](https://raw.githubusercontent.com/eamodio/vscode-gitlens/master/images/screenshot-file-blame-annotations.png)
30+
![File Blame Annotation](https://raw.githubusercontent.com/eamodio/vscode-gitlens/develop/images/screenshot-file-blame-annotations.png)
3131
- Choose between `gutter` (default) and `hover` [annotation styles](#file-blame-annotation-settings)
3232
- Contains the commit message and date, by [default](#file-blame-annotation-settings)
3333
- Adds a `details` hover annotation to the line's annotation, which provides more commit details ([optional](#file-blame-annotation-settings), on by default)
@@ -37,7 +37,7 @@ GitLens provides an unobtrusive blame annotation at the end of the current line,
3737

3838
- Adds [customizable](#status-bar-settings) **blame information** about the current line to the **status bar** ([optional](#status-bar-settings), on by default)
3939

40-
![Status Bar Blame](https://raw.githubusercontent.com/eamodio/vscode-gitlens/master/images/screenshot-status-bar.png)
40+
![Status Bar Blame](https://raw.githubusercontent.com/eamodio/vscode-gitlens/develop/images/screenshot-status-bar.png)
4141
- Contains the commit author and date, by [default](#status-bar-settings)
4242
- Clicking the status bar item will, by [default](#status-bar-settings), show a **commit details quick pick menu** with commands for comparing, navigating and exploring commits, and more
4343
- Provides [customizable](#status-bar-settings) click behavior — choose between one of the following
@@ -70,7 +70,7 @@ GitLens provides an unobtrusive blame annotation at the end of the current line,
7070

7171
- Adds **code lens** to the top of the file and on code blocks ([optional](#code-lens-settings), on by default)
7272

73-
![Git Code Lens](https://raw.githubusercontent.com/eamodio/vscode-gitlens/master/images/screenshot-code-lens.png)
73+
![Git Code Lens](https://raw.githubusercontent.com/eamodio/vscode-gitlens/develop/images/screenshot-code-lens.png)
7474
- **Recent Change** — author and date of the most recent commit for the file or code block
7575
- Clicking the code lens will, by [default](#code-lens-settings), show a **commit file details quick pick menu** with commands for comparing, navigating and exploring commits, and more
7676
- **Authors** — number of authors of the file or code block and the most prominent author (if there is more than one)
@@ -115,7 +115,7 @@ GitLens provides an unobtrusive blame annotation at the end of the current line,
115115

116116
- `Repository View` - provides a full repository explorer
117117

118-
![GitLens Repository view](https://raw.githubusercontent.com/eamodio/vscode-gitlens/master/images/screenshot-git-custom-view-repository.png)
118+
![GitLens Repository view](https://raw.githubusercontent.com/eamodio/vscode-gitlens/develop/images/screenshot-git-custom-view-repository.png)
119119

120120
- `Repository Status` node — provides the status of the repository
121121
- Provides the name of the current branch, its upstream tracking branch (if available), and its upstream status (if available)
@@ -153,7 +153,7 @@ GitLens provides an unobtrusive blame annotation at the end of the current line,
153153

154154
- `History View` - provides the revision history of the active file
155155

156-
![GitLens History view](https://raw.githubusercontent.com/eamodio/vscode-gitlens/master/images/screenshot-git-custom-view-history.png)
156+
![GitLens History view](https://raw.githubusercontent.com/eamodio/vscode-gitlens/develop/images/screenshot-git-custom-view-history.png)
157157

158158
- Automatically updates to track the active editor
159159
- Provides a context menu with `Open File`, `Open File in Remote`, and `Refresh` commands
@@ -173,7 +173,7 @@ GitLens provides an unobtrusive blame annotation at the end of the current line,
173173

174174
- Adds a `Show Current Branch History` command (`gitlens.showQuickRepoHistory`) with a shortcut of `shift+alt+h` to show a paged **branch history quick pick menu** of the current branch for exploring its commit history
175175

176-
![Branch History Quick Pick Menu](https://raw.githubusercontent.com/eamodio/vscode-gitlens/master/images/screenshot-branch-history.png)
176+
![Branch History Quick Pick Menu](https://raw.githubusercontent.com/eamodio/vscode-gitlens/develop/images/screenshot-branch-history.png)
177177

178178
- Provides entries to `Show Commit Search` and `Open Branch in <remote-service>` when available
179179
- Navigate back to the previous quick pick menu via `alt+left arrow`, if available
@@ -184,15 +184,15 @@ GitLens provides an unobtrusive blame annotation at the end of the current line,
184184

185185
- Adds a `Show File History` command (`gitlens.showQuickFileHistory`) to show a paged **file history quick pick menu** of the active file for exploring its commit history
186186

187-
![File History Quick Pick Menu](https://raw.githubusercontent.com/eamodio/vscode-gitlens/master/images/screenshot-file-history.png)
187+
![File History Quick Pick Menu](https://raw.githubusercontent.com/eamodio/vscode-gitlens/develop/images/screenshot-file-history.png)
188188

189189
- Provides entries to `Show Branch History` and `Open File in <remote-service>` when available
190190
- Navigate back to the previous quick pick menu via `alt+left arrow`, if available
191191
- Navigate pages via `alt+,` and `alt+.` to go backward and forward respectively
192192

193193
- Adds a `Show Commit Details` command (`gitlens.showQuickCommitDetails`) to show a **commit details quick pick menu** of the most recent commit of the active file
194194

195-
![Commit Details Quick Pick Menu](https://raw.githubusercontent.com/eamodio/vscode-gitlens/master/images/screenshot-commit-details.png)
195+
![Commit Details Quick Pick Menu](https://raw.githubusercontent.com/eamodio/vscode-gitlens/develop/images/screenshot-commit-details.png)
196196

197197
- Quickly see the set of files changed in the commit, complete with status indicators for adds, changes, renames, and deletes
198198
- Provides entries to `Copy to Clipboard`, `Directory Compare`, `Open Changed Files`, `Open File in <remote-service>` when available, and more
@@ -202,15 +202,15 @@ GitLens provides an unobtrusive blame annotation at the end of the current line,
202202

203203
- Adds a `Show Commit File Details` command (`gitlens.showQuickCommitFileDetails`) with a shortcut of `alt+c` to show a **file commit details quick pick menu** of the most recent commit of the active file
204204

205-
![Commit File Details Quick Pick Menu](https://raw.githubusercontent.com/eamodio/vscode-gitlens/master/images/screenshot-commit-file-details.png)
205+
![Commit File Details Quick Pick Menu](https://raw.githubusercontent.com/eamodio/vscode-gitlens/develop/images/screenshot-commit-file-details.png)
206206

207207
- Provides entries to `Show Commit Details`, `Show File History`, `Compare File with...`, `Copy to Clipboard`, `Open File`, `Open File in <remote-service>` when available, and more
208208
- Navigate back to the previous quick pick menu via `alt+left arrow`, if available
209209
- Use the `alt+right arrow` shortcut on an entry to execute it without closing the quick pick menu, if possible — commands that open windows outside of VS Code will still close the quick pick menu unless [`"gitlens.advanced.quickPick.closeOnFocusOut": false`](#extension-settings) is set
210210

211211
- Adds a `Show Repository Status` command (`gitlens.showQuickRepoStatus`) with a shortcut of `alt+s` to show a **repository status quick pick menu** for visualizing the current repository status
212212

213-
![Repository Status Quick Pick Menu](https://raw.githubusercontent.com/eamodio/vscode-gitlens/master/images/screenshot-repo-status.png)
213+
![Repository Status Quick Pick Menu](https://raw.githubusercontent.com/eamodio/vscode-gitlens/develop/images/screenshot-repo-status.png)
214214

215215
- Quickly see upstream status (if an Git upstream is configured) — complete with ahead and behind information
216216
- If you are ahead of the upstream, an entry will be shown with the number of commits ahead. Choosing it will show a limited **branch history quick pick menu** containing just the commits ahead of the upstream
@@ -222,14 +222,14 @@ GitLens provides an unobtrusive blame annotation at the end of the current line,
222222

223223
- Adds a `Show Stashed Changes` command (`gitlens.showQuickStashList`) to show a **stashed changes quick pick menu** for exploring your repository stash history
224224

225-
![Stashed Changes Quick Pick Menu](https://raw.githubusercontent.com/eamodio/vscode-gitlens/master/images/screenshot-stash-list.png)
225+
![Stashed Changes Quick Pick Menu](https://raw.githubusercontent.com/eamodio/vscode-gitlens/develop/images/screenshot-stash-list.png)
226226

227227
- Provides entries to `Stash Changes`
228228
- Navigate back to the previous quick pick menu via `alt+left arrow`, if available
229229

230230
- Choosing a stash entry shows a **stash details quick pick menu** which is very similar to the **commit details quick pick menu** above
231231

232-
![Stash Details Quick Pick Menu](https://raw.githubusercontent.com/eamodio/vscode-gitlens/master/images/screenshot-stash-details.png)
232+
![Stash Details Quick Pick Menu](https://raw.githubusercontent.com/eamodio/vscode-gitlens/develop/images/screenshot-stash-details.png)
233233

234234
- Quickly see the set of files changed in the stash, complete with status indicators for adds, changes, renames, and deletes
235235
- Provides entries to `Copy Message to Clipboard`, `Directory Compare`, and `Open Changed Files`
-26.7 KB
Loading
-13.1 KB
Loading
-22.5 KB
Loading

images/screenshot-file-history.png

-15.6 KB
Loading
27.8 KB
Loading
20 KB
Loading

images/screenshot-repo-status.png

-22.6 KB
Loading
-18.1 KB
Loading

0 commit comments

Comments
 (0)