mirror of
https://github.com/ivuorinen/cheatsheet-tldr.git
synced 2026-01-26 11:33:59 +00:00
43 lines
847 B
Plaintext
43 lines
847 B
Plaintext
---
|
|
syntax: markdown
|
|
tags: [tldr, common]
|
|
source: https://github.com/tldr-pages/tldr.git
|
|
---
|
|
# hg
|
|
|
|
> Mercurial - a distributed source control management system.
|
|
> Some subcommands such as `commit` have their own usage documentation.
|
|
> More information: <https://www.mercurial-scm.org/help/commands>.
|
|
|
|
- Create an empty Mercurial repository:
|
|
|
|
`hg init`
|
|
|
|
- Clone a remote Mercurial repository from the internet:
|
|
|
|
`hg clone {{https://example.com/repo}}`
|
|
|
|
- View the status of a local repository:
|
|
|
|
`hg status`
|
|
|
|
- Add all new files to the next commit:
|
|
|
|
`hg add`
|
|
|
|
- Commit changes to version history:
|
|
|
|
`hg commit {{[-m|--message]}} {{message_text}}`
|
|
|
|
- Push local changes to a remote repository:
|
|
|
|
`hg push`
|
|
|
|
- Pull any changes made to a remote:
|
|
|
|
`hg pull`
|
|
|
|
- Reset everything the way it was in the latest commit:
|
|
|
|
`hg update {{[-C|--clean]}}; hg purge`
|