├── .fish.rc ├── .gitattributes ├── .github └── workflows │ ├── pre-commit.yml │ └── test.yml ├── .gitignore ├── .pre-commit-config.yaml ├── .rc ├── Changes ├── Intro.pod ├── License ├── Makefile ├── Meta ├── ReadMe.pod ├── doc ├── comparison.swim ├── git-subrepo.swim └── intro-to-subrepo.swim ├── ext ├── bashplus │ ├── .gitrepo │ ├── .travis.yml │ ├── Changes │ ├── License │ ├── Makefile │ ├── Meta │ ├── ReadMe.pod │ ├── bin │ │ └── bash+ │ ├── doc │ │ └── bash+.swim │ ├── lib │ │ └── bash+.bash │ ├── man │ │ ├── man1 │ │ │ └── bash+.1 │ │ └── man3 │ │ │ └── bash+.3 │ └── test │ │ ├── base.t │ │ ├── die.t │ │ ├── fcopy.t │ │ ├── lib │ │ └── foo │ │ │ ├── bar.bash │ │ │ └── foo.bash │ │ ├── setup │ │ ├── shellcheck.t │ │ ├── source-bash+-std.t │ │ ├── source-bash+.t │ │ ├── use.t │ │ └── version-check.t └── test-more-bash │ ├── .gitrepo │ ├── .travis.yml │ ├── Changes │ ├── License │ ├── Makefile │ ├── Meta │ ├── ReadMe.pod │ ├── doc │ └── test-more.swim │ ├── ext │ ├── bashplus │ │ ├── .gitrepo │ │ ├── .travis.yml │ │ ├── Changes │ │ ├── License │ │ ├── Makefile │ │ ├── Meta │ │ ├── ReadMe.pod │ │ ├── bin │ │ │ └── bash+ │ │ ├── doc │ │ │ └── bash+.swim │ │ ├── lib │ │ │ └── bash+.bash │ │ ├── man │ │ │ ├── man1 │ │ │ │ └── bash+.1 │ │ │ └── man3 │ │ │ │ └── bash+.3 │ │ └── test │ │ │ ├── base.t │ │ │ ├── die.t │ │ │ ├── fcopy.t │ │ │ ├── lib │ │ │ └── foo │ │ │ │ ├── bar.bash │ │ │ │ └── foo.bash │ │ │ ├── setup │ │ │ ├── shellcheck.t │ │ │ ├── source-bash+-std.t │ │ │ ├── source-bash+.t │ │ │ └── use.t │ └── test-tap-bash │ │ ├── .gitrepo │ │ ├── .travis.yml │ │ ├── Changes │ │ ├── License │ │ ├── Makefile │ │ ├── Meta │ │ ├── ReadMe.pod │ │ ├── doc │ │ └── test-tap.swim │ │ ├── lib │ │ └── test │ │ │ └── tap.bash │ │ ├── man │ │ └── man3 │ │ │ └── test-tap.3 │ │ └── test │ │ ├── bail_out.t │ │ ├── done.t │ │ ├── fail.t │ │ ├── fail_fast.t │ │ ├── helper.bash │ │ ├── pass.t │ │ ├── plan.t │ │ ├── shellcheck.t │ │ ├── skip_all.t │ │ ├── tap.t │ │ └── test │ │ ├── bail.t │ │ ├── fail.t │ │ ├── fail_fast.t │ │ ├── skip-all-init.t │ │ └── skip-all-plan.t │ ├── lib │ └── test │ │ └── more.bash │ ├── man │ └── man3 │ │ └── test-more.3 │ └── test │ ├── fail.t │ ├── more.t │ ├── pass.t │ ├── setup │ ├── shellcheck.t │ ├── skip_all.t │ └── test │ ├── fail1.t │ └── skip_all.t ├── lib ├── git-subrepo └── git-subrepo.d │ ├── bash+.bash │ └── help-functions.bash ├── man └── man1 │ └── git-subrepo.1 ├── note ├── 0.4.0 ├── AllGitCmds ├── Cases ├── Commands ├── Dags ├── Gists ├── Links ├── Plugins ├── Spec ├── Story1 ├── ToDo ├── design.swim ├── design2.swim ├── pull-dance.txt ├── recreate-rebase-conflict.sh ├── subtree-rebase-fail-example │ └── test.bash ├── test-subrepo-push.sh └── test.sh ├── pkg └── bin │ ├── generate-completion.pl │ └── generate-help-functions.pl ├── share ├── completion.bash ├── enable-completion.sh ├── git-completion.bash ├── git-subrepo.fish └── zsh-completion │ └── _git-subrepo └── test ├── Dockerfile ├── branch-all.t ├── branch-rev-list-one-path.t ├── branch-rev-list.t ├── branch.t ├── clean.t ├── clone-annotated-tag.t ├── clone.t ├── compile.t ├── config.t ├── encode.t ├── error.t ├── fetch.t ├── gitignore.t ├── init.t ├── issue29.t ├── issue95.t ├── issue96.t ├── pull-all.t ├── pull-merge.t ├── pull-message.t ├── pull-new-branch.t ├── pull-ours.t ├── pull-theirs.t ├── pull-twice.t ├── pull-worktree.t ├── pull.t ├── push-after-init.t ├── push-after-push-no-changes.t ├── push-force.t ├── push-new-branch.t ├── push-no-changes.t ├── push-squash.t ├── push.t ├── rebase.t ├── reclone.t ├── repo ├── bar │ ├── HEAD │ ├── config │ ├── objects │ │ ├── 87 │ │ │ └── 46903fdb1b9c2101377880125917c2e05b4d69 │ │ ├── 94 │ │ │ └── c86ffc745232d89f78c6f895e11e71272518db │ │ ├── 1f │ │ │ └── 0c4b264caed0126814a0ede851a1e0b4e16ae6 │ │ ├── c6 │ │ │ └── 76c57b6576743fa56278527aa60ebd2e202a7c │ │ ├── e6 │ │ │ └── 9de29bb2d1d6434b8b29ae775ad8c2e48c5391 │ │ └── f6 │ │ │ └── 2a8ff3feadf39b0a98f1a86ec6d1eb33858ee9 │ └── refs │ │ ├── heads │ │ └── master │ │ └── tags │ │ └── A ├── foo │ ├── HEAD │ ├── config │ ├── objects │ │ ├── a0 │ │ │ └── f4cdaaf533a936296cdebbed8206c3b9ededa8 │ │ ├── e2 │ │ │ └── 1291a1ad392a9d4c51dd9586804f1467b28afd │ │ └── e6 │ │ │ └── 9de29bb2d1d6434b8b29ae775ad8c2e48c5391 │ └── refs │ │ └── heads │ │ └── master └── init │ ├── HEAD │ ├── config │ ├── objects │ ├── 11 │ │ └── 523f5dcf03b4c89b592dc8a3d0308f68da2386 │ ├── 14 │ │ └── 2addf8ec5f37334e837440122c62f2c68a29ad │ ├── 32 │ │ └── 5180321750a21cd7a4e7ecda319e557a4f6a09 │ ├── 58 │ │ └── 931fc1bd559b59c41ea738fc7ad04f9ad01bd3 │ ├── 75 │ │ └── fa6584e748f57eff06eebdc55e9ac21d4fcbf2 │ ├── 80 │ │ └── 2d5edbd5e1cb7fca82b5bd38e7c8a0a496fb20 │ ├── 94 │ │ └── 7b3d714c38791e95ad6f928b48c98bb8708acd │ ├── 95 │ │ └── e1f2df3f4d5f3d7a60588c25a7ca8a913d3c2a │ ├── 3d │ │ └── 918c6901c02f43af5d31779dd5e1f9166aeb36 │ ├── 3e │ │ └── 4cb596066dce63ba4d047abddb677389b65e19 │ ├── 4b │ │ └── 6e53022e7a04f07887697e4f3d7c377fd9822b │ ├── 5e │ │ └── c0c28e1b806f25efdca18fcf7a74b49c3755bd │ ├── b1 │ │ └── 5f4a7666baf40d949548ead946a3370e273479 │ ├── c3 │ │ └── ee8978c4c5d84c3b7d00ba8e5906933d027882 │ ├── c8 │ │ └── b0bffbc405ef3fad7354ff833fbec36d67ddfa │ ├── dd │ │ └── 8bdb934ec848137f011fe423b185505c343626 │ ├── e2 │ │ └── 9be58c767cfeb27235c995d293a7d71aac0135 │ ├── ee │ │ └── 1224401fc6aac595145fa727dcf6706ac8aec1 │ └── f1 │ │ └── cc1a657b2e805c400f5dcaaa76bd29c6178b1b │ └── refs │ └── heads │ └── master ├── setup ├── status.t ├── submodule.t └── zsh.t /.fish.rc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ingydotnet/git-subrepo/HEAD/.fish.rc -------------------------------------------------------------------------------- /.gitattributes: -------------------------------------------------------------------------------- 1 | * text eol=lf 2 | -------------------------------------------------------------------------------- /.github/workflows/pre-commit.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ingydotnet/git-subrepo/HEAD/.github/workflows/pre-commit.yml -------------------------------------------------------------------------------- /.github/workflows/test.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ingydotnet/git-subrepo/HEAD/.github/workflows/test.yml -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- 1 | /test/tmp/ 2 | -------------------------------------------------------------------------------- /.pre-commit-config.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ingydotnet/git-subrepo/HEAD/.pre-commit-config.yaml -------------------------------------------------------------------------------- /.rc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ingydotnet/git-subrepo/HEAD/.rc -------------------------------------------------------------------------------- /Changes: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ingydotnet/git-subrepo/HEAD/Changes -------------------------------------------------------------------------------- /Intro.pod: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ingydotnet/git-subrepo/HEAD/Intro.pod -------------------------------------------------------------------------------- /License: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ingydotnet/git-subrepo/HEAD/License -------------------------------------------------------------------------------- /Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ingydotnet/git-subrepo/HEAD/Makefile -------------------------------------------------------------------------------- /Meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ingydotnet/git-subrepo/HEAD/Meta -------------------------------------------------------------------------------- /ReadMe.pod: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ingydotnet/git-subrepo/HEAD/ReadMe.pod -------------------------------------------------------------------------------- /doc/comparison.swim: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ingydotnet/git-subrepo/HEAD/doc/comparison.swim -------------------------------------------------------------------------------- /doc/git-subrepo.swim: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ingydotnet/git-subrepo/HEAD/doc/git-subrepo.swim -------------------------------------------------------------------------------- /doc/intro-to-subrepo.swim: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ingydotnet/git-subrepo/HEAD/doc/intro-to-subrepo.swim -------------------------------------------------------------------------------- /ext/bashplus/.gitrepo: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ingydotnet/git-subrepo/HEAD/ext/bashplus/.gitrepo -------------------------------------------------------------------------------- /ext/bashplus/.travis.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ingydotnet/git-subrepo/HEAD/ext/bashplus/.travis.yml -------------------------------------------------------------------------------- /ext/bashplus/Changes: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ingydotnet/git-subrepo/HEAD/ext/bashplus/Changes -------------------------------------------------------------------------------- /ext/bashplus/License: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ingydotnet/git-subrepo/HEAD/ext/bashplus/License -------------------------------------------------------------------------------- /ext/bashplus/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ingydotnet/git-subrepo/HEAD/ext/bashplus/Makefile -------------------------------------------------------------------------------- /ext/bashplus/Meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ingydotnet/git-subrepo/HEAD/ext/bashplus/Meta -------------------------------------------------------------------------------- /ext/bashplus/ReadMe.pod: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ingydotnet/git-subrepo/HEAD/ext/bashplus/ReadMe.pod -------------------------------------------------------------------------------- /ext/bashplus/bin/bash+: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ingydotnet/git-subrepo/HEAD/ext/bashplus/bin/bash+ -------------------------------------------------------------------------------- /ext/bashplus/doc/bash+.swim: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ingydotnet/git-subrepo/HEAD/ext/bashplus/doc/bash+.swim -------------------------------------------------------------------------------- /ext/bashplus/lib/bash+.bash: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ingydotnet/git-subrepo/HEAD/ext/bashplus/lib/bash+.bash -------------------------------------------------------------------------------- /ext/bashplus/man/man1/bash+.1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ingydotnet/git-subrepo/HEAD/ext/bashplus/man/man1/bash+.1 -------------------------------------------------------------------------------- /ext/bashplus/man/man3/bash+.3: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ingydotnet/git-subrepo/HEAD/ext/bashplus/man/man3/bash+.3 -------------------------------------------------------------------------------- /ext/bashplus/test/base.t: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ingydotnet/git-subrepo/HEAD/ext/bashplus/test/base.t -------------------------------------------------------------------------------- /ext/bashplus/test/die.t: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ingydotnet/git-subrepo/HEAD/ext/bashplus/test/die.t -------------------------------------------------------------------------------- /ext/bashplus/test/fcopy.t: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ingydotnet/git-subrepo/HEAD/ext/bashplus/test/fcopy.t -------------------------------------------------------------------------------- /ext/bashplus/test/lib/foo/bar.bash: -------------------------------------------------------------------------------- 1 | Foo__Bar_VERSION='1.2.3' 2 | 3 | Foo::Bar:baz() { :;} 4 | -------------------------------------------------------------------------------- /ext/bashplus/test/lib/foo/foo.bash: -------------------------------------------------------------------------------- 1 | Foo::Foo:import() { 2 | echo $1---$2 3 | } 4 | -------------------------------------------------------------------------------- /ext/bashplus/test/setup: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ingydotnet/git-subrepo/HEAD/ext/bashplus/test/setup -------------------------------------------------------------------------------- /ext/bashplus/test/shellcheck.t: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ingydotnet/git-subrepo/HEAD/ext/bashplus/test/shellcheck.t -------------------------------------------------------------------------------- /ext/bashplus/test/source-bash+-std.t: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ingydotnet/git-subrepo/HEAD/ext/bashplus/test/source-bash+-std.t -------------------------------------------------------------------------------- /ext/bashplus/test/source-bash+.t: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ingydotnet/git-subrepo/HEAD/ext/bashplus/test/source-bash+.t -------------------------------------------------------------------------------- /ext/bashplus/test/use.t: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ingydotnet/git-subrepo/HEAD/ext/bashplus/test/use.t -------------------------------------------------------------------------------- /ext/bashplus/test/version-check.t: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ingydotnet/git-subrepo/HEAD/ext/bashplus/test/version-check.t -------------------------------------------------------------------------------- /ext/test-more-bash/.gitrepo: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ingydotnet/git-subrepo/HEAD/ext/test-more-bash/.gitrepo -------------------------------------------------------------------------------- /ext/test-more-bash/.travis.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ingydotnet/git-subrepo/HEAD/ext/test-more-bash/.travis.yml -------------------------------------------------------------------------------- /ext/test-more-bash/Changes: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ingydotnet/git-subrepo/HEAD/ext/test-more-bash/Changes -------------------------------------------------------------------------------- /ext/test-more-bash/License: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ingydotnet/git-subrepo/HEAD/ext/test-more-bash/License -------------------------------------------------------------------------------- /ext/test-more-bash/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ingydotnet/git-subrepo/HEAD/ext/test-more-bash/Makefile -------------------------------------------------------------------------------- /ext/test-more-bash/Meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ingydotnet/git-subrepo/HEAD/ext/test-more-bash/Meta -------------------------------------------------------------------------------- /ext/test-more-bash/ReadMe.pod: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ingydotnet/git-subrepo/HEAD/ext/test-more-bash/ReadMe.pod -------------------------------------------------------------------------------- /ext/test-more-bash/doc/test-more.swim: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ingydotnet/git-subrepo/HEAD/ext/test-more-bash/doc/test-more.swim -------------------------------------------------------------------------------- /ext/test-more-bash/ext/bashplus/.gitrepo: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ingydotnet/git-subrepo/HEAD/ext/test-more-bash/ext/bashplus/.gitrepo -------------------------------------------------------------------------------- /ext/test-more-bash/ext/bashplus/.travis.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ingydotnet/git-subrepo/HEAD/ext/test-more-bash/ext/bashplus/.travis.yml -------------------------------------------------------------------------------- /ext/test-more-bash/ext/bashplus/Changes: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ingydotnet/git-subrepo/HEAD/ext/test-more-bash/ext/bashplus/Changes -------------------------------------------------------------------------------- /ext/test-more-bash/ext/bashplus/License: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ingydotnet/git-subrepo/HEAD/ext/test-more-bash/ext/bashplus/License -------------------------------------------------------------------------------- /ext/test-more-bash/ext/bashplus/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ingydotnet/git-subrepo/HEAD/ext/test-more-bash/ext/bashplus/Makefile -------------------------------------------------------------------------------- /ext/test-more-bash/ext/bashplus/Meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ingydotnet/git-subrepo/HEAD/ext/test-more-bash/ext/bashplus/Meta -------------------------------------------------------------------------------- /ext/test-more-bash/ext/bashplus/ReadMe.pod: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ingydotnet/git-subrepo/HEAD/ext/test-more-bash/ext/bashplus/ReadMe.pod -------------------------------------------------------------------------------- /ext/test-more-bash/ext/bashplus/bin/bash+: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ingydotnet/git-subrepo/HEAD/ext/test-more-bash/ext/bashplus/bin/bash+ -------------------------------------------------------------------------------- /ext/test-more-bash/ext/bashplus/doc/bash+.swim: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ingydotnet/git-subrepo/HEAD/ext/test-more-bash/ext/bashplus/doc/bash+.swim -------------------------------------------------------------------------------- /ext/test-more-bash/ext/bashplus/lib/bash+.bash: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ingydotnet/git-subrepo/HEAD/ext/test-more-bash/ext/bashplus/lib/bash+.bash -------------------------------------------------------------------------------- /ext/test-more-bash/ext/bashplus/man/man1/bash+.1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ingydotnet/git-subrepo/HEAD/ext/test-more-bash/ext/bashplus/man/man1/bash+.1 -------------------------------------------------------------------------------- /ext/test-more-bash/ext/bashplus/man/man3/bash+.3: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ingydotnet/git-subrepo/HEAD/ext/test-more-bash/ext/bashplus/man/man3/bash+.3 -------------------------------------------------------------------------------- /ext/test-more-bash/ext/bashplus/test/base.t: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ingydotnet/git-subrepo/HEAD/ext/test-more-bash/ext/bashplus/test/base.t -------------------------------------------------------------------------------- /ext/test-more-bash/ext/bashplus/test/die.t: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ingydotnet/git-subrepo/HEAD/ext/test-more-bash/ext/bashplus/test/die.t -------------------------------------------------------------------------------- /ext/test-more-bash/ext/bashplus/test/fcopy.t: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ingydotnet/git-subrepo/HEAD/ext/test-more-bash/ext/bashplus/test/fcopy.t -------------------------------------------------------------------------------- /ext/test-more-bash/ext/bashplus/test/lib/foo/bar.bash: -------------------------------------------------------------------------------- 1 | Foo__Bar_VERSION='1.2.3' 2 | 3 | Foo::Bar:baz() { :;} 4 | -------------------------------------------------------------------------------- /ext/test-more-bash/ext/bashplus/test/lib/foo/foo.bash: -------------------------------------------------------------------------------- 1 | Foo::Foo:import() { 2 | echo $1---$2 3 | } 4 | -------------------------------------------------------------------------------- /ext/test-more-bash/ext/bashplus/test/setup: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ingydotnet/git-subrepo/HEAD/ext/test-more-bash/ext/bashplus/test/setup -------------------------------------------------------------------------------- /ext/test-more-bash/ext/bashplus/test/shellcheck.t: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ingydotnet/git-subrepo/HEAD/ext/test-more-bash/ext/bashplus/test/shellcheck.t -------------------------------------------------------------------------------- /ext/test-more-bash/ext/bashplus/test/source-bash+-std.t: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ingydotnet/git-subrepo/HEAD/ext/test-more-bash/ext/bashplus/test/source-bash+-std.t -------------------------------------------------------------------------------- /ext/test-more-bash/ext/bashplus/test/source-bash+.t: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ingydotnet/git-subrepo/HEAD/ext/test-more-bash/ext/bashplus/test/source-bash+.t -------------------------------------------------------------------------------- /ext/test-more-bash/ext/bashplus/test/use.t: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ingydotnet/git-subrepo/HEAD/ext/test-more-bash/ext/bashplus/test/use.t -------------------------------------------------------------------------------- /ext/test-more-bash/ext/test-tap-bash/.gitrepo: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ingydotnet/git-subrepo/HEAD/ext/test-more-bash/ext/test-tap-bash/.gitrepo -------------------------------------------------------------------------------- /ext/test-more-bash/ext/test-tap-bash/.travis.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ingydotnet/git-subrepo/HEAD/ext/test-more-bash/ext/test-tap-bash/.travis.yml -------------------------------------------------------------------------------- /ext/test-more-bash/ext/test-tap-bash/Changes: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ingydotnet/git-subrepo/HEAD/ext/test-more-bash/ext/test-tap-bash/Changes -------------------------------------------------------------------------------- /ext/test-more-bash/ext/test-tap-bash/License: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ingydotnet/git-subrepo/HEAD/ext/test-more-bash/ext/test-tap-bash/License -------------------------------------------------------------------------------- /ext/test-more-bash/ext/test-tap-bash/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ingydotnet/git-subrepo/HEAD/ext/test-more-bash/ext/test-tap-bash/Makefile -------------------------------------------------------------------------------- /ext/test-more-bash/ext/test-tap-bash/Meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ingydotnet/git-subrepo/HEAD/ext/test-more-bash/ext/test-tap-bash/Meta -------------------------------------------------------------------------------- /ext/test-more-bash/ext/test-tap-bash/ReadMe.pod: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ingydotnet/git-subrepo/HEAD/ext/test-more-bash/ext/test-tap-bash/ReadMe.pod -------------------------------------------------------------------------------- /ext/test-more-bash/ext/test-tap-bash/doc/test-tap.swim: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ingydotnet/git-subrepo/HEAD/ext/test-more-bash/ext/test-tap-bash/doc/test-tap.swim -------------------------------------------------------------------------------- /ext/test-more-bash/ext/test-tap-bash/lib/test/tap.bash: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ingydotnet/git-subrepo/HEAD/ext/test-more-bash/ext/test-tap-bash/lib/test/tap.bash -------------------------------------------------------------------------------- /ext/test-more-bash/ext/test-tap-bash/man/man3/test-tap.3: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ingydotnet/git-subrepo/HEAD/ext/test-more-bash/ext/test-tap-bash/man/man3/test-tap.3 -------------------------------------------------------------------------------- /ext/test-more-bash/ext/test-tap-bash/test/bail_out.t: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ingydotnet/git-subrepo/HEAD/ext/test-more-bash/ext/test-tap-bash/test/bail_out.t -------------------------------------------------------------------------------- /ext/test-more-bash/ext/test-tap-bash/test/done.t: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ingydotnet/git-subrepo/HEAD/ext/test-more-bash/ext/test-tap-bash/test/done.t -------------------------------------------------------------------------------- /ext/test-more-bash/ext/test-tap-bash/test/fail.t: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ingydotnet/git-subrepo/HEAD/ext/test-more-bash/ext/test-tap-bash/test/fail.t -------------------------------------------------------------------------------- /ext/test-more-bash/ext/test-tap-bash/test/fail_fast.t: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ingydotnet/git-subrepo/HEAD/ext/test-more-bash/ext/test-tap-bash/test/fail_fast.t -------------------------------------------------------------------------------- /ext/test-more-bash/ext/test-tap-bash/test/helper.bash: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ingydotnet/git-subrepo/HEAD/ext/test-more-bash/ext/test-tap-bash/test/helper.bash -------------------------------------------------------------------------------- /ext/test-more-bash/ext/test-tap-bash/test/pass.t: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ingydotnet/git-subrepo/HEAD/ext/test-more-bash/ext/test-tap-bash/test/pass.t -------------------------------------------------------------------------------- /ext/test-more-bash/ext/test-tap-bash/test/plan.t: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ingydotnet/git-subrepo/HEAD/ext/test-more-bash/ext/test-tap-bash/test/plan.t -------------------------------------------------------------------------------- /ext/test-more-bash/ext/test-tap-bash/test/shellcheck.t: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ingydotnet/git-subrepo/HEAD/ext/test-more-bash/ext/test-tap-bash/test/shellcheck.t -------------------------------------------------------------------------------- /ext/test-more-bash/ext/test-tap-bash/test/skip_all.t: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ingydotnet/git-subrepo/HEAD/ext/test-more-bash/ext/test-tap-bash/test/skip_all.t -------------------------------------------------------------------------------- /ext/test-more-bash/ext/test-tap-bash/test/tap.t: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ingydotnet/git-subrepo/HEAD/ext/test-more-bash/ext/test-tap-bash/test/tap.t -------------------------------------------------------------------------------- /ext/test-more-bash/ext/test-tap-bash/test/test/bail.t: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ingydotnet/git-subrepo/HEAD/ext/test-more-bash/ext/test-tap-bash/test/test/bail.t -------------------------------------------------------------------------------- /ext/test-more-bash/ext/test-tap-bash/test/test/fail.t: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ingydotnet/git-subrepo/HEAD/ext/test-more-bash/ext/test-tap-bash/test/test/fail.t -------------------------------------------------------------------------------- /ext/test-more-bash/ext/test-tap-bash/test/test/fail_fast.t: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ingydotnet/git-subrepo/HEAD/ext/test-more-bash/ext/test-tap-bash/test/test/fail_fast.t -------------------------------------------------------------------------------- /ext/test-more-bash/ext/test-tap-bash/test/test/skip-all-init.t: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ingydotnet/git-subrepo/HEAD/ext/test-more-bash/ext/test-tap-bash/test/test/skip-all-init.t -------------------------------------------------------------------------------- /ext/test-more-bash/ext/test-tap-bash/test/test/skip-all-plan.t: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ingydotnet/git-subrepo/HEAD/ext/test-more-bash/ext/test-tap-bash/test/test/skip-all-plan.t -------------------------------------------------------------------------------- /ext/test-more-bash/lib/test/more.bash: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ingydotnet/git-subrepo/HEAD/ext/test-more-bash/lib/test/more.bash -------------------------------------------------------------------------------- /ext/test-more-bash/man/man3/test-more.3: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ingydotnet/git-subrepo/HEAD/ext/test-more-bash/man/man3/test-more.3 -------------------------------------------------------------------------------- /ext/test-more-bash/test/fail.t: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ingydotnet/git-subrepo/HEAD/ext/test-more-bash/test/fail.t -------------------------------------------------------------------------------- /ext/test-more-bash/test/more.t: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ingydotnet/git-subrepo/HEAD/ext/test-more-bash/test/more.t -------------------------------------------------------------------------------- /ext/test-more-bash/test/pass.t: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ingydotnet/git-subrepo/HEAD/ext/test-more-bash/test/pass.t -------------------------------------------------------------------------------- /ext/test-more-bash/test/setup: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ingydotnet/git-subrepo/HEAD/ext/test-more-bash/test/setup -------------------------------------------------------------------------------- /ext/test-more-bash/test/shellcheck.t: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ingydotnet/git-subrepo/HEAD/ext/test-more-bash/test/shellcheck.t -------------------------------------------------------------------------------- /ext/test-more-bash/test/skip_all.t: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ingydotnet/git-subrepo/HEAD/ext/test-more-bash/test/skip_all.t -------------------------------------------------------------------------------- /ext/test-more-bash/test/test/fail1.t: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ingydotnet/git-subrepo/HEAD/ext/test-more-bash/test/test/fail1.t -------------------------------------------------------------------------------- /ext/test-more-bash/test/test/skip_all.t: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ingydotnet/git-subrepo/HEAD/ext/test-more-bash/test/test/skip_all.t -------------------------------------------------------------------------------- /lib/git-subrepo: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ingydotnet/git-subrepo/HEAD/lib/git-subrepo -------------------------------------------------------------------------------- /lib/git-subrepo.d/bash+.bash: -------------------------------------------------------------------------------- 1 | ../../ext/bashplus/lib/bash+.bash -------------------------------------------------------------------------------- /lib/git-subrepo.d/help-functions.bash: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ingydotnet/git-subrepo/HEAD/lib/git-subrepo.d/help-functions.bash -------------------------------------------------------------------------------- /man/man1/git-subrepo.1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ingydotnet/git-subrepo/HEAD/man/man1/git-subrepo.1 -------------------------------------------------------------------------------- /note/0.4.0: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ingydotnet/git-subrepo/HEAD/note/0.4.0 -------------------------------------------------------------------------------- /note/AllGitCmds: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ingydotnet/git-subrepo/HEAD/note/AllGitCmds -------------------------------------------------------------------------------- /note/Cases: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ingydotnet/git-subrepo/HEAD/note/Cases -------------------------------------------------------------------------------- /note/Commands: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ingydotnet/git-subrepo/HEAD/note/Commands -------------------------------------------------------------------------------- /note/Dags: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ingydotnet/git-subrepo/HEAD/note/Dags -------------------------------------------------------------------------------- /note/Gists: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ingydotnet/git-subrepo/HEAD/note/Gists -------------------------------------------------------------------------------- /note/Links: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ingydotnet/git-subrepo/HEAD/note/Links -------------------------------------------------------------------------------- /note/Plugins: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ingydotnet/git-subrepo/HEAD/note/Plugins -------------------------------------------------------------------------------- /note/Spec: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ingydotnet/git-subrepo/HEAD/note/Spec -------------------------------------------------------------------------------- /note/Story1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ingydotnet/git-subrepo/HEAD/note/Story1 -------------------------------------------------------------------------------- /note/ToDo: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ingydotnet/git-subrepo/HEAD/note/ToDo -------------------------------------------------------------------------------- /note/design.swim: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ingydotnet/git-subrepo/HEAD/note/design.swim -------------------------------------------------------------------------------- /note/design2.swim: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ingydotnet/git-subrepo/HEAD/note/design2.swim -------------------------------------------------------------------------------- /note/pull-dance.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ingydotnet/git-subrepo/HEAD/note/pull-dance.txt -------------------------------------------------------------------------------- /note/recreate-rebase-conflict.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ingydotnet/git-subrepo/HEAD/note/recreate-rebase-conflict.sh -------------------------------------------------------------------------------- /note/subtree-rebase-fail-example/test.bash: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ingydotnet/git-subrepo/HEAD/note/subtree-rebase-fail-example/test.bash -------------------------------------------------------------------------------- /note/test-subrepo-push.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ingydotnet/git-subrepo/HEAD/note/test-subrepo-push.sh -------------------------------------------------------------------------------- /note/test.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ingydotnet/git-subrepo/HEAD/note/test.sh -------------------------------------------------------------------------------- /pkg/bin/generate-completion.pl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ingydotnet/git-subrepo/HEAD/pkg/bin/generate-completion.pl -------------------------------------------------------------------------------- /pkg/bin/generate-help-functions.pl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ingydotnet/git-subrepo/HEAD/pkg/bin/generate-help-functions.pl -------------------------------------------------------------------------------- /share/completion.bash: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ingydotnet/git-subrepo/HEAD/share/completion.bash -------------------------------------------------------------------------------- /share/enable-completion.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ingydotnet/git-subrepo/HEAD/share/enable-completion.sh -------------------------------------------------------------------------------- /share/git-completion.bash: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ingydotnet/git-subrepo/HEAD/share/git-completion.bash -------------------------------------------------------------------------------- /share/git-subrepo.fish: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ingydotnet/git-subrepo/HEAD/share/git-subrepo.fish -------------------------------------------------------------------------------- /share/zsh-completion/_git-subrepo: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ingydotnet/git-subrepo/HEAD/share/zsh-completion/_git-subrepo -------------------------------------------------------------------------------- /test/Dockerfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ingydotnet/git-subrepo/HEAD/test/Dockerfile -------------------------------------------------------------------------------- /test/branch-all.t: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ingydotnet/git-subrepo/HEAD/test/branch-all.t -------------------------------------------------------------------------------- /test/branch-rev-list-one-path.t: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ingydotnet/git-subrepo/HEAD/test/branch-rev-list-one-path.t -------------------------------------------------------------------------------- /test/branch-rev-list.t: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ingydotnet/git-subrepo/HEAD/test/branch-rev-list.t -------------------------------------------------------------------------------- /test/branch.t: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ingydotnet/git-subrepo/HEAD/test/branch.t -------------------------------------------------------------------------------- /test/clean.t: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ingydotnet/git-subrepo/HEAD/test/clean.t -------------------------------------------------------------------------------- /test/clone-annotated-tag.t: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ingydotnet/git-subrepo/HEAD/test/clone-annotated-tag.t -------------------------------------------------------------------------------- /test/clone.t: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ingydotnet/git-subrepo/HEAD/test/clone.t -------------------------------------------------------------------------------- /test/compile.t: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ingydotnet/git-subrepo/HEAD/test/compile.t -------------------------------------------------------------------------------- /test/config.t: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ingydotnet/git-subrepo/HEAD/test/config.t -------------------------------------------------------------------------------- /test/encode.t: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ingydotnet/git-subrepo/HEAD/test/encode.t -------------------------------------------------------------------------------- /test/error.t: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ingydotnet/git-subrepo/HEAD/test/error.t -------------------------------------------------------------------------------- /test/fetch.t: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ingydotnet/git-subrepo/HEAD/test/fetch.t -------------------------------------------------------------------------------- /test/gitignore.t: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ingydotnet/git-subrepo/HEAD/test/gitignore.t -------------------------------------------------------------------------------- /test/init.t: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ingydotnet/git-subrepo/HEAD/test/init.t -------------------------------------------------------------------------------- /test/issue29.t: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ingydotnet/git-subrepo/HEAD/test/issue29.t -------------------------------------------------------------------------------- /test/issue95.t: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ingydotnet/git-subrepo/HEAD/test/issue95.t -------------------------------------------------------------------------------- /test/issue96.t: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ingydotnet/git-subrepo/HEAD/test/issue96.t -------------------------------------------------------------------------------- /test/pull-all.t: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ingydotnet/git-subrepo/HEAD/test/pull-all.t -------------------------------------------------------------------------------- /test/pull-merge.t: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ingydotnet/git-subrepo/HEAD/test/pull-merge.t -------------------------------------------------------------------------------- /test/pull-message.t: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ingydotnet/git-subrepo/HEAD/test/pull-message.t -------------------------------------------------------------------------------- /test/pull-new-branch.t: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ingydotnet/git-subrepo/HEAD/test/pull-new-branch.t -------------------------------------------------------------------------------- /test/pull-ours.t: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ingydotnet/git-subrepo/HEAD/test/pull-ours.t -------------------------------------------------------------------------------- /test/pull-theirs.t: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ingydotnet/git-subrepo/HEAD/test/pull-theirs.t -------------------------------------------------------------------------------- /test/pull-twice.t: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ingydotnet/git-subrepo/HEAD/test/pull-twice.t -------------------------------------------------------------------------------- /test/pull-worktree.t: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ingydotnet/git-subrepo/HEAD/test/pull-worktree.t -------------------------------------------------------------------------------- /test/pull.t: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ingydotnet/git-subrepo/HEAD/test/pull.t -------------------------------------------------------------------------------- /test/push-after-init.t: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ingydotnet/git-subrepo/HEAD/test/push-after-init.t -------------------------------------------------------------------------------- /test/push-after-push-no-changes.t: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ingydotnet/git-subrepo/HEAD/test/push-after-push-no-changes.t -------------------------------------------------------------------------------- /test/push-force.t: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ingydotnet/git-subrepo/HEAD/test/push-force.t -------------------------------------------------------------------------------- /test/push-new-branch.t: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ingydotnet/git-subrepo/HEAD/test/push-new-branch.t -------------------------------------------------------------------------------- /test/push-no-changes.t: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ingydotnet/git-subrepo/HEAD/test/push-no-changes.t -------------------------------------------------------------------------------- /test/push-squash.t: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ingydotnet/git-subrepo/HEAD/test/push-squash.t -------------------------------------------------------------------------------- /test/push.t: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ingydotnet/git-subrepo/HEAD/test/push.t -------------------------------------------------------------------------------- /test/rebase.t: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ingydotnet/git-subrepo/HEAD/test/rebase.t -------------------------------------------------------------------------------- /test/reclone.t: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ingydotnet/git-subrepo/HEAD/test/reclone.t -------------------------------------------------------------------------------- /test/repo/bar/HEAD: -------------------------------------------------------------------------------- 1 | ref: refs/heads/master 2 | -------------------------------------------------------------------------------- /test/repo/bar/config: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ingydotnet/git-subrepo/HEAD/test/repo/bar/config -------------------------------------------------------------------------------- /test/repo/bar/objects/1f/0c4b264caed0126814a0ede851a1e0b4e16ae6: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ingydotnet/git-subrepo/HEAD/test/repo/bar/objects/1f/0c4b264caed0126814a0ede851a1e0b4e16ae6 -------------------------------------------------------------------------------- /test/repo/bar/objects/87/46903fdb1b9c2101377880125917c2e05b4d69: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ingydotnet/git-subrepo/HEAD/test/repo/bar/objects/87/46903fdb1b9c2101377880125917c2e05b4d69 -------------------------------------------------------------------------------- /test/repo/bar/objects/94/c86ffc745232d89f78c6f895e11e71272518db: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ingydotnet/git-subrepo/HEAD/test/repo/bar/objects/94/c86ffc745232d89f78c6f895e11e71272518db -------------------------------------------------------------------------------- /test/repo/bar/objects/c6/76c57b6576743fa56278527aa60ebd2e202a7c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ingydotnet/git-subrepo/HEAD/test/repo/bar/objects/c6/76c57b6576743fa56278527aa60ebd2e202a7c -------------------------------------------------------------------------------- /test/repo/bar/objects/e6/9de29bb2d1d6434b8b29ae775ad8c2e48c5391: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ingydotnet/git-subrepo/HEAD/test/repo/bar/objects/e6/9de29bb2d1d6434b8b29ae775ad8c2e48c5391 -------------------------------------------------------------------------------- /test/repo/bar/objects/f6/2a8ff3feadf39b0a98f1a86ec6d1eb33858ee9: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ingydotnet/git-subrepo/HEAD/test/repo/bar/objects/f6/2a8ff3feadf39b0a98f1a86ec6d1eb33858ee9 -------------------------------------------------------------------------------- /test/repo/bar/refs/heads/master: -------------------------------------------------------------------------------- 1 | 94c86ffc745232d89f78c6f895e11e71272518db 2 | -------------------------------------------------------------------------------- /test/repo/bar/refs/tags/A: -------------------------------------------------------------------------------- 1 | f62a8ff3feadf39b0a98f1a86ec6d1eb33858ee9 2 | -------------------------------------------------------------------------------- /test/repo/foo/HEAD: -------------------------------------------------------------------------------- 1 | ref: refs/heads/master 2 | -------------------------------------------------------------------------------- /test/repo/foo/config: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ingydotnet/git-subrepo/HEAD/test/repo/foo/config -------------------------------------------------------------------------------- /test/repo/foo/objects/a0/f4cdaaf533a936296cdebbed8206c3b9ededa8: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ingydotnet/git-subrepo/HEAD/test/repo/foo/objects/a0/f4cdaaf533a936296cdebbed8206c3b9ededa8 -------------------------------------------------------------------------------- /test/repo/foo/objects/e2/1291a1ad392a9d4c51dd9586804f1467b28afd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ingydotnet/git-subrepo/HEAD/test/repo/foo/objects/e2/1291a1ad392a9d4c51dd9586804f1467b28afd -------------------------------------------------------------------------------- /test/repo/foo/objects/e6/9de29bb2d1d6434b8b29ae775ad8c2e48c5391: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ingydotnet/git-subrepo/HEAD/test/repo/foo/objects/e6/9de29bb2d1d6434b8b29ae775ad8c2e48c5391 -------------------------------------------------------------------------------- /test/repo/foo/refs/heads/master: -------------------------------------------------------------------------------- 1 | e21291a1ad392a9d4c51dd9586804f1467b28afd 2 | -------------------------------------------------------------------------------- /test/repo/init/HEAD: -------------------------------------------------------------------------------- 1 | ref: refs/heads/master 2 | -------------------------------------------------------------------------------- /test/repo/init/config: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ingydotnet/git-subrepo/HEAD/test/repo/init/config -------------------------------------------------------------------------------- /test/repo/init/objects/11/523f5dcf03b4c89b592dc8a3d0308f68da2386: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ingydotnet/git-subrepo/HEAD/test/repo/init/objects/11/523f5dcf03b4c89b592dc8a3d0308f68da2386 -------------------------------------------------------------------------------- /test/repo/init/objects/14/2addf8ec5f37334e837440122c62f2c68a29ad: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ingydotnet/git-subrepo/HEAD/test/repo/init/objects/14/2addf8ec5f37334e837440122c62f2c68a29ad -------------------------------------------------------------------------------- /test/repo/init/objects/32/5180321750a21cd7a4e7ecda319e557a4f6a09: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ingydotnet/git-subrepo/HEAD/test/repo/init/objects/32/5180321750a21cd7a4e7ecda319e557a4f6a09 -------------------------------------------------------------------------------- /test/repo/init/objects/3d/918c6901c02f43af5d31779dd5e1f9166aeb36: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ingydotnet/git-subrepo/HEAD/test/repo/init/objects/3d/918c6901c02f43af5d31779dd5e1f9166aeb36 -------------------------------------------------------------------------------- /test/repo/init/objects/3e/4cb596066dce63ba4d047abddb677389b65e19: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ingydotnet/git-subrepo/HEAD/test/repo/init/objects/3e/4cb596066dce63ba4d047abddb677389b65e19 -------------------------------------------------------------------------------- /test/repo/init/objects/4b/6e53022e7a04f07887697e4f3d7c377fd9822b: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ingydotnet/git-subrepo/HEAD/test/repo/init/objects/4b/6e53022e7a04f07887697e4f3d7c377fd9822b -------------------------------------------------------------------------------- /test/repo/init/objects/58/931fc1bd559b59c41ea738fc7ad04f9ad01bd3: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ingydotnet/git-subrepo/HEAD/test/repo/init/objects/58/931fc1bd559b59c41ea738fc7ad04f9ad01bd3 -------------------------------------------------------------------------------- /test/repo/init/objects/5e/c0c28e1b806f25efdca18fcf7a74b49c3755bd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ingydotnet/git-subrepo/HEAD/test/repo/init/objects/5e/c0c28e1b806f25efdca18fcf7a74b49c3755bd -------------------------------------------------------------------------------- /test/repo/init/objects/75/fa6584e748f57eff06eebdc55e9ac21d4fcbf2: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ingydotnet/git-subrepo/HEAD/test/repo/init/objects/75/fa6584e748f57eff06eebdc55e9ac21d4fcbf2 -------------------------------------------------------------------------------- /test/repo/init/objects/80/2d5edbd5e1cb7fca82b5bd38e7c8a0a496fb20: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ingydotnet/git-subrepo/HEAD/test/repo/init/objects/80/2d5edbd5e1cb7fca82b5bd38e7c8a0a496fb20 -------------------------------------------------------------------------------- /test/repo/init/objects/94/7b3d714c38791e95ad6f928b48c98bb8708acd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ingydotnet/git-subrepo/HEAD/test/repo/init/objects/94/7b3d714c38791e95ad6f928b48c98bb8708acd -------------------------------------------------------------------------------- /test/repo/init/objects/95/e1f2df3f4d5f3d7a60588c25a7ca8a913d3c2a: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ingydotnet/git-subrepo/HEAD/test/repo/init/objects/95/e1f2df3f4d5f3d7a60588c25a7ca8a913d3c2a -------------------------------------------------------------------------------- /test/repo/init/objects/b1/5f4a7666baf40d949548ead946a3370e273479: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ingydotnet/git-subrepo/HEAD/test/repo/init/objects/b1/5f4a7666baf40d949548ead946a3370e273479 -------------------------------------------------------------------------------- /test/repo/init/objects/c3/ee8978c4c5d84c3b7d00ba8e5906933d027882: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ingydotnet/git-subrepo/HEAD/test/repo/init/objects/c3/ee8978c4c5d84c3b7d00ba8e5906933d027882 -------------------------------------------------------------------------------- /test/repo/init/objects/c8/b0bffbc405ef3fad7354ff833fbec36d67ddfa: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ingydotnet/git-subrepo/HEAD/test/repo/init/objects/c8/b0bffbc405ef3fad7354ff833fbec36d67ddfa -------------------------------------------------------------------------------- /test/repo/init/objects/dd/8bdb934ec848137f011fe423b185505c343626: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ingydotnet/git-subrepo/HEAD/test/repo/init/objects/dd/8bdb934ec848137f011fe423b185505c343626 -------------------------------------------------------------------------------- /test/repo/init/objects/e2/9be58c767cfeb27235c995d293a7d71aac0135: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ingydotnet/git-subrepo/HEAD/test/repo/init/objects/e2/9be58c767cfeb27235c995d293a7d71aac0135 -------------------------------------------------------------------------------- /test/repo/init/objects/ee/1224401fc6aac595145fa727dcf6706ac8aec1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ingydotnet/git-subrepo/HEAD/test/repo/init/objects/ee/1224401fc6aac595145fa727dcf6706ac8aec1 -------------------------------------------------------------------------------- /test/repo/init/objects/f1/cc1a657b2e805c400f5dcaaa76bd29c6178b1b: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ingydotnet/git-subrepo/HEAD/test/repo/init/objects/f1/cc1a657b2e805c400f5dcaaa76bd29c6178b1b -------------------------------------------------------------------------------- /test/repo/init/refs/heads/master: -------------------------------------------------------------------------------- 1 | 325180321750a21cd7a4e7ecda319e557a4f6a09 2 | -------------------------------------------------------------------------------- /test/setup: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ingydotnet/git-subrepo/HEAD/test/setup -------------------------------------------------------------------------------- /test/status.t: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ingydotnet/git-subrepo/HEAD/test/status.t -------------------------------------------------------------------------------- /test/submodule.t: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ingydotnet/git-subrepo/HEAD/test/submodule.t -------------------------------------------------------------------------------- /test/zsh.t: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ingydotnet/git-subrepo/HEAD/test/zsh.t --------------------------------------------------------------------------------