Torvalds sarcastically quipped about the name git (which means "unpleasant person" in British English slang): "I'm an egotistical bastard, and I name all my projects after myself. First 'Linux', now 'git'."
dolt
.Can't connect to local MySQL server through socket '/tmp/mysql.sock'
@@autocommit
do?SET @@autocommit = 1
@@autocommit
to on, or by issuing COMMIT
statements manually.COMMIT
and DOLT_COMMIT()
?COMMIT
is a standard SQL statement that commits a transaction. In dolt, it just flushes any pending changes in the current SQL session to disk, updating the working set. HEAD stays the same, but your working set changes. This means your edits will persist after this session ends.DOLT_COMMIT()
commits the current SQL transaction, then creates a new dolt commit on the current branch. It's the same as if you run dolt commit
from the command line.main
when they're done making edits. How do I do that?