Skip to content

Commit ca56e40

Browse files
committed
Fixed: Incorrect error message when there are uncommitted changes.
1 parent f6880fb commit ca56e40

File tree

4 files changed

+7
-3
lines changed

4 files changed

+7
-3
lines changed

CHANGELOG.md

Lines changed: 4 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,7 @@
1+
## 1.8.1+1
2+
3+
* **Fixed**: Incorrect error message when there are uncommitted changes.
4+
15
## 1.8.1
26

37
* Handle temporary lock errors when opening local store boxes.

lib/src/git/git.dart

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -93,7 +93,7 @@ class GitCommands {
9393
(r) => r != "",
9494
(r) {
9595
final sb = StringBuffer(
96-
'There are unstaged changes. Commit or reset them to proceed.');
96+
'There are uncommitted changes. Commit or reset them to proceed.');
9797
if (printChanges) {
9898
sb
9999
..writeln()

lib/src/version.dart

Lines changed: 1 addition & 1 deletion
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

pubspec.yaml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -4,7 +4,7 @@ homepage: https://github.com/innim/
44
repository: https://github.com/Innim/alex
55
issue_tracker: https://github.com/Innim/alex/issues
66

7-
version: 1.8.1
7+
version: 1.8.1+1
88

99
environment:
1010
sdk: ">=2.19.6 <4.0.0"

0 commit comments

Comments
 (0)