Variable: magit-clone-set-remote.pushDefault
magit-clone-set-remote.pushDefault is a customizable variable defined
in magit-clone.el.
Value
ask
Documentation
Whether to set the value of remote.pushDefault after cloning.
If t, then set without asking. If nil, then don't set. If
ask, then ask.
This variable was added, or its default value changed, in magit version 2.4.0.
Source Code
;; Defined in ~/.emacs.d/elpa/magit-20260411.1452/magit-clone.el
(defcustom magit-clone-set-remote.pushDefault 'ask
"Whether to set the value of `remote.pushDefault' after cloning.
If t, then set without asking. If nil, then don't set. If
`ask', then ask."
:package-version '(magit . "2.4.0")
:group 'magit-commands
:type '(choice (const :tag "Set" t)
(const :tag "Ask" ask)
(const :tag "Don't set" nil)))