I am working on a project where there are VERY many changes/deletes/additions in every commit, and I am wondering if there is a way to "collapse" those changes when calling git status
. So instead of getting a very long list along the lines of the example below:
deleted: UnityMainApp/Library/metadata/ff/ffcfeb6024f134f73b27fbdd351195a6
deleted: UnityMainApp/Library/shadercompiler-UnityShaderCompiler5.log
deleted: UnityMainApp/Library/shadercompiler-UnityShaderCompiler6.log
deleted: UnityMainApp/Library/shadercompiler-UnityShaderCompiler7.log
modified: UnityMainApp/QCAR/somedata16
deleted: UnityMainApp/UnityMainApp.sln
deleted: UnityMainApp/UnityMainApp.userprefs
I would love to display the information as:
1 deleted in: UnityMainApp/Library/metadata/ff
3 deleted in: UnityMainApp/Library
1 modified in: UnityMainApp/QCAR
2 deleted in: UnityMainApp/
I looked around everywhere and could not find an answer. Is there any way to do this?