Enum git_repository::remote::fetch::RefLogMessage
source · pub enum RefLogMessage {
Prefixed {
action: String,
},
Override {
message: BString,
},
}
Available on (crate features
async-network-client
or blocking-network-client
) and (crate features blocking-network-client
or async-network-client
) only.Expand description
The way reflog messages should be composed whenever a ref is written with recent objects from a remote.
Variants§
Prefixed
Prefix the log with action
and generate the typical suffix as git
would.
Override
Fields
§
message: BString
The complete reflog message.
Control the entire message, using message
verbatim.