LinuxCommandLibrary

hg-commit

hg-commit

TLDR

Commit staged files to the repository

$ hg commit
copy


Commit a specific file or directory
$ hg commit [path/to/file_or_directory]
copy


Commit with a specific message
$ hg commit --message [message]
copy


Commit all files matching a specified pattern
$ hg commit --include [pattern]
copy


Commit all files, excluding those that match a specified pattern
$ hg commit --exclude [pattern]
copy


Commit using the interactive mode
$ hg commit --interactive
copy

Copied to clipboard