How can I make magit display the file sizes (at least of the unstaged files) in the status buffer? This would help me in avoiding to add large files directly to git.
Here is an example of what the status buffer might look like right now:
Local: master ~/some/repo/
Remote: master @ server (git@server.com:path/to/repo.git)
Head: ea55b10 last commit message
Untracked files:
new_file_1.ext
new_file_2.ext
Unstaged changes:
Modified old_file_1.ext
Modified old_file_2.ext
Unpushed commits:
ea55b10 last commit message
And here is what I'd like to see:
Local: master ~/some/repo/
Remote: master @ server (git@server.com:path/to/repo.git)
Head: ea55b10 last commit message
Untracked files:
new_file_1.ext 10K
new_file_2.ext 5M
Unstaged changes:
Modified old_file_1.ext 100K
Modified old_file_2.ext 530
Unpushed commits:
ea55b10 last commit message