├── LICENSE ├── README.md ├── docs └── .gitkeep ├── phingistrano ├── build.example.xml ├── build.helpers.example.xml ├── build.xml ├── deploy │ ├── NetScpTask.php │ ├── NetSshTask.php │ └── build.xml ├── docs │ └── build.xml ├── package.xml ├── rollback │ └── build.xml ├── sniff │ └── build.xml ├── symfony2.helpers.xml ├── test │ └── build.xml ├── tunnel │ └── build.xml └── version │ ├── GitDescribeTask.php │ ├── GitDiffTask.php │ ├── GitLogTask.php │ ├── GitRemoteShowTask.php │ ├── GitTagTask.php │ ├── MimeMailTask.php │ ├── build.xml │ └── notify.html └── test ├── BuildFileTest.php └── phingistrano ├── GitTasks ├── .svn │ ├── all-wcprops │ ├── entries │ ├── prop-base │ │ ├── GitBaseTest.php.svn-base │ │ ├── GitBranchTaskTest.php.svn-base │ │ ├── GitCheckoutTaskTest.php.svn-base │ │ ├── GitCloneTaskTest.php.svn-base │ │ ├── GitFetchTaskTest.php.svn-base │ │ ├── GitGcTaskTest.php.svn-base │ │ ├── GitInitTaskTest.php.svn-base │ │ ├── GitLogTaskTest.php.svn-base │ │ ├── GitMergeTaskTest.php.svn-base │ │ ├── GitPullTaskTest.php.svn-base │ │ ├── GitPushTaskTest.php.svn-base │ │ ├── GitTagTaskTest.php.svn-base │ │ └── GitTestsHelper.php.svn-base │ └── text-base │ │ ├── GitBaseTest.php.svn-base │ │ ├── GitBaseTest.xml.svn-base │ │ ├── GitBranchTaskTest.php.svn-base │ │ ├── GitBranchTaskTest.xml.svn-base │ │ ├── GitCheckoutTaskTest.php.svn-base │ │ ├── GitCheckoutTaskTest.xml.svn-base │ │ ├── GitCloneTaskTest.php.svn-base │ │ ├── GitCloneTaskTest.xml.svn-base │ │ ├── GitFetchTaskTest.php.svn-base │ │ ├── GitFetchTaskTest.xml.svn-base │ │ ├── GitGcTaskTest.php.svn-base │ │ ├── GitGcTaskTest.xml.svn-base │ │ ├── GitInitTaskTest.php.svn-base │ │ ├── GitInitTaskTest.xml.svn-base │ │ ├── GitLogTaskTest.php.svn-base │ │ ├── GitLogTaskTest.xml.svn-base │ │ ├── GitMergeTaskTest.php.svn-base │ │ ├── GitMergeTaskTest.xml.svn-base │ │ ├── GitPullTaskTest.php.svn-base │ │ ├── GitPullTaskTest.xml.svn-base │ │ ├── GitPushTaskTest.php.svn-base │ │ ├── GitPushTaskTest.xml.svn-base │ │ ├── GitTagTaskTest.php.svn-base │ │ ├── GitTagTaskTest.xml.svn-base │ │ └── GitTestsHelper.php.svn-base ├── GitBaseTest.php ├── GitBaseTest.xml ├── GitBranchTaskTest.php ├── GitBranchTaskTest.xml ├── GitCheckoutTaskTest.php ├── GitCheckoutTaskTest.xml ├── GitCloneTaskTest.php ├── GitCloneTaskTest.xml ├── GitFetchTaskTest.php ├── GitFetchTaskTest.xml ├── GitGcTaskTest.php ├── GitGcTaskTest.xml ├── GitInitTaskTest.php ├── GitInitTaskTest.xml ├── GitLogTaskTest.php ├── GitLogTaskTest.xml ├── GitMergeTaskTest.php ├── GitMergeTaskTest.xml ├── GitPullTaskTest.php ├── GitPullTaskTest.xml ├── GitPushTaskTest.php ├── GitPushTaskTest.xml ├── GitTagTaskTest.php ├── GitTagTaskTest.xml └── GitTestsHelper.php ├── ScpTask ├── .svn │ └── entries ├── ScpTaskTest.php ├── ScpTaskTest.xml └── ScpTestHelper.php └── SshTask ├── .svn └── entries ├── SshTaskTest.php ├── SshTaskTest.xml └── SshTestHelper.php /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CodeMeme/Phingistrano/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CodeMeme/Phingistrano/HEAD/README.md -------------------------------------------------------------------------------- /docs/.gitkeep: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /phingistrano/build.example.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CodeMeme/Phingistrano/HEAD/phingistrano/build.example.xml -------------------------------------------------------------------------------- /phingistrano/build.helpers.example.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CodeMeme/Phingistrano/HEAD/phingistrano/build.helpers.example.xml -------------------------------------------------------------------------------- /phingistrano/build.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CodeMeme/Phingistrano/HEAD/phingistrano/build.xml -------------------------------------------------------------------------------- /phingistrano/deploy/NetScpTask.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CodeMeme/Phingistrano/HEAD/phingistrano/deploy/NetScpTask.php -------------------------------------------------------------------------------- /phingistrano/deploy/NetSshTask.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CodeMeme/Phingistrano/HEAD/phingistrano/deploy/NetSshTask.php -------------------------------------------------------------------------------- /phingistrano/deploy/build.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CodeMeme/Phingistrano/HEAD/phingistrano/deploy/build.xml -------------------------------------------------------------------------------- /phingistrano/docs/build.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CodeMeme/Phingistrano/HEAD/phingistrano/docs/build.xml -------------------------------------------------------------------------------- /phingistrano/package.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CodeMeme/Phingistrano/HEAD/phingistrano/package.xml -------------------------------------------------------------------------------- /phingistrano/rollback/build.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CodeMeme/Phingistrano/HEAD/phingistrano/rollback/build.xml -------------------------------------------------------------------------------- /phingistrano/sniff/build.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CodeMeme/Phingistrano/HEAD/phingistrano/sniff/build.xml -------------------------------------------------------------------------------- /phingistrano/symfony2.helpers.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CodeMeme/Phingistrano/HEAD/phingistrano/symfony2.helpers.xml -------------------------------------------------------------------------------- /phingistrano/test/build.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CodeMeme/Phingistrano/HEAD/phingistrano/test/build.xml -------------------------------------------------------------------------------- /phingistrano/tunnel/build.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CodeMeme/Phingistrano/HEAD/phingistrano/tunnel/build.xml -------------------------------------------------------------------------------- /phingistrano/version/GitDescribeTask.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CodeMeme/Phingistrano/HEAD/phingistrano/version/GitDescribeTask.php -------------------------------------------------------------------------------- /phingistrano/version/GitDiffTask.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CodeMeme/Phingistrano/HEAD/phingistrano/version/GitDiffTask.php -------------------------------------------------------------------------------- /phingistrano/version/GitLogTask.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CodeMeme/Phingistrano/HEAD/phingistrano/version/GitLogTask.php -------------------------------------------------------------------------------- /phingistrano/version/GitRemoteShowTask.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CodeMeme/Phingistrano/HEAD/phingistrano/version/GitRemoteShowTask.php -------------------------------------------------------------------------------- /phingistrano/version/GitTagTask.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CodeMeme/Phingistrano/HEAD/phingistrano/version/GitTagTask.php -------------------------------------------------------------------------------- /phingistrano/version/MimeMailTask.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CodeMeme/Phingistrano/HEAD/phingistrano/version/MimeMailTask.php -------------------------------------------------------------------------------- /phingistrano/version/build.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CodeMeme/Phingistrano/HEAD/phingistrano/version/build.xml -------------------------------------------------------------------------------- /phingistrano/version/notify.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CodeMeme/Phingistrano/HEAD/phingistrano/version/notify.html -------------------------------------------------------------------------------- /test/BuildFileTest.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CodeMeme/Phingistrano/HEAD/test/BuildFileTest.php -------------------------------------------------------------------------------- /test/phingistrano/GitTasks/.svn/all-wcprops: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CodeMeme/Phingistrano/HEAD/test/phingistrano/GitTasks/.svn/all-wcprops -------------------------------------------------------------------------------- /test/phingistrano/GitTasks/.svn/entries: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CodeMeme/Phingistrano/HEAD/test/phingistrano/GitTasks/.svn/entries -------------------------------------------------------------------------------- /test/phingistrano/GitTasks/.svn/prop-base/GitBaseTest.php.svn-base: -------------------------------------------------------------------------------- 1 | K 12 2 | svn:keywords 3 | V 2 4 | Id 5 | END 6 | -------------------------------------------------------------------------------- /test/phingistrano/GitTasks/.svn/prop-base/GitBranchTaskTest.php.svn-base: -------------------------------------------------------------------------------- 1 | K 12 2 | svn:keywords 3 | V 2 4 | Id 5 | END 6 | -------------------------------------------------------------------------------- /test/phingistrano/GitTasks/.svn/prop-base/GitCheckoutTaskTest.php.svn-base: -------------------------------------------------------------------------------- 1 | K 12 2 | svn:keywords 3 | V 2 4 | Id 5 | END 6 | -------------------------------------------------------------------------------- /test/phingistrano/GitTasks/.svn/prop-base/GitCloneTaskTest.php.svn-base: -------------------------------------------------------------------------------- 1 | K 12 2 | svn:keywords 3 | V 2 4 | Id 5 | END 6 | -------------------------------------------------------------------------------- /test/phingistrano/GitTasks/.svn/prop-base/GitFetchTaskTest.php.svn-base: -------------------------------------------------------------------------------- 1 | K 12 2 | svn:keywords 3 | V 2 4 | Id 5 | END 6 | -------------------------------------------------------------------------------- /test/phingistrano/GitTasks/.svn/prop-base/GitGcTaskTest.php.svn-base: -------------------------------------------------------------------------------- 1 | K 12 2 | svn:keywords 3 | V 2 4 | Id 5 | END 6 | -------------------------------------------------------------------------------- /test/phingistrano/GitTasks/.svn/prop-base/GitInitTaskTest.php.svn-base: -------------------------------------------------------------------------------- 1 | K 12 2 | svn:keywords 3 | V 2 4 | Id 5 | END 6 | -------------------------------------------------------------------------------- /test/phingistrano/GitTasks/.svn/prop-base/GitLogTaskTest.php.svn-base: -------------------------------------------------------------------------------- 1 | K 12 2 | svn:keywords 3 | V 2 4 | Id 5 | END 6 | -------------------------------------------------------------------------------- /test/phingistrano/GitTasks/.svn/prop-base/GitMergeTaskTest.php.svn-base: -------------------------------------------------------------------------------- 1 | K 12 2 | svn:keywords 3 | V 2 4 | Id 5 | END 6 | -------------------------------------------------------------------------------- /test/phingistrano/GitTasks/.svn/prop-base/GitPullTaskTest.php.svn-base: -------------------------------------------------------------------------------- 1 | K 12 2 | svn:keywords 3 | V 2 4 | Id 5 | END 6 | -------------------------------------------------------------------------------- /test/phingistrano/GitTasks/.svn/prop-base/GitPushTaskTest.php.svn-base: -------------------------------------------------------------------------------- 1 | K 12 2 | svn:keywords 3 | V 2 4 | Id 5 | END 6 | -------------------------------------------------------------------------------- /test/phingistrano/GitTasks/.svn/prop-base/GitTagTaskTest.php.svn-base: -------------------------------------------------------------------------------- 1 | K 12 2 | svn:keywords 3 | V 2 4 | Id 5 | END 6 | -------------------------------------------------------------------------------- /test/phingistrano/GitTasks/.svn/prop-base/GitTestsHelper.php.svn-base: -------------------------------------------------------------------------------- 1 | K 12 2 | svn:keywords 3 | V 2 4 | Id 5 | END 6 | -------------------------------------------------------------------------------- /test/phingistrano/GitTasks/.svn/text-base/GitBaseTest.php.svn-base: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CodeMeme/Phingistrano/HEAD/test/phingistrano/GitTasks/.svn/text-base/GitBaseTest.php.svn-base -------------------------------------------------------------------------------- /test/phingistrano/GitTasks/.svn/text-base/GitBaseTest.xml.svn-base: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CodeMeme/Phingistrano/HEAD/test/phingistrano/GitTasks/.svn/text-base/GitBaseTest.xml.svn-base -------------------------------------------------------------------------------- /test/phingistrano/GitTasks/.svn/text-base/GitBranchTaskTest.php.svn-base: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CodeMeme/Phingistrano/HEAD/test/phingistrano/GitTasks/.svn/text-base/GitBranchTaskTest.php.svn-base -------------------------------------------------------------------------------- /test/phingistrano/GitTasks/.svn/text-base/GitBranchTaskTest.xml.svn-base: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CodeMeme/Phingistrano/HEAD/test/phingistrano/GitTasks/.svn/text-base/GitBranchTaskTest.xml.svn-base -------------------------------------------------------------------------------- /test/phingistrano/GitTasks/.svn/text-base/GitCheckoutTaskTest.php.svn-base: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CodeMeme/Phingistrano/HEAD/test/phingistrano/GitTasks/.svn/text-base/GitCheckoutTaskTest.php.svn-base -------------------------------------------------------------------------------- /test/phingistrano/GitTasks/.svn/text-base/GitCheckoutTaskTest.xml.svn-base: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CodeMeme/Phingistrano/HEAD/test/phingistrano/GitTasks/.svn/text-base/GitCheckoutTaskTest.xml.svn-base -------------------------------------------------------------------------------- /test/phingistrano/GitTasks/.svn/text-base/GitCloneTaskTest.php.svn-base: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CodeMeme/Phingistrano/HEAD/test/phingistrano/GitTasks/.svn/text-base/GitCloneTaskTest.php.svn-base -------------------------------------------------------------------------------- /test/phingistrano/GitTasks/.svn/text-base/GitCloneTaskTest.xml.svn-base: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CodeMeme/Phingistrano/HEAD/test/phingistrano/GitTasks/.svn/text-base/GitCloneTaskTest.xml.svn-base -------------------------------------------------------------------------------- /test/phingistrano/GitTasks/.svn/text-base/GitFetchTaskTest.php.svn-base: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CodeMeme/Phingistrano/HEAD/test/phingistrano/GitTasks/.svn/text-base/GitFetchTaskTest.php.svn-base -------------------------------------------------------------------------------- /test/phingistrano/GitTasks/.svn/text-base/GitFetchTaskTest.xml.svn-base: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CodeMeme/Phingistrano/HEAD/test/phingistrano/GitTasks/.svn/text-base/GitFetchTaskTest.xml.svn-base -------------------------------------------------------------------------------- /test/phingistrano/GitTasks/.svn/text-base/GitGcTaskTest.php.svn-base: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CodeMeme/Phingistrano/HEAD/test/phingistrano/GitTasks/.svn/text-base/GitGcTaskTest.php.svn-base -------------------------------------------------------------------------------- /test/phingistrano/GitTasks/.svn/text-base/GitGcTaskTest.xml.svn-base: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CodeMeme/Phingistrano/HEAD/test/phingistrano/GitTasks/.svn/text-base/GitGcTaskTest.xml.svn-base -------------------------------------------------------------------------------- /test/phingistrano/GitTasks/.svn/text-base/GitInitTaskTest.php.svn-base: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CodeMeme/Phingistrano/HEAD/test/phingistrano/GitTasks/.svn/text-base/GitInitTaskTest.php.svn-base -------------------------------------------------------------------------------- /test/phingistrano/GitTasks/.svn/text-base/GitInitTaskTest.xml.svn-base: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CodeMeme/Phingistrano/HEAD/test/phingistrano/GitTasks/.svn/text-base/GitInitTaskTest.xml.svn-base -------------------------------------------------------------------------------- /test/phingistrano/GitTasks/.svn/text-base/GitLogTaskTest.php.svn-base: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CodeMeme/Phingistrano/HEAD/test/phingistrano/GitTasks/.svn/text-base/GitLogTaskTest.php.svn-base -------------------------------------------------------------------------------- /test/phingistrano/GitTasks/.svn/text-base/GitLogTaskTest.xml.svn-base: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CodeMeme/Phingistrano/HEAD/test/phingistrano/GitTasks/.svn/text-base/GitLogTaskTest.xml.svn-base -------------------------------------------------------------------------------- /test/phingistrano/GitTasks/.svn/text-base/GitMergeTaskTest.php.svn-base: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CodeMeme/Phingistrano/HEAD/test/phingistrano/GitTasks/.svn/text-base/GitMergeTaskTest.php.svn-base -------------------------------------------------------------------------------- /test/phingistrano/GitTasks/.svn/text-base/GitMergeTaskTest.xml.svn-base: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CodeMeme/Phingistrano/HEAD/test/phingistrano/GitTasks/.svn/text-base/GitMergeTaskTest.xml.svn-base -------------------------------------------------------------------------------- /test/phingistrano/GitTasks/.svn/text-base/GitPullTaskTest.php.svn-base: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CodeMeme/Phingistrano/HEAD/test/phingistrano/GitTasks/.svn/text-base/GitPullTaskTest.php.svn-base -------------------------------------------------------------------------------- /test/phingistrano/GitTasks/.svn/text-base/GitPullTaskTest.xml.svn-base: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CodeMeme/Phingistrano/HEAD/test/phingistrano/GitTasks/.svn/text-base/GitPullTaskTest.xml.svn-base -------------------------------------------------------------------------------- /test/phingistrano/GitTasks/.svn/text-base/GitPushTaskTest.php.svn-base: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CodeMeme/Phingistrano/HEAD/test/phingistrano/GitTasks/.svn/text-base/GitPushTaskTest.php.svn-base -------------------------------------------------------------------------------- /test/phingistrano/GitTasks/.svn/text-base/GitPushTaskTest.xml.svn-base: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CodeMeme/Phingistrano/HEAD/test/phingistrano/GitTasks/.svn/text-base/GitPushTaskTest.xml.svn-base -------------------------------------------------------------------------------- /test/phingistrano/GitTasks/.svn/text-base/GitTagTaskTest.php.svn-base: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CodeMeme/Phingistrano/HEAD/test/phingistrano/GitTasks/.svn/text-base/GitTagTaskTest.php.svn-base -------------------------------------------------------------------------------- /test/phingistrano/GitTasks/.svn/text-base/GitTagTaskTest.xml.svn-base: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CodeMeme/Phingistrano/HEAD/test/phingistrano/GitTasks/.svn/text-base/GitTagTaskTest.xml.svn-base -------------------------------------------------------------------------------- /test/phingistrano/GitTasks/.svn/text-base/GitTestsHelper.php.svn-base: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CodeMeme/Phingistrano/HEAD/test/phingistrano/GitTasks/.svn/text-base/GitTestsHelper.php.svn-base -------------------------------------------------------------------------------- /test/phingistrano/GitTasks/GitBaseTest.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CodeMeme/Phingistrano/HEAD/test/phingistrano/GitTasks/GitBaseTest.php -------------------------------------------------------------------------------- /test/phingistrano/GitTasks/GitBaseTest.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CodeMeme/Phingistrano/HEAD/test/phingistrano/GitTasks/GitBaseTest.xml -------------------------------------------------------------------------------- /test/phingistrano/GitTasks/GitBranchTaskTest.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CodeMeme/Phingistrano/HEAD/test/phingistrano/GitTasks/GitBranchTaskTest.php -------------------------------------------------------------------------------- /test/phingistrano/GitTasks/GitBranchTaskTest.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CodeMeme/Phingistrano/HEAD/test/phingistrano/GitTasks/GitBranchTaskTest.xml -------------------------------------------------------------------------------- /test/phingistrano/GitTasks/GitCheckoutTaskTest.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CodeMeme/Phingistrano/HEAD/test/phingistrano/GitTasks/GitCheckoutTaskTest.php -------------------------------------------------------------------------------- /test/phingistrano/GitTasks/GitCheckoutTaskTest.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CodeMeme/Phingistrano/HEAD/test/phingistrano/GitTasks/GitCheckoutTaskTest.xml -------------------------------------------------------------------------------- /test/phingistrano/GitTasks/GitCloneTaskTest.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CodeMeme/Phingistrano/HEAD/test/phingistrano/GitTasks/GitCloneTaskTest.php -------------------------------------------------------------------------------- /test/phingistrano/GitTasks/GitCloneTaskTest.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CodeMeme/Phingistrano/HEAD/test/phingistrano/GitTasks/GitCloneTaskTest.xml -------------------------------------------------------------------------------- /test/phingistrano/GitTasks/GitFetchTaskTest.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CodeMeme/Phingistrano/HEAD/test/phingistrano/GitTasks/GitFetchTaskTest.php -------------------------------------------------------------------------------- /test/phingistrano/GitTasks/GitFetchTaskTest.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CodeMeme/Phingistrano/HEAD/test/phingistrano/GitTasks/GitFetchTaskTest.xml -------------------------------------------------------------------------------- /test/phingistrano/GitTasks/GitGcTaskTest.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CodeMeme/Phingistrano/HEAD/test/phingistrano/GitTasks/GitGcTaskTest.php -------------------------------------------------------------------------------- /test/phingistrano/GitTasks/GitGcTaskTest.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CodeMeme/Phingistrano/HEAD/test/phingistrano/GitTasks/GitGcTaskTest.xml -------------------------------------------------------------------------------- /test/phingistrano/GitTasks/GitInitTaskTest.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CodeMeme/Phingistrano/HEAD/test/phingistrano/GitTasks/GitInitTaskTest.php -------------------------------------------------------------------------------- /test/phingistrano/GitTasks/GitInitTaskTest.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CodeMeme/Phingistrano/HEAD/test/phingistrano/GitTasks/GitInitTaskTest.xml -------------------------------------------------------------------------------- /test/phingistrano/GitTasks/GitLogTaskTest.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CodeMeme/Phingistrano/HEAD/test/phingistrano/GitTasks/GitLogTaskTest.php -------------------------------------------------------------------------------- /test/phingistrano/GitTasks/GitLogTaskTest.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CodeMeme/Phingistrano/HEAD/test/phingistrano/GitTasks/GitLogTaskTest.xml -------------------------------------------------------------------------------- /test/phingistrano/GitTasks/GitMergeTaskTest.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CodeMeme/Phingistrano/HEAD/test/phingistrano/GitTasks/GitMergeTaskTest.php -------------------------------------------------------------------------------- /test/phingistrano/GitTasks/GitMergeTaskTest.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CodeMeme/Phingistrano/HEAD/test/phingistrano/GitTasks/GitMergeTaskTest.xml -------------------------------------------------------------------------------- /test/phingistrano/GitTasks/GitPullTaskTest.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CodeMeme/Phingistrano/HEAD/test/phingistrano/GitTasks/GitPullTaskTest.php -------------------------------------------------------------------------------- /test/phingistrano/GitTasks/GitPullTaskTest.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CodeMeme/Phingistrano/HEAD/test/phingistrano/GitTasks/GitPullTaskTest.xml -------------------------------------------------------------------------------- /test/phingistrano/GitTasks/GitPushTaskTest.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CodeMeme/Phingistrano/HEAD/test/phingistrano/GitTasks/GitPushTaskTest.php -------------------------------------------------------------------------------- /test/phingistrano/GitTasks/GitPushTaskTest.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CodeMeme/Phingistrano/HEAD/test/phingistrano/GitTasks/GitPushTaskTest.xml -------------------------------------------------------------------------------- /test/phingistrano/GitTasks/GitTagTaskTest.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CodeMeme/Phingistrano/HEAD/test/phingistrano/GitTasks/GitTagTaskTest.php -------------------------------------------------------------------------------- /test/phingistrano/GitTasks/GitTagTaskTest.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CodeMeme/Phingistrano/HEAD/test/phingistrano/GitTasks/GitTagTaskTest.xml -------------------------------------------------------------------------------- /test/phingistrano/GitTasks/GitTestsHelper.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CodeMeme/Phingistrano/HEAD/test/phingistrano/GitTasks/GitTestsHelper.php -------------------------------------------------------------------------------- /test/phingistrano/ScpTask/.svn/entries: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CodeMeme/Phingistrano/HEAD/test/phingistrano/ScpTask/.svn/entries -------------------------------------------------------------------------------- /test/phingistrano/ScpTask/ScpTaskTest.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CodeMeme/Phingistrano/HEAD/test/phingistrano/ScpTask/ScpTaskTest.php -------------------------------------------------------------------------------- /test/phingistrano/ScpTask/ScpTaskTest.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CodeMeme/Phingistrano/HEAD/test/phingistrano/ScpTask/ScpTaskTest.xml -------------------------------------------------------------------------------- /test/phingistrano/ScpTask/ScpTestHelper.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CodeMeme/Phingistrano/HEAD/test/phingistrano/ScpTask/ScpTestHelper.php -------------------------------------------------------------------------------- /test/phingistrano/SshTask/.svn/entries: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CodeMeme/Phingistrano/HEAD/test/phingistrano/SshTask/.svn/entries -------------------------------------------------------------------------------- /test/phingistrano/SshTask/SshTaskTest.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CodeMeme/Phingistrano/HEAD/test/phingistrano/SshTask/SshTaskTest.php -------------------------------------------------------------------------------- /test/phingistrano/SshTask/SshTaskTest.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CodeMeme/Phingistrano/HEAD/test/phingistrano/SshTask/SshTaskTest.xml -------------------------------------------------------------------------------- /test/phingistrano/SshTask/SshTestHelper.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CodeMeme/Phingistrano/HEAD/test/phingistrano/SshTask/SshTestHelper.php --------------------------------------------------------------------------------