Currently, git status
lists the files in alphabetically order, How can I order/sort the files in a way where modified files are shown first, then deleted, then new files respectively. It gets easier to review all the files before committing
Current output
deleted: app/Books.php
new file: app/Permissions.php
new file: app/Roles.php
modified: app/User.php
modified: composer.json
modified: composer.lock
new file: database/seeds/RoleSeeder.php
modified: routes/web.php
Expected
modified: app/User.php
modified: composer.json
modified: composer.lock
modified: routes/web.php
deleted: app/Books.php // then deleted
new file: app/Permissions.php // then new files
new file: app/Roles.php
new file: database/seeds/RoleSeeder.php