Forrest logo
back to context overview

dolt-commit

List of commands for dolt-commit:

  • dolt-commit:tldr:14009 dolt-commit: Use the specified author for the commit.
    $ dolt commit --author "${author_name} <${author_email}>"
    try on your machine
    explain this command
  • dolt-commit:tldr:35939 dolt-commit: Commit all staged changes, opening the editor specified by `$EDITOR` to enter the commit message.
    $ dolt commit
    try on your machine
    explain this command
  • dolt-commit:tldr:5e7bd dolt-commit: Commit all staged changes with the specified message.
    $ dolt commit --message "${commit_message}"
    try on your machine
    explain this command
  • dolt-commit:tldr:6944b dolt-commit: Stage all unstaged changes to tables before committing.
    $ dolt commit --all
    try on your machine
    explain this command
  • dolt-commit:tldr:87378 dolt-commit: Use the specified ISO 8601 commit date (defaults to current date and time).
    $ dolt commit --date "${2021-12-31T00:00:00}"
    try on your machine
    explain this command
  • dolt-commit:tldr:8d8e5 dolt-commit: Ignore foreign key warnings.
    $ dolt commit --force
    try on your machine
    explain this command
  • dolt-commit:tldr:c2889 dolt-commit: Allow creating an empty commit, with no changes.
    $ dolt commit --allow-empty
    try on your machine
    explain this command
back to context overview