├── .travis.yml ├── LICENSE ├── Makefile ├── README.asciidoc ├── doc ├── .gitignore ├── SubmittingPatches └── git-remote-hg.txt ├── git-marks-check ├── git-remote-hg └── test ├── .gitignore ├── Makefile ├── author.t ├── bidi.t ├── files.t ├── hg-git.t ├── main.t ├── notes.t ├── sharness.sh └── test-lib.sh /.travis.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fingolfin/git-remote-hg/HEAD/.travis.yml -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fingolfin/git-remote-hg/HEAD/LICENSE -------------------------------------------------------------------------------- /Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fingolfin/git-remote-hg/HEAD/Makefile -------------------------------------------------------------------------------- /README.asciidoc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fingolfin/git-remote-hg/HEAD/README.asciidoc -------------------------------------------------------------------------------- /doc/.gitignore: -------------------------------------------------------------------------------- 1 | git-remote-hg.1 2 | -------------------------------------------------------------------------------- /doc/SubmittingPatches: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fingolfin/git-remote-hg/HEAD/doc/SubmittingPatches -------------------------------------------------------------------------------- /doc/git-remote-hg.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fingolfin/git-remote-hg/HEAD/doc/git-remote-hg.txt -------------------------------------------------------------------------------- /git-marks-check: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fingolfin/git-remote-hg/HEAD/git-marks-check -------------------------------------------------------------------------------- /git-remote-hg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fingolfin/git-remote-hg/HEAD/git-remote-hg -------------------------------------------------------------------------------- /test/.gitignore: -------------------------------------------------------------------------------- 1 | test-results/ 2 | trash directory.*/ 3 | .prove 4 | -------------------------------------------------------------------------------- /test/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fingolfin/git-remote-hg/HEAD/test/Makefile -------------------------------------------------------------------------------- /test/author.t: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fingolfin/git-remote-hg/HEAD/test/author.t -------------------------------------------------------------------------------- /test/bidi.t: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fingolfin/git-remote-hg/HEAD/test/bidi.t -------------------------------------------------------------------------------- /test/files.t: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fingolfin/git-remote-hg/HEAD/test/files.t -------------------------------------------------------------------------------- /test/hg-git.t: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fingolfin/git-remote-hg/HEAD/test/hg-git.t -------------------------------------------------------------------------------- /test/main.t: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fingolfin/git-remote-hg/HEAD/test/main.t -------------------------------------------------------------------------------- /test/notes.t: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fingolfin/git-remote-hg/HEAD/test/notes.t -------------------------------------------------------------------------------- /test/sharness.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fingolfin/git-remote-hg/HEAD/test/sharness.sh -------------------------------------------------------------------------------- /test/test-lib.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fingolfin/git-remote-hg/HEAD/test/test-lib.sh --------------------------------------------------------------------------------