Zulip Chat Archive
Stream: new members
Topic: vscode git integration
Jalex Stark (Jun 04 2020 at 09:35):
VSCode conveniently highlights files that have uncommitted changes. Is there a way to similarly highlight files which have a change in the current commit relative to some ancestor commit (e.g. master)?
Patrick Stevens (Jun 04 2020 at 10:47):
I'm not aware of one - in the terminal, git diff master --name-only
or git diff master --name-status
will give you a list of changed files, if that helps
Johan Commelin (Jun 04 2020 at 10:55):
And git diff master --stat
will give you 1-line statistics on how big the changes are
Last updated: Dec 20 2023 at 11:08 UTC