How can I temporarily disable an option set in gitconfig for the time of running a command? #1209
-
The documentation says an option can be enabled at run time using the |
Beta Was this translation helpful? Give feedback.
Replies: 1 comment 3 replies
-
Hi @nimser, one way is
Another way might be to enable it in your gitconfig, not directly using Do you think there's a role for |
Beta Was this translation helpful? Give feedback.
Hi @nimser, one way is
Another way might be to enable it in your gitconfig, not directly using
delta.side-by-side
, but rather in a feature, and then useDELTA_FEATURES
to disable that feature on-demand (let me know if that's not clear). That might not be convenient though if you're using other features.Do you think there's a role for
-
to mean subtract a feature? It's not implemented currently but if you think it makes sense do feel free to experiment and open a PR.