
hg-commit
List of commands for hg-commit:
-
hg-commit:tldr:24c0c hg-commit: Commit all files, excluding those that match a specified pattern.$ hg commit --exclude ${pattern}try on your machineexplain this command
-
hg-commit:tldr:54115 hg-commit: Commit using the interactive mode.$ hg commit --interactivetry on your machineexplain this command
-
hg-commit:tldr:9089a hg-commit: Commit with a specific message.$ hg commit --message ${message}try on your machineexplain this command
-
hg-commit:tldr:9ffba hg-commit: Commit staged files to the repository.$ hg committry on your machineexplain this command
-
hg-commit:tldr:b8420 hg-commit: Commit a specific file or directory.$ hg commit ${filename_or_directory}try on your machineexplain this command
-
hg-commit:tldr:ea405 hg-commit: Commit all files matching a specified pattern.$ hg commit --include ${pattern}try on your machineexplain this command