You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Add a new option which allows users to opt out of the -uall argument passed to git status by VS Code.
My motivation here is performance. I regularly work in a very large repository. git status -uall can take 15 seconds, while git status -unormal resolves within one second.
Proposal
Add a new option: "git.statusArgs.untrackedChanges": "no" | "normal" | "all" (default)
This option would be used to augment the args passed to the git status command, here:
Rationale
Add a new option which allows users to opt out of the
-uall
argument passed to git status by VS Code.My motivation here is performance. I regularly work in a very large repository.
git status -uall
can take 15 seconds, whilegit status -unormal
resolves within one second.Proposal
Add a new option:
"git.statusArgs.untrackedChanges": "no" | "normal" | "all" (default)
This option would be used to augment the args passed to the
git status
command, here:https://github.com/Microsoft/vscode/blob/5ef5837c581469dfd72aea765b10e0a6241f7690/extensions/git/src/git.ts#L1817
Related to #15640
The text was updated successfully, but these errors were encountered: