
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 machineexplain this command
-
dolt-commit:tldr:35939 dolt-commit: Commit all staged changes, opening the editor specified by `$EDITOR` to enter the commit message.$ dolt committry on your machineexplain this command
-
dolt-commit:tldr:5e7bd dolt-commit: Commit all staged changes with the specified message.$ dolt commit --message "${commit_message}"try on your machineexplain this command
-
dolt-commit:tldr:6944b dolt-commit: Stage all unstaged changes to tables before committing.$ dolt commit --alltry on your machineexplain 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 machineexplain this command
-
dolt-commit:tldr:8d8e5 dolt-commit: Ignore foreign key warnings.$ dolt commit --forcetry on your machineexplain this command
-
dolt-commit:tldr:c2889 dolt-commit: Allow creating an empty commit, with no changes.$ dolt commit --allow-emptytry on your machineexplain this command