Skip to content

Commit de410f3

Browse files
committed
Updates CHANGELOG
1 parent 6effd60 commit de410f3

File tree

2 files changed

+12
-0
lines changed

2 files changed

+12
-0
lines changed

CHANGELOG.md

Lines changed: 6 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -8,6 +8,11 @@ The format is based on [Keep a Changelog](http://keepachangelog.com/) and this p
88

99
### Added
1010

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
1116
- Adds status indicator colors to pull request icons in GitLens views
1217
- 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)
1318
- 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
1621
- 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))
1722
- 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
1823
- Adds a notification which asks if you want to create a pull request after publishing a new branch
24+
- Adds CodeStream partnership
1925
- 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
2026
- 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
2127
- 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

README.md

Lines changed: 6 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -263,6 +263,8 @@ The _Commits_ view lists all of the commits on the current branch, and additiona
263263
- **Up to date with <remote>** — shown when the current branch is up to date with the upstream remote
264264
- **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
265265
- **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
266268
- any associated pull request — shows any opened pull request associated with the current branch
267269

268270
---
@@ -321,6 +323,8 @@ The file history view lists all of the commits that changed the current file on
321323
- the ability to change the current base branch or reference when computing the file or line history
322324
- (file history only) a toggle to follow renames across the current file
323325
- (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
324328

325329
---
326330

@@ -336,6 +340,8 @@ The line history view lists all of the commits that changed the selected lines o
336340

337341
- a toggle to pin (pause) the automatic tracking of the current editor
338342
- 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
339345

340346
---
341347

0 commit comments

Comments
 (0)