Mercurial commands
Checkout a distant repository: 1 $ hg clone https://bitbucket.org/mirror/django Commit all changes locally: 1 $ hg commit -m "Here is my commit fixing bugs." Push local commits to the remote repository: 1 $ hg push Apply latest changes of the remote repository to our local working copy: 1 $ hg …