MCPcopy Create free account
hub / github.com/atomicdotdev/atomic / with_message

Method with_message

atomic-cli/src/commands/record/mod.rs:263–266  ·  view source on GitHub ↗

Builder: set the commit message.

(mut self, message: impl Into<String>)

Source from the content-addressed store, hash-verified

261impl Record {
262 /// Builder: set the commit message.
263 pub fn with_message(mut self, message: impl Into<String>) -> Self {
264 self.message = Some(message.into());
265 self
266 }
267
268 /// Builder: set the --all flag.
269 pub fn with_all(mut self, all: bool) -> Self {

Calls

no outgoing calls