tinacms/tinacms
public

Tinacms

A fully open-source headless CMS that supports Markdown and Visual Editing

rss

Method on the deprecated GitFile class (PR #5715). Direct disk writes are replaced by GraphQL mutations submitted through the TinaCMS client.

411d until removal

deprecated June 9, 2025removal June 9, 2027
/**
 * @deprecated
 */
write = (values: any) => {
  this.git.writeToDisk!({
    fileRelativePath: this.relativePath,
    content: this.format(values),
  });
};

Issue the write as a GraphQL mutation via the TinaCMS client.

  • JackDevAUJackDevAUadded packages/tinacms/src/toolkit/git-client/git-file.ts1h ago