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

Method with_message

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

Builder: set the commit message.

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

Source from the content-addressed store, hash-verified

269impl Record {
270 /// Builder: set the commit message.
271 pub fn with_message(mut self, message: impl Into<String>) -> Self {
272 self.message = Some(message.into());
273 self
274 }
275
276 /// Builder: set the --all flag.
277 pub fn with_all(mut self, all: bool) -> Self {

Calls

no outgoing calls