├── .gitattributes ├── GPL ├── Makefile ├── README ├── TODO ├── debian ├── NEWS ├── changelog ├── clean ├── compat ├── control ├── copyright ├── docs ├── examples ├── install ├── manpages └── rules ├── lib ├── download ├── git-fake-bare ├── git-subtree ├── git-svn ├── osc ├── stow ├── unison └── vcsh ├── mr ├── mr-recache ├── mrconfig ├── mrconfig.complex ├── mrdir ├── webcheckout └── zsh ├── _mr_repositories └── mrcd /.gitattributes: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aspiers/kitenet-mr/HEAD/.gitattributes -------------------------------------------------------------------------------- /GPL: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aspiers/kitenet-mr/HEAD/GPL -------------------------------------------------------------------------------- /Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aspiers/kitenet-mr/HEAD/Makefile -------------------------------------------------------------------------------- /README: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aspiers/kitenet-mr/HEAD/README -------------------------------------------------------------------------------- /TODO: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aspiers/kitenet-mr/HEAD/TODO -------------------------------------------------------------------------------- /debian/NEWS: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aspiers/kitenet-mr/HEAD/debian/NEWS -------------------------------------------------------------------------------- /debian/changelog: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aspiers/kitenet-mr/HEAD/debian/changelog -------------------------------------------------------------------------------- /debian/clean: -------------------------------------------------------------------------------- 1 | *.1 2 | -------------------------------------------------------------------------------- /debian/compat: -------------------------------------------------------------------------------- 1 | 7 2 | -------------------------------------------------------------------------------- /debian/control: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aspiers/kitenet-mr/HEAD/debian/control -------------------------------------------------------------------------------- /debian/copyright: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aspiers/kitenet-mr/HEAD/debian/copyright -------------------------------------------------------------------------------- /debian/docs: -------------------------------------------------------------------------------- 1 | README TODO 2 | -------------------------------------------------------------------------------- /debian/examples: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aspiers/kitenet-mr/HEAD/debian/examples -------------------------------------------------------------------------------- /debian/install: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aspiers/kitenet-mr/HEAD/debian/install -------------------------------------------------------------------------------- /debian/manpages: -------------------------------------------------------------------------------- 1 | *.1 2 | -------------------------------------------------------------------------------- /debian/rules: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aspiers/kitenet-mr/HEAD/debian/rules -------------------------------------------------------------------------------- /lib/download: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aspiers/kitenet-mr/HEAD/lib/download -------------------------------------------------------------------------------- /lib/git-fake-bare: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aspiers/kitenet-mr/HEAD/lib/git-fake-bare -------------------------------------------------------------------------------- /lib/git-subtree: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aspiers/kitenet-mr/HEAD/lib/git-subtree -------------------------------------------------------------------------------- /lib/git-svn: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aspiers/kitenet-mr/HEAD/lib/git-svn -------------------------------------------------------------------------------- /lib/osc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aspiers/kitenet-mr/HEAD/lib/osc -------------------------------------------------------------------------------- /lib/stow: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aspiers/kitenet-mr/HEAD/lib/stow -------------------------------------------------------------------------------- /lib/unison: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aspiers/kitenet-mr/HEAD/lib/unison -------------------------------------------------------------------------------- /lib/vcsh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aspiers/kitenet-mr/HEAD/lib/vcsh -------------------------------------------------------------------------------- /mr: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aspiers/kitenet-mr/HEAD/mr -------------------------------------------------------------------------------- /mr-recache: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aspiers/kitenet-mr/HEAD/mr-recache -------------------------------------------------------------------------------- /mrconfig: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aspiers/kitenet-mr/HEAD/mrconfig -------------------------------------------------------------------------------- /mrconfig.complex: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aspiers/kitenet-mr/HEAD/mrconfig.complex -------------------------------------------------------------------------------- /mrdir: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aspiers/kitenet-mr/HEAD/mrdir -------------------------------------------------------------------------------- /webcheckout: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aspiers/kitenet-mr/HEAD/webcheckout -------------------------------------------------------------------------------- /zsh/_mr_repositories: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aspiers/kitenet-mr/HEAD/zsh/_mr_repositories -------------------------------------------------------------------------------- /zsh/mrcd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aspiers/kitenet-mr/HEAD/zsh/mrcd --------------------------------------------------------------------------------