On Mon, Feb 17, 2020 at 09:44:32AM -0500, Drew DeVault wrote: > Because the receiving end has to explicitly enable > receive.advertisePushOptions, and many servers don't, it doesn't make > sense to set push options globally when half of your pushes are just > going to die. This makes me a little nervous, because we don't know what those push options were supposed to do. Yet we'll proceed with the push minus the options, which might perform an action that it's hard for the user to undo. Imagine something as harmless as an option to suppress notifications to your teammates about a push, or something as dangerous as one that changes how the push will do an auto-deploy to a production service. That latter is probably unlikely, but it feels like we ought to be erring on the conservative side here, especially since we've had the old behavior for so many versions. I do agree that setting push.pushOptions in your global gitconfig is probably going to be annoying. Even in the repo .git/config, you might push to multiple remotes, only some of which support the options. So perhaps it would make sense to do one or both of: - allow remote.*.pushOptions for specific remotes - add a push.pushOptionIfAble key which behaves similarly to push.pushOption, but is quietly ignored if options aren't supported. Then you could put options there that you know are safe to be ignored. I'm not sure exactly what kinds of options you want be setting globally, so I'm not sure which of those would be more useful. -Peff