mirror of
https://github.com/GitJournal/GitJournal.git
synced 2025-09-12 14:09:12 +08:00
Add a GitResetLast command
This way we can revert the last committed change.
This commit is contained in:
@ -88,6 +88,12 @@ class GitApp extends StatelessWidget {
|
||||
);
|
||||
},
|
||||
),
|
||||
RaisedButton(
|
||||
child: Text("Git Reset Last"),
|
||||
onPressed: () async {
|
||||
gitResetLast(basePath);
|
||||
},
|
||||
),
|
||||
RaisedButton(
|
||||
child: Text("Git Migrate"),
|
||||
onPressed: () async {
|
||||
|
Reference in New Issue
Block a user