├── .gitignore ├── COPYING ├── Changes ├── Makefile ├── README.md ├── commit-partial ├── commit-partial.1 ├── commit-patch ├── commit-patch-buffer.el ├── commit-patch-buffer.nix ├── commit-patch.nix ├── cpanfile └── test ├── main.test ├── run-tests └── vcs ├── bzr.sh ├── cvs.sh ├── darcs.sh ├── git.sh ├── hg.sh ├── mtn.sh └── svn.sh /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/caldwell/commit-patch/HEAD/.gitignore -------------------------------------------------------------------------------- /COPYING: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/caldwell/commit-patch/HEAD/COPYING -------------------------------------------------------------------------------- /Changes: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/caldwell/commit-patch/HEAD/Changes -------------------------------------------------------------------------------- /Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/caldwell/commit-patch/HEAD/Makefile -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/caldwell/commit-patch/HEAD/README.md -------------------------------------------------------------------------------- /commit-partial: -------------------------------------------------------------------------------- 1 | commit-patch -------------------------------------------------------------------------------- /commit-partial.1: -------------------------------------------------------------------------------- 1 | commit-patch.1 -------------------------------------------------------------------------------- /commit-patch: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/caldwell/commit-patch/HEAD/commit-patch -------------------------------------------------------------------------------- /commit-patch-buffer.el: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/caldwell/commit-patch/HEAD/commit-patch-buffer.el -------------------------------------------------------------------------------- /commit-patch-buffer.nix: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/caldwell/commit-patch/HEAD/commit-patch-buffer.nix -------------------------------------------------------------------------------- /commit-patch.nix: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/caldwell/commit-patch/HEAD/commit-patch.nix -------------------------------------------------------------------------------- /cpanfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/caldwell/commit-patch/HEAD/cpanfile -------------------------------------------------------------------------------- /test/main.test: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/caldwell/commit-patch/HEAD/test/main.test -------------------------------------------------------------------------------- /test/run-tests: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/caldwell/commit-patch/HEAD/test/run-tests -------------------------------------------------------------------------------- /test/vcs/bzr.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/caldwell/commit-patch/HEAD/test/vcs/bzr.sh -------------------------------------------------------------------------------- /test/vcs/cvs.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/caldwell/commit-patch/HEAD/test/vcs/cvs.sh -------------------------------------------------------------------------------- /test/vcs/darcs.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/caldwell/commit-patch/HEAD/test/vcs/darcs.sh -------------------------------------------------------------------------------- /test/vcs/git.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/caldwell/commit-patch/HEAD/test/vcs/git.sh -------------------------------------------------------------------------------- /test/vcs/hg.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/caldwell/commit-patch/HEAD/test/vcs/hg.sh -------------------------------------------------------------------------------- /test/vcs/mtn.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/caldwell/commit-patch/HEAD/test/vcs/mtn.sh -------------------------------------------------------------------------------- /test/vcs/svn.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/caldwell/commit-patch/HEAD/test/vcs/svn.sh --------------------------------------------------------------------------------