1
0
Fork 0
mirror of https://github.com/tldr-pages/tldr.git synced 2025-04-22 21:42:08 +02:00
tldr/pages/common/hg-init.md
2022-06-27 07:23:12 -03:00

12 lines
297 B
Markdown

# hg init
> Create a new repository in the specified directory.
> More information: <https://www.mercurial-scm.org/doc/hg.1.html#init>.
- Initialize a new repository in the current directory:
`hg init`
- Initialize a new repository in the specified directory:
`hg init {{path/to/directory}}`