├── .github └── workflows │ └── ci.yml ├── LICENSE ├── Makefile ├── README.asciidoc ├── doc ├── .gitignore ├── SubmittingPatches └── git-remote-hg.txt ├── git-remote-hg ├── t ├── .gitignore ├── Makefile ├── bidi.t ├── expected │ ├── converged merge │ │ ├── git-log │ │ └── hg-log │ ├── encoding │ │ ├── git-log │ │ └── hg-log │ ├── executable bit │ │ ├── log │ │ └── output │ ├── file removal │ │ ├── log │ │ └── output │ ├── git tags │ │ └── log │ ├── hg author │ │ ├── git-log │ │ └── hg-log │ ├── hg branch │ │ ├── git-log │ │ └── hg-log │ ├── hg tags │ │ └── output │ ├── merge conflict 1 │ │ ├── git-log │ │ └── hg-log │ ├── merge conflict 2 │ │ ├── git-log │ │ └── hg-log │ ├── rename │ │ ├── git-log │ │ └── hg-log │ └── symlink │ │ ├── log │ │ └── output ├── hg-git.t ├── main.t ├── sharness.sh └── test-lib.sh └── tools ├── .gitignore ├── check-versions ├── hg_setup_hack_2.4.patch └── versions.txt /.github/workflows/ci.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/felipec/git-remote-hg/HEAD/.github/workflows/ci.yml -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/felipec/git-remote-hg/HEAD/LICENSE -------------------------------------------------------------------------------- /Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/felipec/git-remote-hg/HEAD/Makefile -------------------------------------------------------------------------------- /README.asciidoc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/felipec/git-remote-hg/HEAD/README.asciidoc -------------------------------------------------------------------------------- /doc/.gitignore: -------------------------------------------------------------------------------- 1 | git-remote-hg.1 2 | -------------------------------------------------------------------------------- /doc/SubmittingPatches: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/felipec/git-remote-hg/HEAD/doc/SubmittingPatches -------------------------------------------------------------------------------- /doc/git-remote-hg.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/felipec/git-remote-hg/HEAD/doc/git-remote-hg.txt -------------------------------------------------------------------------------- /git-remote-hg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/felipec/git-remote-hg/HEAD/git-remote-hg -------------------------------------------------------------------------------- /t/.gitignore: -------------------------------------------------------------------------------- 1 | test-results/ 2 | trash directory.*/ 3 | .prove 4 | -------------------------------------------------------------------------------- /t/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/felipec/git-remote-hg/HEAD/t/Makefile -------------------------------------------------------------------------------- /t/bidi.t: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/felipec/git-remote-hg/HEAD/t/bidi.t -------------------------------------------------------------------------------- /t/expected/converged merge/git-log: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/felipec/git-remote-hg/HEAD/t/expected/converged merge/git-log -------------------------------------------------------------------------------- /t/expected/converged merge/hg-log: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/felipec/git-remote-hg/HEAD/t/expected/converged merge/hg-log -------------------------------------------------------------------------------- /t/expected/encoding/git-log: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/felipec/git-remote-hg/HEAD/t/expected/encoding/git-log -------------------------------------------------------------------------------- /t/expected/encoding/hg-log: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/felipec/git-remote-hg/HEAD/t/expected/encoding/hg-log -------------------------------------------------------------------------------- /t/expected/executable bit/log: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/felipec/git-remote-hg/HEAD/t/expected/executable bit/log -------------------------------------------------------------------------------- /t/expected/executable bit/output: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/felipec/git-remote-hg/HEAD/t/expected/executable bit/output -------------------------------------------------------------------------------- /t/expected/file removal/log: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/felipec/git-remote-hg/HEAD/t/expected/file removal/log -------------------------------------------------------------------------------- /t/expected/file removal/output: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/felipec/git-remote-hg/HEAD/t/expected/file removal/output -------------------------------------------------------------------------------- /t/expected/git tags/log: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/felipec/git-remote-hg/HEAD/t/expected/git tags/log -------------------------------------------------------------------------------- /t/expected/hg author/git-log: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/felipec/git-remote-hg/HEAD/t/expected/hg author/git-log -------------------------------------------------------------------------------- /t/expected/hg author/hg-log: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/felipec/git-remote-hg/HEAD/t/expected/hg author/hg-log -------------------------------------------------------------------------------- /t/expected/hg branch/git-log: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/felipec/git-remote-hg/HEAD/t/expected/hg branch/git-log -------------------------------------------------------------------------------- /t/expected/hg branch/hg-log: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/felipec/git-remote-hg/HEAD/t/expected/hg branch/hg-log -------------------------------------------------------------------------------- /t/expected/hg tags/output: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/felipec/git-remote-hg/HEAD/t/expected/hg tags/output -------------------------------------------------------------------------------- /t/expected/merge conflict 1/git-log: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/felipec/git-remote-hg/HEAD/t/expected/merge conflict 1/git-log -------------------------------------------------------------------------------- /t/expected/merge conflict 1/hg-log: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/felipec/git-remote-hg/HEAD/t/expected/merge conflict 1/hg-log -------------------------------------------------------------------------------- /t/expected/merge conflict 2/git-log: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/felipec/git-remote-hg/HEAD/t/expected/merge conflict 2/git-log -------------------------------------------------------------------------------- /t/expected/merge conflict 2/hg-log: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/felipec/git-remote-hg/HEAD/t/expected/merge conflict 2/hg-log -------------------------------------------------------------------------------- /t/expected/rename/git-log: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/felipec/git-remote-hg/HEAD/t/expected/rename/git-log -------------------------------------------------------------------------------- /t/expected/rename/hg-log: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/felipec/git-remote-hg/HEAD/t/expected/rename/hg-log -------------------------------------------------------------------------------- /t/expected/symlink/log: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/felipec/git-remote-hg/HEAD/t/expected/symlink/log -------------------------------------------------------------------------------- /t/expected/symlink/output: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/felipec/git-remote-hg/HEAD/t/expected/symlink/output -------------------------------------------------------------------------------- /t/hg-git.t: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/felipec/git-remote-hg/HEAD/t/hg-git.t -------------------------------------------------------------------------------- /t/main.t: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/felipec/git-remote-hg/HEAD/t/main.t -------------------------------------------------------------------------------- /t/sharness.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/felipec/git-remote-hg/HEAD/t/sharness.sh -------------------------------------------------------------------------------- /t/test-lib.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/felipec/git-remote-hg/HEAD/t/test-lib.sh -------------------------------------------------------------------------------- /tools/.gitignore: -------------------------------------------------------------------------------- 1 | results.txt 2 | -------------------------------------------------------------------------------- /tools/check-versions: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/felipec/git-remote-hg/HEAD/tools/check-versions -------------------------------------------------------------------------------- /tools/hg_setup_hack_2.4.patch: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/felipec/git-remote-hg/HEAD/tools/hg_setup_hack_2.4.patch -------------------------------------------------------------------------------- /tools/versions.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/felipec/git-remote-hg/HEAD/tools/versions.txt --------------------------------------------------------------------------------