├── .gitignore ├── .travis.yml ├── LICENSE ├── Makefile ├── README.md ├── _fiddle_seq_editor ├── appveyor.yml ├── git-fiddle ├── man1 └── git-fiddle.1 └── tests ├── fiddle.bats └── support.bash /.gitignore: -------------------------------------------------------------------------------- 1 | *.sw[a-z] 2 | *.un~ 3 | -------------------------------------------------------------------------------- /.travis.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/felixSchl/git-fiddle/HEAD/.travis.yml -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/felixSchl/git-fiddle/HEAD/LICENSE -------------------------------------------------------------------------------- /Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/felixSchl/git-fiddle/HEAD/Makefile -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/felixSchl/git-fiddle/HEAD/README.md -------------------------------------------------------------------------------- /_fiddle_seq_editor: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/felixSchl/git-fiddle/HEAD/_fiddle_seq_editor -------------------------------------------------------------------------------- /appveyor.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/felixSchl/git-fiddle/HEAD/appveyor.yml -------------------------------------------------------------------------------- /git-fiddle: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/felixSchl/git-fiddle/HEAD/git-fiddle -------------------------------------------------------------------------------- /man1/git-fiddle.1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/felixSchl/git-fiddle/HEAD/man1/git-fiddle.1 -------------------------------------------------------------------------------- /tests/fiddle.bats: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/felixSchl/git-fiddle/HEAD/tests/fiddle.bats -------------------------------------------------------------------------------- /tests/support.bash: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/felixSchl/git-fiddle/HEAD/tests/support.bash --------------------------------------------------------------------------------