When I type git status
(with advice.statusHints
= False
) I get something like:
On branch main
Changes to be committed:
new file: file1
Changed not staged for commit:
modified: file2
Untracked files:
file3
Is it possible to customise this printed output so it could look something like:
On branch main
$$
new file: file1
**
modified: file2
%%
file3
This is just an example, but it could make things more concise. Is it possible to do anything like this?