Previous: , Up: Remotes   [Contents][Index]


7.1.2 The Remote Config Popup

Command: magit-remote-config-popup

This prefix command shows the following remote-related Git variables in a popup buffer. The values can be changed from that buffer.

This popup is a sub-popup of the magit-remote-popup in which "C" is bound to this popup.

The following variables are used to configure a specific remote. The values are being displayed for the upstream remote of the current branch. To change the value for another remote invoke magit-remote-config-popup with a prefix argument.

Variable: remote.NAME.url

This variable specifies the url of the remote named NAME. It can have multiple values.

Variable: remote.NAME.fetch

The refspec used when fetching from the remote named NAME. It can have multiple values.

Variable: remote.NAME.pushurl

This variable specifies the url used for fetching from the remote named NAME. If it is not specified, then remote.NAME.url is used instead. It can have multiple values.

Variable: remote.NAME.push

The refspec used when pushing to the remote named NAME. It can have multiple values.

Variable: remote.NAME.tagOpts

This variable specifies what tags are fetched by default. If the value is --no-tags then no tags are fetched. If the value is --tags, then all tags are fetched. If this variable has not value, then only tags are fetched that are reachable from fetched branches.