How would I create a command/context menu option in VS Code, Source Control (GIT) window, which would recognize files I select under "Changes", and then allow me to choose "Assume Unchanged" from a context menu, and then it would perform: 'git update-index --assume-unchanged ' on all files selected?
Currently I need to perform this file by file, in shell, whenever I require this functionality, and it's annoying.
Has someone build this command (update-index) into their GIT extension (for VS Code -- there seems to be one for Visual Studio). For bonus points, it would also be useful to have the option to reverse it (Assume Changed), with --no-assume-unchanged switch.