├── .gitignore ├── .hgignore ├── .hgsigs ├── .hgtags ├── CONTRIBUTING ├── COPYING ├── DESIGN.txt ├── MANIFEST.in ├── Makefile ├── README.md ├── TODO.txt ├── contrib └── hggitperf.py ├── hggit ├── __init__.py ├── _ssh.py ├── compat.py ├── git2hg.py ├── git_handler.py ├── gitdirstate.py ├── gitrepo.py ├── help │ └── git.rst ├── hg2git.py ├── hgrepo.py ├── overlay.py ├── util.py └── verify.py ├── setup.py └── tests ├── commitextra.py ├── heredoctest.py ├── hghave ├── hghave.py ├── killdaemons.py ├── latin-1-encoding ├── run-tests.py ├── test-bookmark-workflow.t ├── test-branch-bookmark-suffix.t ├── test-clone.t ├── test-conflict-1.t ├── test-conflict-2.t ├── test-convergedmerge.t ├── test-empty-working-tree.t ├── test-encoding.t ├── test-extra.t ├── test-file-removal.t ├── test-git-clone.t ├── test-git-submodules.t ├── test-git-tags.t ├── test-git-workflow.t ├── test-gitignore.t ├── test-help.t ├── test-hg-author.t ├── test-hg-branch.t ├── test-hg-tags-invalid.t ├── test-hg-tags.t ├── test-http.t ├── test-illegal-contents.t ├── test-incoming.t ├── test-keywords.t ├── test-merge.t ├── test-octopus.t ├── test-outgoing.t ├── test-pull-after-strip.t ├── test-pull.t ├── test-push-r.t ├── test-push.t ├── test-renames.t ├── test-subrepos.t ├── test-timezone.t ├── test-tree-decomposition.t ├── test-url-parsing.py ├── test-url-parsing.py.out ├── test-verify-fail.t └── testutil /.gitignore: -------------------------------------------------------------------------------- 1 | *.pyc 2 | tests/*.err 3 | build 4 | dist 5 | *.egg-info 6 | -------------------------------------------------------------------------------- /.hgignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/schacon/hg-git/HEAD/.hgignore -------------------------------------------------------------------------------- /.hgsigs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/schacon/hg-git/HEAD/.hgsigs -------------------------------------------------------------------------------- /.hgtags: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/schacon/hg-git/HEAD/.hgtags -------------------------------------------------------------------------------- /CONTRIBUTING: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/schacon/hg-git/HEAD/CONTRIBUTING -------------------------------------------------------------------------------- /COPYING: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/schacon/hg-git/HEAD/COPYING -------------------------------------------------------------------------------- /DESIGN.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/schacon/hg-git/HEAD/DESIGN.txt -------------------------------------------------------------------------------- /MANIFEST.in: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/schacon/hg-git/HEAD/MANIFEST.in -------------------------------------------------------------------------------- /Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/schacon/hg-git/HEAD/Makefile -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/schacon/hg-git/HEAD/README.md -------------------------------------------------------------------------------- /TODO.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/schacon/hg-git/HEAD/TODO.txt -------------------------------------------------------------------------------- /contrib/hggitperf.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/schacon/hg-git/HEAD/contrib/hggitperf.py -------------------------------------------------------------------------------- /hggit/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/schacon/hg-git/HEAD/hggit/__init__.py -------------------------------------------------------------------------------- /hggit/_ssh.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/schacon/hg-git/HEAD/hggit/_ssh.py -------------------------------------------------------------------------------- /hggit/compat.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/schacon/hg-git/HEAD/hggit/compat.py -------------------------------------------------------------------------------- /hggit/git2hg.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/schacon/hg-git/HEAD/hggit/git2hg.py -------------------------------------------------------------------------------- /hggit/git_handler.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/schacon/hg-git/HEAD/hggit/git_handler.py -------------------------------------------------------------------------------- /hggit/gitdirstate.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/schacon/hg-git/HEAD/hggit/gitdirstate.py -------------------------------------------------------------------------------- /hggit/gitrepo.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/schacon/hg-git/HEAD/hggit/gitrepo.py -------------------------------------------------------------------------------- /hggit/help/git.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/schacon/hg-git/HEAD/hggit/help/git.rst -------------------------------------------------------------------------------- /hggit/hg2git.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/schacon/hg-git/HEAD/hggit/hg2git.py -------------------------------------------------------------------------------- /hggit/hgrepo.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/schacon/hg-git/HEAD/hggit/hgrepo.py -------------------------------------------------------------------------------- /hggit/overlay.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/schacon/hg-git/HEAD/hggit/overlay.py -------------------------------------------------------------------------------- /hggit/util.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/schacon/hg-git/HEAD/hggit/util.py -------------------------------------------------------------------------------- /hggit/verify.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/schacon/hg-git/HEAD/hggit/verify.py -------------------------------------------------------------------------------- /setup.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/schacon/hg-git/HEAD/setup.py -------------------------------------------------------------------------------- /tests/commitextra.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/schacon/hg-git/HEAD/tests/commitextra.py -------------------------------------------------------------------------------- /tests/heredoctest.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/schacon/hg-git/HEAD/tests/heredoctest.py -------------------------------------------------------------------------------- /tests/hghave: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/schacon/hg-git/HEAD/tests/hghave -------------------------------------------------------------------------------- /tests/hghave.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/schacon/hg-git/HEAD/tests/hghave.py -------------------------------------------------------------------------------- /tests/killdaemons.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/schacon/hg-git/HEAD/tests/killdaemons.py -------------------------------------------------------------------------------- /tests/latin-1-encoding: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/schacon/hg-git/HEAD/tests/latin-1-encoding -------------------------------------------------------------------------------- /tests/run-tests.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/schacon/hg-git/HEAD/tests/run-tests.py -------------------------------------------------------------------------------- /tests/test-bookmark-workflow.t: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/schacon/hg-git/HEAD/tests/test-bookmark-workflow.t -------------------------------------------------------------------------------- /tests/test-branch-bookmark-suffix.t: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/schacon/hg-git/HEAD/tests/test-branch-bookmark-suffix.t -------------------------------------------------------------------------------- /tests/test-clone.t: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/schacon/hg-git/HEAD/tests/test-clone.t -------------------------------------------------------------------------------- /tests/test-conflict-1.t: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/schacon/hg-git/HEAD/tests/test-conflict-1.t -------------------------------------------------------------------------------- /tests/test-conflict-2.t: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/schacon/hg-git/HEAD/tests/test-conflict-2.t -------------------------------------------------------------------------------- /tests/test-convergedmerge.t: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/schacon/hg-git/HEAD/tests/test-convergedmerge.t -------------------------------------------------------------------------------- /tests/test-empty-working-tree.t: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/schacon/hg-git/HEAD/tests/test-empty-working-tree.t -------------------------------------------------------------------------------- /tests/test-encoding.t: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/schacon/hg-git/HEAD/tests/test-encoding.t -------------------------------------------------------------------------------- /tests/test-extra.t: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/schacon/hg-git/HEAD/tests/test-extra.t -------------------------------------------------------------------------------- /tests/test-file-removal.t: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/schacon/hg-git/HEAD/tests/test-file-removal.t -------------------------------------------------------------------------------- /tests/test-git-clone.t: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/schacon/hg-git/HEAD/tests/test-git-clone.t -------------------------------------------------------------------------------- /tests/test-git-submodules.t: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/schacon/hg-git/HEAD/tests/test-git-submodules.t -------------------------------------------------------------------------------- /tests/test-git-tags.t: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/schacon/hg-git/HEAD/tests/test-git-tags.t -------------------------------------------------------------------------------- /tests/test-git-workflow.t: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/schacon/hg-git/HEAD/tests/test-git-workflow.t -------------------------------------------------------------------------------- /tests/test-gitignore.t: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/schacon/hg-git/HEAD/tests/test-gitignore.t -------------------------------------------------------------------------------- /tests/test-help.t: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/schacon/hg-git/HEAD/tests/test-help.t -------------------------------------------------------------------------------- /tests/test-hg-author.t: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/schacon/hg-git/HEAD/tests/test-hg-author.t -------------------------------------------------------------------------------- /tests/test-hg-branch.t: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/schacon/hg-git/HEAD/tests/test-hg-branch.t -------------------------------------------------------------------------------- /tests/test-hg-tags-invalid.t: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/schacon/hg-git/HEAD/tests/test-hg-tags-invalid.t -------------------------------------------------------------------------------- /tests/test-hg-tags.t: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/schacon/hg-git/HEAD/tests/test-hg-tags.t -------------------------------------------------------------------------------- /tests/test-http.t: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/schacon/hg-git/HEAD/tests/test-http.t -------------------------------------------------------------------------------- /tests/test-illegal-contents.t: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/schacon/hg-git/HEAD/tests/test-illegal-contents.t -------------------------------------------------------------------------------- /tests/test-incoming.t: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/schacon/hg-git/HEAD/tests/test-incoming.t -------------------------------------------------------------------------------- /tests/test-keywords.t: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/schacon/hg-git/HEAD/tests/test-keywords.t -------------------------------------------------------------------------------- /tests/test-merge.t: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/schacon/hg-git/HEAD/tests/test-merge.t -------------------------------------------------------------------------------- /tests/test-octopus.t: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/schacon/hg-git/HEAD/tests/test-octopus.t -------------------------------------------------------------------------------- /tests/test-outgoing.t: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/schacon/hg-git/HEAD/tests/test-outgoing.t -------------------------------------------------------------------------------- /tests/test-pull-after-strip.t: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/schacon/hg-git/HEAD/tests/test-pull-after-strip.t -------------------------------------------------------------------------------- /tests/test-pull.t: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/schacon/hg-git/HEAD/tests/test-pull.t -------------------------------------------------------------------------------- /tests/test-push-r.t: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/schacon/hg-git/HEAD/tests/test-push-r.t -------------------------------------------------------------------------------- /tests/test-push.t: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/schacon/hg-git/HEAD/tests/test-push.t -------------------------------------------------------------------------------- /tests/test-renames.t: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/schacon/hg-git/HEAD/tests/test-renames.t -------------------------------------------------------------------------------- /tests/test-subrepos.t: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/schacon/hg-git/HEAD/tests/test-subrepos.t -------------------------------------------------------------------------------- /tests/test-timezone.t: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/schacon/hg-git/HEAD/tests/test-timezone.t -------------------------------------------------------------------------------- /tests/test-tree-decomposition.t: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/schacon/hg-git/HEAD/tests/test-tree-decomposition.t -------------------------------------------------------------------------------- /tests/test-url-parsing.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/schacon/hg-git/HEAD/tests/test-url-parsing.py -------------------------------------------------------------------------------- /tests/test-url-parsing.py.out: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/schacon/hg-git/HEAD/tests/test-url-parsing.py.out -------------------------------------------------------------------------------- /tests/test-verify-fail.t: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/schacon/hg-git/HEAD/tests/test-verify-fail.t -------------------------------------------------------------------------------- /tests/testutil: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/schacon/hg-git/HEAD/tests/testutil --------------------------------------------------------------------------------