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
Copy file name to clipboardExpand all lines: CHANGELOG.md
+6Lines changed: 6 additions & 0 deletions
Display the source diff
Display the rich diff
Original file line number
Diff line number
Diff line change
@@ -8,6 +8,11 @@ The format is based on [Keep a Changelog](http://keepachangelog.com/) and this p
8
8
9
9
### Added
10
10
11
+
- Adds rebase and/or merge status when applicable to the _Commits_ and _Repositories_ views
12
+
-**Merging into <branch>** or **Resolve conflicts before merging into <branch>**— lists any conflicted files. Conflicted files show comparisons with the common base of the current and incoming changes to aid in resolving the conflict by making it easier to see where changes originated
13
+
-**Rebasing <branch>** or **Resolve conflicts to continue rebasing <branch>**— shows the number of rebase steps left, the commit the rebase is paused at, and lists any conflicted files. Conflicted files show comparisons with the common base of the current and incoming changes to aid in resolving the conflict by making it easier to see where changes originated
14
+
- Adds rebase and/or merge conflict status when applicable to the _File History_ and _Line History_ views
15
+
-**Merge Changes**— show comparisons with the common base of the current and incoming changes to aid in resolving the conflict by making it easier to see where changes originated
11
16
- Adds status indicator colors to pull request icons in GitLens views
12
17
- Adds a new _Quick Open File History_ command to all places where _Open File History_ already exists — closes [#1156](https://github.com/eamodio/vscode-gitlens/issues/1156)
13
18
- Adds the _Add Remote_ command to the branch status in the _Branches_, _Commits_, and _Repositories_ views when there are no Git remotes configured
@@ -16,6 +21,7 @@ The format is based on [Keep a Changelog](http://keepachangelog.com/) and this p
16
21
- Adds a new _Copy Current Branch Name_ (`gitlens.copyCurrentBranch`) command to copy the current branch name to the clipboard — closes [#1306](https://github.com/eamodio/vscode-gitlens/issues/1306)— thanks to [PR #1307](https://github.com/eamodio/vscode-gitlens/pull/1307) by Ken Hom ([@kh0m](https://github.com/kh0m))
17
22
- Adds a _Switch to Text_ button on the _Interactive Rebase Editor_ to open the text rebase todo file — note that closing either document will start the rebase
18
23
- Adds a notification which asks if you want to create a pull request after publishing a new branch
24
+
- Adds CodeStream partnership
19
25
- Adds a `gitlens.views.branches.reveal` setting to specify whether to reveal branches in the _Branches_ view, otherwise they will be revealed in the _Repositories_ view
20
26
- Adds a `gitlens.views.commits.reveal` setting to specify whether to reveal commits in the _Commits_ view, otherwise they will be revealed in the _Repositories_ view
21
27
- Adds a `gitlens.views.remotes.reveal` setting to specify whether to reveal remotes in the _Remotes_ view, otherwise they will be revealed in the _Repositories_ view
Copy file name to clipboardExpand all lines: README.md
+6Lines changed: 6 additions & 0 deletions
Display the source diff
Display the rich diff
Original file line number
Diff line number
Diff line change
@@ -263,6 +263,8 @@ The _Commits_ view lists all of the commits on the current branch, and additiona
263
263
-**Up to date with <remote>**— shown when the current branch is up to date with the upstream remote
264
264
-**Changes to pull from <remote>**— lists all of the commits waiting to be pulled when the current branch has commits that are waiting to be pulled from the upstream remote
265
265
-**Changes to push to <remote>**— lists of all the files changed in the unpublished commits when the current branch has (unpublished) commits that waiting to be pushed to the upstream remote
266
+
-**Merging into <branch>** or **Resolve conflicts before merging into <branch>**— lists any conflicted files. Conflicted files show comparisons with the common base of the current and incoming changes to aid in resolving the conflict by making it easier to see where changes originated
267
+
-**Rebasing <branch>** or **Resolve conflicts to continue rebasing <branch>**— shows the number of rebase steps left, the commit the rebase is paused at, and lists any conflicted files. Conflicted files show comparisons with the common base of the current and incoming changes to aid in resolving the conflict by making it easier to see where changes originated
266
268
- any associated pull request — shows any opened pull request associated with the current branch
267
269
268
270
---
@@ -321,6 +323,8 @@ The file history view lists all of the commits that changed the current file on
321
323
- the ability to change the current base branch or reference when computing the file or line history
322
324
- (file history only) a toggle to follow renames across the current file
323
325
- (file history only) a toggle to show commits from all branches rather than just from the current base branch or reference
326
+
- merge conflict status when applicable
327
+
-**Merge Changes**— show comparisons with the common base of the current and incoming changes to aid in resolving the conflict by making it easier to see where changes originated
324
328
325
329
---
326
330
@@ -336,6 +340,8 @@ The line history view lists all of the commits that changed the selected lines o
336
340
337
341
- a toggle to pin (pause) the automatic tracking of the current editor
338
342
- the ability to change the current base branch or reference when computing the line history
343
+
- merge conflict status when applicable
344
+
-**Merge Changes**— show comparisons with the common base of the current and incoming changes to aid in resolving the conflict by making it easier to see where changes originated
0 commit comments