├── .gitignore ├── .travis.yml ├── CHANGES.rst ├── README.rst ├── composer.json ├── phpunit.xml.dist ├── release └── .gitignore ├── src ├── Git │ ├── Daily.php │ └── Daily │ │ ├── ClassLoader.php │ │ ├── Command │ │ ├── Config.php │ │ ├── Help.php │ │ ├── Hotfix.php │ │ ├── Init.php │ │ ├── Pull.php │ │ ├── Push.php │ │ ├── Release.php │ │ └── Version.php │ │ ├── CommandAbstract.php │ │ ├── CommandUtil.php │ │ ├── Exception.php │ │ ├── GitUtil.php │ │ └── OptionParser.php └── bin │ ├── .gen-local-git-daily.sh │ └── git-daily ├── test ├── Git │ ├── Daily │ │ ├── ClassLoaderTest.php │ │ ├── GitUtilTest.php │ │ └── OptionParserTest.php │ └── DailyTest.php ├── bootstrap.php └── hotfix │ ├── .gitignore │ ├── expected │ ├── hotfix-test1-expected │ └── hotfix-test2-expected │ ├── hotfix-test1 │ └── hotfix-test2 └── tmp └── .gitignore /.gitignore: -------------------------------------------------------------------------------- 1 | src/bin/git-daily-local 2 | tmp/ 3 | build/ 4 | phpunit.xml 5 | -------------------------------------------------------------------------------- /.travis.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sotarok/git-daily/HEAD/.travis.yml -------------------------------------------------------------------------------- /CHANGES.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sotarok/git-daily/HEAD/CHANGES.rst -------------------------------------------------------------------------------- /README.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sotarok/git-daily/HEAD/README.rst -------------------------------------------------------------------------------- /composer.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sotarok/git-daily/HEAD/composer.json -------------------------------------------------------------------------------- /phpunit.xml.dist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sotarok/git-daily/HEAD/phpunit.xml.dist -------------------------------------------------------------------------------- /release/.gitignore: -------------------------------------------------------------------------------- 1 | * 2 | -------------------------------------------------------------------------------- /src/Git/Daily.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sotarok/git-daily/HEAD/src/Git/Daily.php -------------------------------------------------------------------------------- /src/Git/Daily/ClassLoader.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sotarok/git-daily/HEAD/src/Git/Daily/ClassLoader.php -------------------------------------------------------------------------------- /src/Git/Daily/Command/Config.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sotarok/git-daily/HEAD/src/Git/Daily/Command/Config.php -------------------------------------------------------------------------------- /src/Git/Daily/Command/Help.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sotarok/git-daily/HEAD/src/Git/Daily/Command/Help.php -------------------------------------------------------------------------------- /src/Git/Daily/Command/Hotfix.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sotarok/git-daily/HEAD/src/Git/Daily/Command/Hotfix.php -------------------------------------------------------------------------------- /src/Git/Daily/Command/Init.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sotarok/git-daily/HEAD/src/Git/Daily/Command/Init.php -------------------------------------------------------------------------------- /src/Git/Daily/Command/Pull.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sotarok/git-daily/HEAD/src/Git/Daily/Command/Pull.php -------------------------------------------------------------------------------- /src/Git/Daily/Command/Push.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sotarok/git-daily/HEAD/src/Git/Daily/Command/Push.php -------------------------------------------------------------------------------- /src/Git/Daily/Command/Release.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sotarok/git-daily/HEAD/src/Git/Daily/Command/Release.php -------------------------------------------------------------------------------- /src/Git/Daily/Command/Version.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sotarok/git-daily/HEAD/src/Git/Daily/Command/Version.php -------------------------------------------------------------------------------- /src/Git/Daily/CommandAbstract.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sotarok/git-daily/HEAD/src/Git/Daily/CommandAbstract.php -------------------------------------------------------------------------------- /src/Git/Daily/CommandUtil.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sotarok/git-daily/HEAD/src/Git/Daily/CommandUtil.php -------------------------------------------------------------------------------- /src/Git/Daily/Exception.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sotarok/git-daily/HEAD/src/Git/Daily/Exception.php -------------------------------------------------------------------------------- /src/Git/Daily/GitUtil.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sotarok/git-daily/HEAD/src/Git/Daily/GitUtil.php -------------------------------------------------------------------------------- /src/Git/Daily/OptionParser.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sotarok/git-daily/HEAD/src/Git/Daily/OptionParser.php -------------------------------------------------------------------------------- /src/bin/.gen-local-git-daily.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sotarok/git-daily/HEAD/src/bin/.gen-local-git-daily.sh -------------------------------------------------------------------------------- /src/bin/git-daily: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sotarok/git-daily/HEAD/src/bin/git-daily -------------------------------------------------------------------------------- /test/Git/Daily/ClassLoaderTest.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sotarok/git-daily/HEAD/test/Git/Daily/ClassLoaderTest.php -------------------------------------------------------------------------------- /test/Git/Daily/GitUtilTest.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sotarok/git-daily/HEAD/test/Git/Daily/GitUtilTest.php -------------------------------------------------------------------------------- /test/Git/Daily/OptionParserTest.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sotarok/git-daily/HEAD/test/Git/Daily/OptionParserTest.php -------------------------------------------------------------------------------- /test/Git/DailyTest.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sotarok/git-daily/HEAD/test/Git/DailyTest.php -------------------------------------------------------------------------------- /test/bootstrap.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sotarok/git-daily/HEAD/test/bootstrap.php -------------------------------------------------------------------------------- /test/hotfix/.gitignore: -------------------------------------------------------------------------------- 1 | *result 2 | -------------------------------------------------------------------------------- /test/hotfix/expected/hotfix-test1-expected: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sotarok/git-daily/HEAD/test/hotfix/expected/hotfix-test1-expected -------------------------------------------------------------------------------- /test/hotfix/expected/hotfix-test2-expected: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sotarok/git-daily/HEAD/test/hotfix/expected/hotfix-test2-expected -------------------------------------------------------------------------------- /test/hotfix/hotfix-test1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sotarok/git-daily/HEAD/test/hotfix/hotfix-test1 -------------------------------------------------------------------------------- /test/hotfix/hotfix-test2: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sotarok/git-daily/HEAD/test/hotfix/hotfix-test2 -------------------------------------------------------------------------------- /tmp/.gitignore: -------------------------------------------------------------------------------- 1 | * 2 | --------------------------------------------------------------------------------